aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/numode.spad.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-03-12 19:17:32 +0000
committerdos-reis <gdr@axiomatics.org>2011-03-12 19:17:32 +0000
commitc93e84048964194e5674e859d6bd8827010f09f6 (patch)
tree407ca23d232bf3f974550fce0175c49495ef49c0 /src/algebra/numode.spad.pamphlet
parent52fddea19454dc2b9bcb54c6edd5a4cd4f5765a9 (diff)
downloadopen-axiom-c93e84048964194e5674e859d6bd8827010f09f6.tar.gz
* src/algebra/: Systematically use negative? when comparing for
greater than 0.
Diffstat (limited to 'src/algebra/numode.spad.pamphlet')
-rw-r--r--src/algebra/numode.spad.pamphlet2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/algebra/numode.spad.pamphlet b/src/algebra/numode.spad.pamphlet
index 84415e34..4a88a636 100644
--- a/src/algebra/numode.spad.pamphlet
+++ b/src/algebra/numode.spad.pamphlet
@@ -203,7 +203,7 @@ NumericalOrdinaryDifferentialEquations(): Exports == Implementation where
--compute the derivative
derivs(dydx,y,x)
--if overshoot, the set h accordingly
- if (x + step.tryValue - x2) > 0.0 then
+ if positive?(x + step.tryValue - x2) then
step.tryValue := x2 - x
--find the correct scaling
for i in 1..m repeat