fix for multiplication sign before open group symbol

This commit is contained in:
serso 2011-09-16 14:44:24 +04:00
parent fd01c287df
commit 9166f317d7

View File

@ -59,7 +59,7 @@ public class Preprocessor {
mathTypeBefore != MathEntityType.unary_operation &&
!MathEntityType.openGroupSymbols.contains(chBefore)) {
if (mathType == MathEntityType.constant) {
if (mathType == MathEntityType.constant || MathEntityType.openGroupSymbols.contains(ch)) {
sb.append("*");
} else if (mathType == MathEntityType.digit && mathTypeBefore != MathEntityType.digit && mathTypeBefore != MathEntityType.dot) {
sb.append("*");