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