mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
some fixes to backtracking restore points in new solver
This commit is contained in:
parent
dd1ca8f6bd
commit
73a652cf4b
2 changed files with 4 additions and 4 deletions
|
@ -55,7 +55,7 @@ public:
|
|||
void push() { m_trail.push_scope(); }
|
||||
void pop(unsigned n) { m_trail.pop_scope(n); }
|
||||
unsigned qhead() const { return m_qhead; }
|
||||
void advance_qhead() { m_qhead = size(); }
|
||||
void advance_qhead() { if (m_trail.get_num_scopes() > 0) m_trail.push(value_trail(m_qhead)); m_qhead = size(); }
|
||||
unsigned num_exprs() {
|
||||
expr_fast_mark1 visited;
|
||||
unsigned r = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue