(MathParser parser, String variable, String exp)
| 191 | } |
| 192 | |
| 193 | public static double lim(MathParser parser, String variable, String exp) throws MathParserException { |
| 194 | return limit(parser, variable, exp); |
| 195 | } |
| 196 | |
| 197 | public static double limit(MathParser parser, String variable, String exp) throws MathParserException { |
| 198 | MathParser newParser = parser.clone(); |