-
- Downloads
Fix bug in imagpart/complex-single-float. The vop was totally wrong.
Bug and fix provided by Alexander Donkov. Here is a routine that illustrate the problem: ;; (zot #c(1.0 2.0)) -> 2.0. It should be 4.0! (defun zot (z) (declare (type (complex single-float) z)) (imagpart (+ #c(1.0 2.0) z)))
Loading
Please register or sign in to comment