ParserNG icon indicating copy to clipboard operation
ParserNG copied to clipboard

ParserNG is a powerful , fast math expression parser that parses and evaluates math expressions, does differential calculus(symbolic) evaluations, numerical integration, equation solving(quadratic, Ta...

Results 3 ParserNG issues
Sort by recently updated
recently updated
newest added

This PR exposes bigdecimal arithmetic features to ParserNG users. This is the first stage of this feature. For normal floating point arithmetic, we use the `MathExpression` class. For bigdecimal arithmetic,...

# Test code ```kotlin class MathTest { @Test fun testMathExpression() { println(MathExpression("239081204214*1247981247912749").solve()) } } ``` # Expect `298368859587470504923124286` # Result `298368859587470500000000000`