aboutsummaryrefslogtreecommitdiff
path: root/src/algebra/manip.spad.pamphlet
diff options
context:
space:
mode:
Diffstat (limited to 'src/algebra/manip.spad.pamphlet')
-rw-r--r--src/algebra/manip.spad.pamphlet2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/algebra/manip.spad.pamphlet b/src/algebra/manip.spad.pamphlet
index dc0adfef..fe59129a 100644
--- a/src/algebra/manip.spad.pamphlet
+++ b/src/algebra/manip.spad.pamphlet
@@ -108,7 +108,7 @@ PolynomialRoots(E, V, R, P, F):Exports == Implementation where
czroot(x, n) ==
rec := zroot(x, n)
- rec.exponent = 2 and rec.radicand < 0 =>
+ rec.exponent = 2 and negative? rec.radicand =>
[rec.exponent, rec.coef * imaginary()::P::F, (-rec.radicand)::F]
[rec.exponent, rec.coef::F, rec.radicand::F]