mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
2d97e1dee3
Currently the classify procedures checks for NaNs using the check `x != x`, which is always false for NaNs and therefore that case is never entered. Using `!(x == x)` will work on the other hand.