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/gb.spad.pamphlet | |
parent | a7bab9a6c2070d05e2dbd256ce455079c8ced385 (diff) | |
download | open-axiom-001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532.tar.gz |
Replace `^=' with `~='.
Diffstat (limited to 'src/algebra/gb.spad.pamphlet')
-rw-r--r-- | src/algebra/gb.spad.pamphlet | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/algebra/gb.spad.pamphlet b/src/algebra/gb.spad.pamphlet index e62ca71f..4cff4aac 100644 --- a/src/algebra/gb.spad.pamphlet +++ b/src/algebra/gb.spad.pamphlet @@ -128,13 +128,13 @@ GroebnerPackage(Dom, Expon, VarSet, Dpol): T == C where groebner( Pol: List(Dpol) ) == Pol=[] => Pol - Pol:=[x for x in Pol | x ^= 0] + Pol:=[x for x in Pol | x ~= 0] Pol=[] => [0] minGbasis(sort( degree #1 > degree #2, gbasis(Pol,0,0))) groebner( Pol: List(Dpol), xx1: String) == Pol=[] => Pol - Pol:=[x for x in Pol | x ^= 0] + Pol:=[x for x in Pol | x ~= 0] Pol=[] => [0] xx1 = "redcrit" => minGbasis(sort( degree #1 > degree #2, gbasis(Pol,1,0))) @@ -149,7 +149,7 @@ GroebnerPackage(Dom, Expon, VarSet, Dpol): T == C where groebner( Pol: List(Dpol), xx1: String, xx2: String) == Pol=[] => Pol - Pol:=[x for x in Pol | x ^= 0] + Pol:=[x for x in Pol | x ~= 0] Pol=[] => [0] (xx1 = "redcrit" and xx2 = "info") or (xx1 = "info" and xx2 = "redcrit") => |