3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-05 19:00:25 +00:00

remove xor solver, tune dt_solver for enumeration case

This commit is contained in:
Nikolaj Bjorner 2021-02-27 17:17:39 -08:00
parent 830f314a3f
commit fb8e2e444e
10 changed files with 67 additions and 332 deletions

View file

@ -97,6 +97,7 @@ namespace dt {
enode_pair_vector m_used_eqs; // conflict, if any
parent_tbl m_parent; // parent explanation for occurs_check
svector<stack_entry> m_dfs; // stack for DFS for occurs_check
sat::literal_vector m_lits;
void clear_mark();
@ -119,6 +120,7 @@ namespace dt {
void explain_is_child(enode* parent, enode* child);
void mk_split(theory_var v, bool is_final);
void mk_enum_split(theory_var v);
void display_var(std::ostream & out, theory_var v) const;