diff options
Diffstat (limited to 'src/algebra/galfact.spad.pamphlet')
-rw-r--r-- | src/algebra/galfact.spad.pamphlet | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/algebra/galfact.spad.pamphlet b/src/algebra/galfact.spad.pamphlet index 56778a4f..43d4e9cb 100644 --- a/src/algebra/galfact.spad.pamphlet +++ b/src/algebra/galfact.spad.pamphlet @@ -602,7 +602,7 @@ GaloisGroupFactorizer(UP): Exports == Implementation where f := -f -- is x**d factor of f - if (d := minimumDegree f) > 0 then + if positive?(d := minimumDegree f) then f := monicDivide(f,monomial(1,d)).quotient factorlist := [[monomial(1,1),d]$ParFact] @@ -672,7 +672,7 @@ GaloisGroupFactorizer(UP): Exports == Implementation where f := -f -- is x**d factor of f - if (maxd := minimumDegree f) > 0 then + if positive?(maxd := minimumDegree f) then f := monicDivide(f,monomial(1,maxd)).quotient factorlist := [[monomial(1,1),maxd]$ParFact] r := max(2,r-maxd)::N |