001    /*
002     * $Id: PseudoReductionEntry.java 3423 2010-12-24 10:56:50Z kredel $
003     */
004    
005    package edu.jas.gbufd;
006    
007    import edu.jas.poly.GenPolynomial;
008    import edu.jas.structure.RingElem;
009    
010    
011    /**
012     * Polynomial reduction container.
013     * Used as container for the return value of normalformFactor.
014     * @author Heinz Kredel
015     */
016    
017    public class PseudoReductionEntry<C extends RingElem<C>> {
018    
019        public final GenPolynomial<C> pol;
020        public final C multiplicator;
021    
022        public PseudoReductionEntry(GenPolynomial<C> pol,
023                                    C multiplicator) {
024            this.pol = pol;
025            this.multiplicator = multiplicator;
026        }
027    
028    }