(MathParser parser, String variableName, String exp, double lowerLimit, double upperLimit)
| 235 | } |
| 236 | |
| 237 | public static double integral(MathParser parser, String variableName, String exp, double lowerLimit, double upperLimit) throws MathParserException { |
| 238 | return integral(parser, variableName, exp, lowerLimit, upperLimit, 20); |
| 239 | } |
| 240 | |
| 241 | public static double integral(MathParser parser, String variableName, String exp, double lowerLimit, double upperLimit, double glPoints) throws MathParserException { |
| 242 | if (!Utils.isIdentifier(variableName)) |
no test coverage detected