Skip to content

Commit

Permalink
count every lookahead as activity
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Jan 23, 2025
1 parent 4d33f44 commit b149d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast/sls/sls_arith_clausal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ namespace sls {
lookahead(u.m_var, u.m_delta);

// verbose_stream() << a.m_updates.size() << " " << m_num_lookaheads << " lookaheads\n";
ctx.rlimit().inc(1 + m_num_lookaheads/10);
ctx.rlimit().inc(1 + m_num_lookaheads);
critical_move(m_best_var, m_best_delta, mt);
return m_best_var;
}
Expand Down

0 comments on commit b149d1f

Please sign in to comment.