From d2313a16c923bdcc08e5431205b97b98b984c2ef Mon Sep 17 00:00:00 2001 From: Lili Dworkin Date: Sun, 16 Jul 2017 15:06:54 -0400 Subject: [PATCH] quick fix for grouping coefficients change group --- lib/simplifyExpression/collectAndCombineSearch/addLikeTerms.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/simplifyExpression/collectAndCombineSearch/addLikeTerms.js b/lib/simplifyExpression/collectAndCombineSearch/addLikeTerms.js index 408abc9b..5a9651fb 100644 --- a/lib/simplifyExpression/collectAndCombineSearch/addLikeTerms.js +++ b/lib/simplifyExpression/collectAndCombineSearch/addLikeTerms.js @@ -186,7 +186,7 @@ function groupCoefficientsForAdding(node, termSubclass) { baseNode, exponentNode, sumOfCoefficents); return Node.Status.nodeChanged( - ChangeTypes.GROUP_COEFFICIENTS, node, newNode); + ChangeTypes.GROUP_COEFFICIENTS, node, newNode, false); } // Given a node of the form (2 + 4 + 5)x -- ie the coefficients have been