Skip to content

Commit 0ab2f69

Browse files
committed
Remove Oversimplification Check
1 parent 990ddeb commit 0ab2f69

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

liquidjava-verifier/src/main/java/liquidjava/rj_language/opt/ExpressionSimplifier.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,6 @@ private static ValDerivationNode simplifyToFixedPoint(ValDerivationNode current,
3434
return current;
3535
}
3636

37-
// stop if simplified to 'true'
38-
if (current != null && currExp instanceof LiteralBoolean && currExp.isBooleanTrue()) {
39-
return current;
40-
}
41-
4237
// continue simplifying
4338
return simplifyToFixedPoint(fold, current, fold.getValue());
4439
}

0 commit comments

Comments
 (0)