aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/padic.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/padic.spad.pamphlet
parenta7bab9a6c2070d05e2dbd256ce455079c8ced385 (diff)
downloadopen-axiom-001e19b08ba7fb1b9e6f6bdb44a82ba3db3fc532.tar.gz
Replace `^=' with `~='.
Diffstat (limited to 'src/algebra/padic.spad.pamphlet')
-rw-r--r--src/algebra/padic.spad.pamphlet14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/algebra/padic.spad.pamphlet b/src/algebra/padic.spad.pamphlet
index a75faa77..e17fe7dc 100644
--- a/src/algebra/padic.spad.pamphlet
+++ b/src/algebra/padic.spad.pamphlet
@@ -116,7 +116,7 @@ InnerPAdicInteger(p,unBalanced?): Exports == Implementation where
modPInfo n ==
dv := divide(n,p)
r0 := dv.remainder; q := dv.quotient
- if (r := modP r0) ^= r0 then q := q + ((r0 - r) quo p)
+ if (r := modP r0) ~= r0 then q := q + ((r0 - r) quo p)
[r,q]
invModP: I -> I
@@ -135,7 +135,7 @@ InnerPAdicInteger(p,unBalanced?): 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
@@ -143,7 +143,7 @@ InnerPAdicInteger(p,unBalanced?): Exports == Implementation where
st := stream x
for i in 0..1000 repeat
empty? st => return 0
- frst st ^= 0 => return i
+ frst st ~= 0 => return i
st := rst st
error "order: series has more than 1000 leading zero coefs"
@@ -293,13 +293,13 @@ InnerPAdicInteger(p,unBalanced?): Exports == Implementation where
n : NNI ; count : NNI := _$streamCount$Lisp
l : L OUT := empty()
for n in 0..count while not empty? st repeat
- if frst(st) ^= 0 then
+ if frst(st) ~= 0 then
l := concat(termOutput(n :: I,frst st),l)
st := rst st
if showAll?() then
for n in (count + 1).. while explicitEntries? st and _
not eq?(st,rst st) repeat
- if frst(st) ^= 0 then
+ if frst(st) ~= 0 then
l := concat(termOutput(n pretend I,frst st),l)
st := rst st
l :=
@@ -515,13 +515,13 @@ PAdicRationalConstructor(p,PADIC): 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) + m,frst(uu)),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) + m,frst(uu)),l)
uu := rst uu
l :=