aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/gbintern.spad.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/algebra/gbintern.spad.pamphlet')
-rw-r--r--src/algebra/gbintern.spad.pamphlet8
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