mirror of
https://github.com/Z3Prover/z3
synced 2025-07-23 12:48:53 +00:00
fixup bdd reordering, assertions and perf
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
553bf74f47
commit
636f740b1a
4 changed files with 52 additions and 79 deletions
|
@ -41,6 +41,8 @@ namespace sat {
|
|||
unsigned_vector m_var2index;
|
||||
unsigned_vector m_occ;
|
||||
unsigned m_miss;
|
||||
unsigned m_hit1;
|
||||
unsigned m_hit2;
|
||||
|
||||
unsigned m_max_literals;
|
||||
|
||||
|
@ -62,7 +64,9 @@ namespace sat {
|
|||
public:
|
||||
elim_vars(simplifier& s);
|
||||
bool operator()(bool_var v);
|
||||
unsigned miss() const { return m_miss; }
|
||||
unsigned hit2() const { return m_hit1; } // first round bdd construction is minimal
|
||||
unsigned hit1() const { return m_hit2; } // minimal after reshufling
|
||||
unsigned miss() const { return m_miss; } // not-minimal
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue