diff --git a/ansi-tests/ansi-aux.lsp b/ansi-tests/ansi-aux.lsp index 77627e8cd01e47cd73ed73fa4f39b0ff6804b30b..174f804d5e466f824f1c6216ab1ce4e41a94820c 100644 --- a/ansi-tests/ansi-aux.lsp +++ b/ansi-tests/ansi-aux.lsp @@ -1613,5 +1613,18 @@ the condition to go uncaught if it cannot be classified." (return hi) (setq lo mid)))))) - - \ No newline at end of file +(defun rational-safely (x) + "Rational a floating point number, making sure the rational + number isn't 'too big'. This is important in implementations such + as clisp where the floating bounds can be very large." + (assert (floatp x)) + (multiple-value-bind (significand exponent sign) + (integer-decode-float x) + (let ((limit 1000) + (radix (float-radix x))) + (cond + ((< exponent (- limit)) + (* significand (expt radix (- limit)) sign)) + ((> exponent limit) + (* significand (expt radix limit) sign)) + (t (rational x)))))) \ No newline at end of file diff --git a/ansi-tests/numbers-aux.lsp b/ansi-tests/numbers-aux.lsp index cd5bdd5ddc8c265e13dbdc257ee329dca2136e9b..c1f78d6183cf0f8a6607dddcb7d2b5600970064a 100644 --- a/ansi-tests/numbers-aux.lsp +++ b/ansi-tests/numbers-aux.lsp @@ -19,23 +19,6 @@ (eqlt (abs x) (abs y))) (t (eqlt x y)))) -(eval-when (:compile-toplevel :load-toplevel :execute) - (defun rational-safely (x) - "Rational a floating point number, making sure the rational - number isn't 'too big'. This is important in implementations such - as clisp where the floating bounds can be very large." - (assert (floatp x)) - (multiple-value-bind (significand exponent sign) - (integer-decode-float x) - (let ((limit 1000) - (radix (float-radix x))) - (cond - ((< exponent (- limit)) - (* significand (expt radix (- limit)) sign)) - ((> exponent limit) - (* significand (expt radix limit) sign)) - (t (rational x))))))) - (defconstant +rational-most-negative-short-float+ (rational-safely most-negative-short-float))