We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 980bf0a commit 62d9c39Copy full SHA for 62d9c39
src/Inductive.cpp
@@ -57,7 +57,7 @@ class BaseCaseSolver : public IRVisitor {
57
for (size_t position = 0; position < vars.size(); position++) {
58
const Expr inductive_expr = op->args[position];
59
const Expr new_v = Variable::make(inductive_expr.type(), vars[position]);
60
- const Expr gets_lower = simplify(new_v - inductive_expr > 0, true, bounds);
+ const Expr gets_lower = simplify(new_v - inductive_expr > 0, bounds);
61
const Interval i_lower = solve_for_inner_interval(gets_lower, vars[position]);
62
63
Interval new_interval;
0 commit comments