diff options
author | dos-reis <gdr@axiomatics.org> | 2008-04-03 04:23:42 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-04-03 04:23:42 +0000 |
commit | 001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532 (patch) | |
tree | da9e2fe5d81ff4cd7709d12e44b8c3e348b8a8e3 /src/algebra/gbintern.spad.pamphlet | |
parent | a7bab9a6c2070d05e2dbd256ce455079c8ced385 (diff) | |
download | open-axiom-001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532.tar.gz |
Replace `^=' with `~='.
Diffstat (limited to 'src/algebra/gbintern.spad.pamphlet')
-rw-r--r-- | src/algebra/gbintern.spad.pamphlet | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/algebra/gbintern.spad.pamphlet b/src/algebra/gbintern.spad.pamphlet index 1ba941b2..2c3d430f 100644 --- a/src/algebra/gbintern.spad.pamphlet +++ b/src/algebra/gbintern.spad.pamphlet @@ -168,7 +168,7 @@ GroebnerInternalPackage(Dom, Expon, VarSet, Dpol): T == C where if xx2 = 1 then prinpolINFO(Pol) messagePrint(" THE GROEBNER BASIS POLYNOMIALS") - if xx1 = 1 and xx2 ^= 1 then + if xx1 = 1 and xx2 ~= 1 then messagePrint(" THE GROEBNER BASIS POLYNOMIALS") Pol @@ -295,7 +295,7 @@ GroebnerInternalPackage(Dom, Expon, VarSet, Dpol): T == C where --- lcm(eh,ei) and eik ^equal lcm(eh,ek) critB(eh:Expon, eik:Expon, ei:Expon, ek:Expon) == - critM(eh, eik) and (eik ^= sup(eh, ei)) and (eik ^= sup(eh, ek)) + critM(eh, eik) and (eik ~= sup(eh, ei)) and (eik ~= sup(eh, ek)) ---------------------------- @@ -313,7 +313,7 @@ GroebnerInternalPackage(Dom, Expon, VarSet, Dpol): T == C where credPol(h: Dpol, F: List(Dpol) ) == null F => h h0:Dpol:= monomial(leadingCoefficient h, degree h) - while (h:=reductum h) ^= 0 repeat + while (h:=reductum h) ~= 0 repeat hred:= redPo(h, F) h := hred.poly h0:=(hred.mult)*h0 + monomial(leadingCoefficient(h),degree h) @@ -335,7 +335,7 @@ GroebnerInternalPackage(Dom, Expon, VarSet, Dpol): T == C where lepol(p1:Dpol)== n: Integer n:= 0 - while p1 ^= 0 repeat + while p1 ~= 0 repeat n:= n + 1 p1:= reductum(p1) n |