You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Literal floats that I'd consider short and simple enough to represent them in decimal notation are reformatted to scientific / e notation.
I didn't find any specific reasoning about this behavior and I find it quite unexpected, therefore this issue.
Small example input
{a=0.2;b=0.068;c=0.009;}
Expected output
{a=0.2;b=0.068;c=0.009;}
Actual output
{a=0.2;b=6.8e-2;c=9.0e-3;}
The text was updated successfully, but these errors were encountered:
Description
Literal floats that I'd consider short and simple enough to represent them in decimal notation are reformatted to scientific / e notation.
I didn't find any specific reasoning about this behavior and I find it quite unexpected, therefore this issue.
Small example input
Expected output
Actual output
The text was updated successfully, but these errors were encountered: