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
This is really hard to do, as the floating point approximation method used in the u64 implementation cannot be used with wider types. We could do binary search using rougher guesses, or even attempt Newton's method. But those have high upper bound costs.
It sounds like Mira is already trying to come up with a solution for this. If our users need this feature, we might as well provide a native way of doing it. It might be expensive, but still less expensive than implementing it using the VM.
fuel-vm/fuel-vm/src/interpreter/executors/instruction.rs
Lines 248 to 304 in 9478991
We already implement this for
u64
, but are missing it for the other typesThe text was updated successfully, but these errors were encountered: