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:
parent
3c5b8bd03d
commit
a08a3ee32b
6 changed files with 16 additions and 4 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue