mirror of
https://github.com/Z3Prover/z3
synced 2025-09-02 08:10:43 +00:00
coordinate drat with clause removal
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b33f5f879e
commit
e01a668da0
5 changed files with 82 additions and 83 deletions
|
@ -232,7 +232,7 @@ namespace sat {
|
|||
void defrag_clauses();
|
||||
bool should_defrag();
|
||||
bool memory_pressure();
|
||||
void del_clause(clause & c, bool enable_drat = true);
|
||||
void del_clause(clause & c);
|
||||
clause * mk_clause_core(unsigned num_lits, literal * lits, bool learned);
|
||||
clause * mk_clause_core(literal_vector const& lits) { return mk_clause_core(lits.size(), lits.c_ptr()); }
|
||||
clause * mk_clause_core(unsigned num_lits, literal * lits) { return mk_clause_core(num_lits, lits, false); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue