aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/taylor.spad.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-04-03 04:23:42 +0000
committerdos-reis <gdr@axiomatics.org>2008-04-03 04:23:42 +0000
commit001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532 (patch)
treeda9e2fe5d81ff4cd7709d12e44b8c3e348b8a8e3 /src/algebra/taylor.spad.pamphlet
parenta7bab9a6c2070d05e2dbd256ce455079c8ced385 (diff)
downloadopen-axiom-001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532.tar.gz
Replace `^=' with `~='.
Diffstat (limited to 'src/algebra/taylor.spad.pamphlet')
-rw-r--r--src/algebra/taylor.spad.pamphlet4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/algebra/taylor.spad.pamphlet b/src/algebra/taylor.spad.pamphlet
index 7fa64c04..2005597a 100644
--- a/src/algebra/taylor.spad.pamphlet
+++ b/src/algebra/taylor.spad.pamphlet
@@ -97,7 +97,7 @@ InnerTaylorSeries(Coef): Exports == Implementation where
n : I := _$streamCount$Lisp
for i in 0..n repeat
empty? st => return true
- frst st ^= 0 => return false
+ frst st ~= 0 => return false
st := rst st
empty? st
@@ -332,7 +332,7 @@ UnivariateTaylorSeries(Coef,var,cen): Exports == Implementation where
while not empty? u and n > 0 repeat
u := rst u
n := (n - 1) :: NNI
- empty? u or n ^= 0 => 0
+ empty? u or n ~= 0 => 0
frst u
elt(x:%,n:NNI) == coefficient(x,n)