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
Currently, the math in JS TAME is using Number, which works for 64-bit floats, but not integers, whose precision is capped to 53 bits (highest representable whole number in IEEE 754 float).
Must employ either a BigInt or String-like solution for integers. Will require overhauling lots of the TValue.js calculating functions, plus how TValue objects store its data.
The text was updated successfully, but these errors were encountered:
Currently, the math in JS TAME is using
Number
, which works for 64-bit floats, but not integers, whose precision is capped to 53 bits (highest representable whole number in IEEE 754 float).Must employ either a BigInt or String-like solution for integers. Will require overhauling lots of the
TValue.js
calculating functions, plus how TValue objects store its data.The text was updated successfully, but these errors were encountered: