mirror of
https://github.com/Z3Prover/z3
synced 2025-10-07 16:31:55 +00:00
rework sat.mus to use restart count for bounded minimization
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c3eb279637
commit
962979b09c
3 changed files with 24 additions and 39 deletions
|
@ -209,6 +209,7 @@ namespace sat {
|
|||
bool inconsistent() const { return m_inconsistent; }
|
||||
unsigned num_vars() const { return m_level.size(); }
|
||||
unsigned num_clauses() const;
|
||||
unsigned num_restarts() const { return m_restarts; }
|
||||
bool is_external(bool_var v) const { return m_external[v] != 0; }
|
||||
bool was_eliminated(bool_var v) const { return m_eliminated[v] != 0; }
|
||||
unsigned scope_lvl() const { return m_scope_lvl; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue