imaginary number in jscl

This commit is contained in:
serso
2011-11-21 15:11:36 +04:00
parent 30c76c4af8
commit 9271234605
2 changed files with 6 additions and 9 deletions

View File

@@ -34,14 +34,11 @@ class FromJsclNumericTextProcessor implements TextProcessor<String> {
}
} catch (NumberFormatException e) {
result = result.replace(MathType.INFINITY_JSCL, MathType.INFINITY);
if (result.contains(MathType.IMAGINARY_NUMBER_JSCL)) {
try {
result = createResultForComplexNumber(result.replace(MathType.IMAGINARY_NUMBER_JSCL, MathType.IMAGINARY_NUMBER));
} catch (NumberFormatException e1) {
// throw original one
throw new ParseException(e);
}
try {
result = createResultForComplexNumber(result.replace(MathType.IMAGINARY_NUMBER_JSCL, MathType.IMAGINARY_NUMBER));
} catch (NumberFormatException e1) {
// throw original one
throw new ParseException(e);
}
}