Closed biswajit-togai closed 1 year ago
Calculations involving high precision floating point operations are returning incorrect results.
For example:
String json = "{\"*\": [0.1, 0.1]}"; Object result = jsonLogic.apply(json, null);
This will return 0.010000000000000002 rather than 0.01
0.010000000000000002
0.01
Calculations involving high precision floating point operations are returning incorrect results.
For example:
This will return
0.010000000000000002
rather than0.01