mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
reset backtrack level after first backtrack
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
75b8d10f48
commit
bc8681a0ea
2 changed files with 4 additions and 4 deletions
|
@ -2012,8 +2012,8 @@ namespace sat {
|
|||
set_conflict();
|
||||
backtrack(m_cube_state.m_cube, m_cube_state.m_is_decision);
|
||||
}
|
||||
backtrack_level = UINT_MAX;
|
||||
}
|
||||
backtrack_level = UINT_MAX;
|
||||
depth = m_cube_state.m_cube.size();
|
||||
if ((m_config.m_cube_cutoff != 0 && depth == m_config.m_cube_cutoff) ||
|
||||
(m_config.m_cube_cutoff == 0 && m_freevars.size() < m_cube_state.m_freevars_threshold)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue