From d7809b15372a4700b9b1d44c8143fa7c0dd5b3a0 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 28 Oct 2018 15:10:02 -0700 Subject: [PATCH] Fix typo in previous change. --- src/runtime/arith.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/arith.scm b/src/runtime/arith.scm index a119912ca..51042d68e 100644 --- a/src/runtime/arith.scm +++ b/src/runtime/arith.scm @@ -125,7 +125,7 @@ USA. (flo:/ (flo:log 10.) (flo:log 2.)))))) (set! int:flonum-integer-limit (int:expt 2 p))) (set! flo:ulp-of-one microcode-id/floating-epsilon) - (set! flo:error-bound (flo:/ flo:ulp-of-one 2)) + (set! flo:error-bound (flo:/ flo:ulp-of-one 2.)) (set! flo:log-error-bound (flo:log flo:error-bound)) (set! flo:normal-exponent-max-base-2 microcode-id/floating-exponent-max) (set! flo:normal-exponent-min-base-2 microcode-id/floating-exponent-min) -- 2.25.1