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
Implement an optimal Number representation that can handle u64, i64 and f64 and arithmetic between them
Provide a way for users to opt into big float support.
Lack of support for big float by default will cause an incompatibility with OPA. But it is justified since big float support itself isn't that will defined in OPA, and users can always opt in explicitly if needed.
The text was updated successfully, but these errors were encountered:
Today Regorus defaults to big floats to pass the OPA test suite. However, this is not ideal for the following reasons
arbitrary-precision
feature in theserde-json
crate has repercussions on other uses of json in an application. See Enabling inregorus
thearbitrary_precision
feature by default onserde_json
can impact projects that depend onregorus
. #199For these reasons, it is better to
Lack of support for big float by default will cause an incompatibility with OPA. But it is justified since big float support itself isn't that will defined in OPA, and users can always opt in explicitly if needed.
The text was updated successfully, but these errors were encountered: