3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-07 19:51:22 +00:00
This commit is contained in:
Nikolaj Bjorner 2017-07-28 10:32:02 -07:00
commit b70da2a555
3 changed files with 335 additions and 326 deletions

View file

@ -38,7 +38,7 @@ namespace sat {
unsigned m_num_resolves;
unsigned m_num_bin_subsumes;
unsigned m_num_clause_subsumes;
unsigned m_num_card_subsumes;
unsigned m_num_pb_subsumes;
unsigned m_num_cut;
unsigned m_num_gc;
stats() { reset(); }
@ -245,7 +245,9 @@ namespace sat {
bool m_clause_removed;
bool m_constraint_removed;
literal_vector m_roots;
svector<bool> m_root_vars;
unsigned_vector m_weights;
svector<wliteral> m_wlits;
bool subsumes(card& c1, card& c2, literal_vector& comp);
bool subsumes(card& c1, clause& c2, literal_vector& comp);
bool subsumed(card& c1, literal l1, literal l2);