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
Is there a resource or example on the floating point constants in the message format?
The text was updated successfully, but these errors were encountered:
Just tried this in a test message:
float32 A=-0.1 float32 B=+0.1 float32 C=-0.1 float32 D=-1e-1 float32 E=-1e-01 float32 F=-0.01e+1 float32 G=-0.01e+01 float32 H=-1E-1 float32 I=-1E-01 float32 J=-0.01E+1 float32 K=-0.01E+01 float32 K=-0.01E+01
The resulting generated common lisp codes looked like this:
((:A . -0.1) (:B . 0.1) (:C . -0.1) (:D . -0.1) (:E . -0.1) (:F . -0.1) (:G . -0.1) (:H . -0.1) (:I . -0.1) (:J . -0.1) (:K . -0.1))
It seems, whatever python likes is fair game.
Sorry, something went wrong.
Great, this seems to be exactly what we capture right now :)
airballking
No branches or pull requests
Is there a resource or example on the floating point constants in the message format?
The text was updated successfully, but these errors were encountered: