Calculates and returns the value of an expression @param exp the simplified expression @param main the original expression
(String exp, String main)
| 383 | * @param main the original expression |
| 384 | */ |
| 385 | private double calculate(String exp, String main) throws MathParserException { |
| 386 | return calculate(exp, main, false); |
| 387 | } |
| 388 | |
| 389 | /** |
| 390 | * Calculates and returns the value of an expression. |
no test coverage detected