Examples of multipleOf()


Examples of cc.redberry.core.transformations.factor.jasfactor.edu.jas.poly.ExpVector.multipleOf()

                GenPolynomial<C> trial = PolyUfdUtil.backSubstituteKronecker(pfac, utrial, d);
                ti++;
                if (!evl.multipleOf(trial.leadingExpVector())) {
                    continue;
                }
                if (!evt.multipleOf(trial.trailingExpVector())) {
                    continue;
                }
                if (trial.degree() > deg || trial.isConstant()) {
                    continue;
                }
View Full Code Here

Examples of cc.redberry.core.transformations.factor.jasfactor.edu.jas.poly.ExpVector.multipleOf()

                boolean ok = false;
                if (wdegv.multipleOf(mdegv)) { // TL = 2
                    M = null; // init chinese remainder
                    ok = true; // prime ok
                }
                if (mdegv.multipleOf(wdegv)) { // TL = 1
                    continue; // skip this prime
                }
                if (!ok) {
                    M = null; // discard chinese remainder and previous work
                    continue; // prime not ok
View Full Code Here

Examples of cc.redberry.core.transformations.factor.jasfactor.edu.jas.poly.ExpVector.multipleOf()

                boolean ok = false;
                if (wdegv.multipleOf(mdegv)) { // TL = 2 // EVMT(wdegv,mdegv)
                    M = null; // init chinese remainder
                    ok = true; // prime ok
                }
                if (mdegv.multipleOf(wdegv)) { // TL = 1 // EVMT(mdegv,wdegv)
                    continue; // skip this prime
                }
                if (!ok) {
                    M = null; // discard chinese remainder and previous work
                    continue; // prime not ok
View Full Code Here

Examples of cc.redberry.core.transformations.factor.jasfactor.edu.jas.poly.ExpVector.multipleOf()

        while (S.length() > 0) {
            m = S.leadingMonomial();
            e = m.getKey();
            a = m.getValue();
            for (i = 0; i < l; i++) {
                mt = e.multipleOf(htl[i]);
                if (mt) break;
            }
            if (!mt) {
                //T = new OrderedMapPolynomial( a, e );
                R = R.sum(a, e);
View Full Code Here

Examples of cc.redberry.core.transformations.factor.jasfactor.edu.jas.poly.ExpVector.multipleOf()

                boolean ok = false;
                if (wdegv.multipleOf(mdegv)) { // TL = 2
                    M = null; // init chinese remainder
                    ok = true; // prime ok
                }
                if (mdegv.multipleOf(wdegv)) { // TL = 1
                    continue; // skip this prime
                }
                if (!ok) {
                    M = null; // discard chinese remainder and previous work
                    continue; // prime not ok
View Full Code Here

Examples of cc.redberry.core.transformations.factor.jasfactor.edu.jas.poly.ExpVector.multipleOf()

                boolean ok = false;
                if (wdegv.multipleOf(mdegv)) { // TL = 2 // EVMT(wdegv,mdegv)
                    M = null; // init chinese remainder
                    ok = true; // prime ok
                }
                if (mdegv.multipleOf(wdegv)) { // TL = 1 // EVMT(mdegv,wdegv)
                    continue; // skip this prime
                }
                if (!ok) {
                    M = null; // discard chinese remainder and previous work
                    continue; // prime not ok
View Full Code Here

Examples of cc.redberry.core.transformations.factor.jasfactor.edu.jas.poly.ExpVector.multipleOf()

        while (S.length() > 0) {
            m = S.leadingMonomial();
            e = m.getKey();
            a = m.getValue();
            for (i = 0; i < l; i++) {
                mt = e.multipleOf(htl[i]);
                if (mt) break;
            }
            if (!mt) {
                //T = new OrderedMapPolynomial( a, e );
                R = R.sum(a, e);
View Full Code Here

Examples of cc.redberry.core.transformations.factor.jasfactor.edu.jas.poly.ExpVector.multipleOf()

                GenPolynomial<C> trial = PolyUfdUtil.backSubstituteKronecker(pfac, utrial, d);
                ti++;
                if (!evl.multipleOf(trial.leadingExpVector())) {
                    continue;
                }
                if (!evt.multipleOf(trial.trailingExpVector())) {
                    continue;
                }
                if (trial.degree() > deg || trial.isConstant()) {
                    continue;
                }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.