mirror of
https://github.com/Z3Prover/z3
synced 2025-08-28 05:58:55 +00:00
adding euf
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
314bd9277b
commit
4d41db3028
26 changed files with 353 additions and 152 deletions
|
@ -90,11 +90,11 @@ namespace sat {
|
|||
indexed_uint_set m_unsat;
|
||||
indexed_uint_set m_unsat_vars; // set of variables that are in unsat clauses
|
||||
random_gen m_rand;
|
||||
unsigned m_num_non_binary_clauses;
|
||||
unsigned m_restart_count, m_reinit_count, m_parsync_count;
|
||||
uint64_t m_restart_next, m_reinit_next, m_parsync_next;
|
||||
uint64_t m_flips, m_last_flips, m_shifts;
|
||||
unsigned m_min_sz;
|
||||
unsigned m_num_non_binary_clauses{ 0 };
|
||||
unsigned m_restart_count{ 0 }, m_reinit_count{ 0 }, m_parsync_count{ 0 };
|
||||
uint64_t m_restart_next{ 0 }, m_reinit_next{ 0 }, m_parsync_next{ 0 };
|
||||
uint64_t m_flips{ 0 }, m_last_flips{ 0 }, m_shifts{ 0 };
|
||||
unsigned m_min_sz{ 0 };
|
||||
hashtable<unsigned, unsigned_hash, default_eq<unsigned>> m_models;
|
||||
stopwatch m_stopwatch;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue