are of the order of ARRAY-TOTAL-SIZE-LIMIT. (lp#787237)
* bug fix: the compiler no longer constant-folds NaNs in
MAKE-{SINGLE,DOUBLE}-FLOAT. (lp#486812)
+ * bug fix: FORMAT now handles floating point rounding correct, eg.
+ (format nil "~,1F" 0.01) => "0.0" instead of "0.01" as previously.
+ (lp#308961)
changes in sbcl-1.0.49 relative to sbcl-1.0.48:
* minor incompatible change: WITH-LOCKED-HASH-TABLE no longer disables
((and warning (not style-warning)) ()
:warned)))))
+(with-test (:name :bug-308961)
+ (assert (string= (format nil "~4,1F" 0.001) " 0.0"))
+ (assert (string= (format nil "~4,1@F" 0.001) "+0.0"))
+ (assert (string= (format nil "~E" 0.01) "1.e-2"))
+ (assert (string= (format nil "~G" 0.01) "1.00e-2")))
+
+(with-test (:name (:fp-read/print-consistency single-float))
+ (let ((*random-state* (make-random-state t))
+ (oops))
+ (loop for f = most-positive-single-float then (/ f 2.0)
+ while (> f 0.0)
+ do (loop repeat 10
+ for fr = (random f)
+ do (unless (eql fr (read-from-string (prin1-to-string fr)))
+ (push fr oops)
+ (return))))
+ (loop for f = most-negative-single-float then (/ f 2.0)
+ while (< f -0.0)
+ do (loop repeat 10
+ for fr = (- (random (- f)))
+ do (unless (eql fr (read-from-string (prin1-to-string fr)))
+ (push fr oops)
+ (return))))
+ (when oops
+ (error "FP read/print inconsistencies:~%~:{ ~S => ~S~%~}"
+ (mapcar (lambda (f)
+ (list f (read-from-string (prin1-to-string f))))
+ oops)))))
+
+(with-test (:name (:fp-read/print-consistency double-float))
+ (let ((*random-state* (make-random-state t))
+ (oops))
+ ;; FIXME skipping denormalized floats due to bug 793774.
+ (loop for f = most-positive-double-float then (/ f 2d0)
+ while (> f 0d0)
+ do (loop repeat 10
+ for fr = (random f)
+ do (unless (float-denormalized-p fr)
+ (unless (eql fr (read-from-string (prin1-to-string fr)))
+ (push fr oops)
+ (return)))))
+ (loop for f = most-negative-double-float then (/ f 2d0)
+ while (< f -0d0)
+ do (loop repeat 10
+ for fr = (- (random (- f)))
+ do (unless (float-denormalized-p fr)
+ (unless (eql fr (read-from-string (prin1-to-string fr)))
+ (push fr oops)
+ (return)))))
+ (when oops
+ (error "FP read/print inconsistencies:~%~:{ ~S => ~S~%~}"
+ (mapcar (lambda (f)
+ (list f (read-from-string (prin1-to-string f))))
+ oops)))))
+
;;; success