We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NaN < 0
I would expect that NaN < 0 be false, but instead it gives
false
>>> NaN < 0.0 error: runtime error = Conversion error: unit '' can not be converted to ''
The text was updated successfully, but these errors were encountered:
Is this due to f64::partial_cmp returning None despite all scalars being units-compatible?
f64::partial_cmp
None
numbat/numbat/src/vm.rs
Lines 755 to 759 in f064611
Sorry, something went wrong.
Thank you for reporting this.
Fixed in v1.15.
Successfully merging a pull request may close this issue.
I would expect that
NaN < 0
befalse
, but instead it givesThe text was updated successfully, but these errors were encountered: