slyrus / opticl

An image processing library for Common Lisp
Other
182 stars 35 forks source link

The test uses short-float values when it really needs single-float #34

Closed Yehouda closed 2 years ago

Yehouda commented 4 years ago

The tests in test/opticl-test.lisp which want single-float use values like 1.0s0 which are short-float. It should use 'f' instead of 's': 1.0f0.

Cause test failures on implementations that distinguish between single-float and short-float.

Actually defined here: file:///C:/Program%20Files/LispWorks/lib/7-1-0-0/manual/online/CLHS/Body/26_glo_e.htm#exponent_marker

slyrus commented 2 years ago

Fixed. Thanks!