mirror of
https://github.com/Z3Prover/z3
synced 2025-08-25 12:35:59 +00:00
bool_vector, some spacer tidy
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2ed26e8e73
commit
b889b110ee
106 changed files with 239 additions and 266 deletions
|
@ -118,11 +118,11 @@ namespace sat {
|
|||
vector<watch_list> m_watches;
|
||||
svector<lbool> m_assignment;
|
||||
svector<justification> m_justification;
|
||||
svector<bool> m_decision;
|
||||
svector<bool> m_mark;
|
||||
svector<bool> m_lit_mark;
|
||||
svector<bool> m_eliminated;
|
||||
svector<bool> m_external;
|
||||
bool_vector m_decision;
|
||||
bool_vector m_mark;
|
||||
bool_vector m_lit_mark;
|
||||
bool_vector m_eliminated;
|
||||
bool_vector m_external;
|
||||
unsigned_vector m_touched;
|
||||
unsigned m_touch_index;
|
||||
literal_vector m_replay_assign;
|
||||
|
@ -137,9 +137,9 @@ namespace sat {
|
|||
int m_action;
|
||||
double m_step_size;
|
||||
// phase
|
||||
svector<bool> m_phase;
|
||||
svector<bool> m_best_phase;
|
||||
svector<bool> m_prev_phase;
|
||||
bool_vector m_phase;
|
||||
bool_vector m_best_phase;
|
||||
bool_vector m_prev_phase;
|
||||
svector<char> m_assigned_since_gc;
|
||||
search_state m_search_state;
|
||||
unsigned m_search_unsat_conflicts;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue