3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-03 16:48:06 +00:00

align reslimit with ddfw

This commit is contained in:
Nikolaj Bjorner 2025-01-13 18:19:35 -08:00
parent 3c5b8bd03d
commit a08a3ee32b
6 changed files with 16 additions and 4 deletions

View file

@ -61,7 +61,7 @@ namespace sls {
TRACE("bv", tout << "search " << m_stats.m_moves << " " << m_config.max_moves << "\n";);
IF_VERBOSE(1, verbose_stream() << "lookahead-search moves:" << m_stats.m_moves << " max-moves:" << m_config.max_moves << "\n");
while (m.inc() && m_stats.m_moves < m_config.max_moves) {
while (ctx.rlimit().inc() && m_stats.m_moves < m_config.max_moves) {
m_stats.m_moves++;
check_restart();