mirror of
https://github.com/Z3Prover/z3
synced 2026-07-04 22:36:10 +00:00
move away from sets and into vectors for data associated with Boolean variables
This commit is contained in:
parent
92ad285951
commit
d944779e18
2 changed files with 11 additions and 7 deletions
|
|
@ -330,9 +330,9 @@ namespace sls {
|
|||
double score = 0;
|
||||
unsigned touched = 1;
|
||||
lbool value = l_undef;
|
||||
indexed_uint_set fixable_atoms;
|
||||
uint_set fixable_vars;
|
||||
ptr_vector<expr> fixable_exprs;
|
||||
sat::bool_var_vector fixable_atoms;
|
||||
svector<var_t> fixable_vars;
|
||||
ptr_vector<expr> fixable_exprs;
|
||||
bool_info(unsigned w) : weight(w) {}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue