[Git][cmucl/cmucl][issue-456-more-accurate-complex-div] Get rid of debugging prints not needed anymore
Raymond Toy pushed to branch issue-456-more-accurate-complex-div at cmucl / cmucl Commits: 6f6a8758 by Raymond Toy at 2025-12-12T09:13:22-08:00 Get rid of debugging prints not needed anymore - - - - - 1 changed file: - src/code/numbers.lisp Changes: ===================================== src/code/numbers.lisp ===================================== @@ -632,14 +632,8 @@ ;; = (a + b*r)/(c + d*r). ;; ;; Thus tt = (c + d*r). - #+nil - (progn - (format t "a,b,c,d = ~A ~A ~A ~A~%" a b c d) - (format t " r, tt = ~A ~A~%" r tt)) (cond ((>= (abs r) +rmin+) (let ((br (* b r))) - #+nil - (format t "br = ~A~%" br) (if (/= br 0) (/ (+ a br) tt) ;; b*r underflows. Instead, compute @@ -654,11 +648,6 @@ (t ;; r = 0 so d is very tiny compared to c. ;; - ;; (a + b*r)/tt = (a + b*(d/c))/tt - #+nil - (progn - (format t "r = 0~%") - (format t "a*tt = ~A~%" (* a tt))) (/ (+ a (* d (/ b c))) tt)))) (robust-subinternal (a b c d) View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/6f6a87580e30627db108944e... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/6f6a87580e30627db108944e... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)