fix for multiplication sign before open group symbol

This commit is contained in:
serso 2011-09-16 14:44:24 +04:00
parent 3839e54fd6
commit f181b75b4a

View File

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