Skip to content

Commit

Permalink
smt expr: revert the limit on lambda subst
Browse files Browse the repository at this point in the history
turns out that having multiple lambdas around is even slower.. :/
  • Loading branch information
nunoplopes committed Dec 16, 2024
1 parent 5406c9c commit 7482df8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smt/expr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2075,7 +2075,7 @@ expr expr::load(const expr &idx, uint64_t max_idx) const {

} else if (isConstArray(val)) {
return val;
} else if (isLambda(val) && !hit_half_memory_limit()) {
} else if (isLambda(val)) {
return val.subst_var(idx).foldTopLevel();
}

Expand Down

0 comments on commit 7482df8

Please sign in to comment.