aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/sttaylor.spad.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-03-12 17:04:43 +0000
committerdos-reis <gdr@axiomatics.org>2011-03-12 17:04:43 +0000
commit52fddea19454dc2b9bcb54c6edd5a4cd4f5765a9 (patch)
tree4b13ccc6d57c7c1ee615c83615b246c98eae388a /src/algebra/sttaylor.spad.pamphlet
parent42d38bee45a64edfc12641053e58581c20584363 (diff)
downloadopen-axiom-52fddea19454dc2b9bcb54c6edd5a4cd4f5765a9.tar.gz
* src/algebra/: Systematically use negative? when comparing for
less than 0.
Diffstat (limited to 'src/algebra/sttaylor.spad.pamphlet')
-rw-r--r--src/algebra/sttaylor.spad.pamphlet4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/algebra/sttaylor.spad.pamphlet b/src/algebra/sttaylor.spad.pamphlet
index 756129a8..ed89b75d 100644
--- a/src/algebra/sttaylor.spad.pamphlet
+++ b/src/algebra/sttaylor.spad.pamphlet
@@ -261,7 +261,7 @@ StreamTaylorSeriesOperations(A): Exports == Implementation where
concat(s,rpSt(z-1,s))
monom(s,z) ==
- z < 0 => error "monom: cannot create monomial of negative degree"
+ negative? z => error "monom: cannot create monomial of negative degree"
concat(rpSt(z,0),concat(s,zro()))
--% some streams of integers
@@ -498,7 +498,7 @@ Remarks:
integer, we won't get a Taylor expansion and thus raise an error.
<<package STTAYLOR StreamTaylorSeriesOperations>>=
- if ord > 0 and rn < 0 then
+ if ord > 0 and negative? rn then
error "**: negative power does not exist"
@