diff options
Diffstat (limited to 'lib/math/atan-impl.myr')
-rw-r--r-- | lib/math/atan-impl.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/math/atan-impl.myr b/lib/math/atan-impl.myr index 78f235d..38b973a 100644 --- a/lib/math/atan-impl.myr +++ b/lib/math/atan-impl.myr @@ -427,7 +427,7 @@ const atan264 = {y, x du = 0.0 else var t1, t2 - (t1, t2) = two_by_two(u, x) + (t1, t2) = two_by_two64(u, x) du = ((y - t1) - t2)/x ;; |