Skip to content

Commit 62d9c39

Browse files
committed
Fix function call
1 parent 980bf0a commit 62d9c39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Inductive.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class BaseCaseSolver : public IRVisitor {
5757
for (size_t position = 0; position < vars.size(); position++) {
5858
const Expr inductive_expr = op->args[position];
5959
const Expr new_v = Variable::make(inductive_expr.type(), vars[position]);
60-
const Expr gets_lower = simplify(new_v - inductive_expr > 0, true, bounds);
60+
const Expr gets_lower = simplify(new_v - inductive_expr > 0, bounds);
6161
const Interval i_lower = solve_for_inner_interval(gets_lower, vars[position]);
6262

6363
Interval new_interval;

0 commit comments

Comments
 (0)