Cyclone doesn't read `-inf.0` as negative (?)
jpellegrini opened this issue · 3 comments
jpellegrini commented
cyclone> -inf.0
inf.0
cyclone> (= -inf.0 +inf.0)
#t
jpellegrini commented
But it seems to be specific to the reader, since it does represent infinities properly:
(- +inf.0) => -inf.0
justinethier commented
Thanks for the bug report!
Cyclone will now properly distinguish between positive and negative infinity.
jpellegrini commented
Yay! Thanks for the quick fix! 😃