001/*
002 * $Id$
003 */
004
005package edu.jas.gb;
006
007
008import edu.jas.structure.RingElem;
009
010
011/**
012 * Polynomial E-Reduction interface. Empty marker interface since all required
013 * methods are already defined in the DReduction interface.
014 * @param <C> coefficient type
015 * @author Heinz Kredel
016 */
017
018public interface EReduction<C extends RingElem<C>> extends DReduction<C> {
019
020
021}