mirror of
https://github.com/Z3Prover/z3
synced 2025-10-07 08:21:56 +00:00
set eliminated to false on literals used in clauses
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
da0aa71082
commit
427b5ef002
4 changed files with 5 additions and 3 deletions
|
@ -266,6 +266,7 @@ namespace sat {
|
|||
void set_external(bool_var v);
|
||||
void set_non_external(bool_var v);
|
||||
bool was_eliminated(bool_var v) const { return m_eliminated[v] != 0; }
|
||||
void set_eliminated(bool_var v, bool f) { m_eliminated[v] = f; }
|
||||
unsigned scope_lvl() const { return m_scope_lvl; }
|
||||
unsigned search_lvl() const { return m_search_lvl; }
|
||||
bool at_search_lvl() const { return m_scope_lvl == m_search_lvl; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue