aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/gbeuclid.spad.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/algebra/gbeuclid.spad.pamphlet')
-rw-r--r--src/algebra/gbeuclid.spad.pamphlet6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/algebra/gbeuclid.spad.pamphlet b/src/algebra/gbeuclid.spad.pamphlet
index 0ff28e44..660e9230 100644
--- a/src/algebra/gbeuclid.spad.pamphlet
+++ b/src/algebra/gbeuclid.spad.pamphlet
@@ -252,7 +252,7 @@ EuclideanGroebnerBasisPackage(Dom, Expon, VarSet, Dpol): T == C where
if xx2 = 1 then
prinpolINFO(Pol)
print(" THE GROEBNER BASIS over EUCLIDEAN DOMAIN"::Ex)
- if xx1 = 1 and xx2 ^= 1 then
+ if xx1 = 1 and xx2 ~= 1 then
print(" THE GROEBNER BASIS over EUCLIDEAN DOMAIN"::Ex)
H
@@ -272,7 +272,7 @@ EuclideanGroebnerBasisPackage(Dom, Expon, VarSet, Dpol): T == C where
ecredPol(h: Dpol, F: List(Dpol) ) ==
h0:Dpol:= 0
null F => h
- while h ^= 0 repeat
+ while h ~= 0 repeat
h0:= h0 + monomial(leadingCoefficient(h),degree(h))
h:= eRed(red(h), F, F)
h0
@@ -464,7 +464,7 @@ EuclideanGroebnerBasisPackage(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:= red(p1)
n