justinethier/cyclone

Cyclone doesn't read `-inf.0` as negative (?)

jpellegrini opened this issue · 3 comments

cyclone> -inf.0 
inf.0
cyclone> (= -inf.0 +inf.0)
#t

But it seems to be specific to the reader, since it does represent infinities properly:

(- +inf.0) => -inf.0

Thanks for the bug report!

Cyclone will now properly distinguish between positive and negative infinity.

Yay! Thanks for the quick fix! 😃