aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/puiseux.spad.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/algebra/puiseux.spad.pamphlet')
-rw-r--r--src/algebra/puiseux.spad.pamphlet4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/algebra/puiseux.spad.pamphlet b/src/algebra/puiseux.spad.pamphlet
index 3d1f8162..8b4bb665 100644
--- a/src/algebra/puiseux.spad.pamphlet
+++ b/src/algebra/puiseux.spad.pamphlet
@@ -546,13 +546,13 @@ UnivariatePuiseuxSeries(Coef,var,cen): Exports == Implementation where
empty? uu => 0 :: OUT
n : NNI; count : NNI := _$streamCount$Lisp
for n in 0..count while not empty? uu repeat
- if frst(uu) ^= 0 then
+ if frst(uu) ~= 0 then
l := concat(termOutput((n :: I) * rat + m,frst uu,xxx),l)
uu := rst uu
if showAll?() then
for n in (count + 1).. while explicitEntries? uu and _
not eq?(uu,rst uu) repeat
- if frst(uu) ^= 0 then
+ if frst(uu) ~= 0 then
l := concat(termOutput((n :: I) * rat + m,frst uu,xxx),l)
uu := rst uu
l :=