Seems caused by r1893,
"Use regular factorizers instead of custom ones"

Confirming.

diff --git a/src/algebra/multfact.spad b/src/algebra/multfact.spad
index 9bcfee4..d9d115a 100644
--- a/src/algebra/multfact.spad
+++ b/src/algebra/multfact.spad
@@ -475,10 +475,14 @@
          factor(p)$MRationalFactorize(E, OV, Complex Integer, P)
       R is Fraction Polynomial Integer and OV has convert : % -> Symbol =>
          factor(p)$MPolyCatRationalFunctionFactorizer(E, OV, Integer, P)
-      factor(p, factor$GenUFactorize(R))$InnerMultFact(OV, E, R, P)
+      R has PolynomialFactorizationExplicit =>
+         factor(p, factorPolynomial$R)$InnerMultFact(OV, E, R, P)
+      error "MULTFACT: factor unimplemented"

     factor(up : USP) : Factored USP ==
-      factor(up, factor$GenUFactorize(R))$InnerMultFact(OV, E, R, P)
+      R has PolynomialFactorizationExplicit =>
+          factor(up, factorPolynomial$R)$InnerMultFact(OV, E, R, P)
+      error "MULTFACT: factor unimplemented"

 )abbrev package ALGMFACT AlgebraicMultFact
 ++ Author: P. Gianni

-- 
You received this message because you are subscribed to the Google Groups 
"FriCAS - computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/fricas-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to