mirror of
https://github.com/Z3Prover/z3
synced 2025-08-10 21:20:52 +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
|
@ -59,7 +59,7 @@ namespace sat {
|
|||
clause_vector m_clause_db;
|
||||
svector<clause_info> m_clauses;
|
||||
bool_vector m_values, m_best_values;
|
||||
unsigned m_best_min_unsat;
|
||||
unsigned m_best_min_unsat{ 0 };
|
||||
vector<unsigned_vector> m_use_list;
|
||||
unsigned_vector m_flat_use_list;
|
||||
unsigned_vector m_use_list_index;
|
||||
|
@ -68,9 +68,9 @@ namespace sat {
|
|||
indexed_uint_set m_unsat;
|
||||
random_gen m_rand;
|
||||
unsigned_vector m_breaks;
|
||||
uint64_t m_flips;
|
||||
uint64_t m_next_restart;
|
||||
unsigned m_restart_count;
|
||||
uint64_t m_flips{ 0 };
|
||||
uint64_t m_next_restart{ 0 };
|
||||
unsigned m_restart_count{ 0 };
|
||||
stopwatch m_stopwatch;
|
||||
model m_model;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue