mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 07:45:46 +00:00
Fix issue https://z3.codeplex.com/workitem/38
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
110fa0b7fb
commit
f4f1c63abb
3 changed files with 36 additions and 15 deletions
|
@ -125,7 +125,7 @@ namespace sat {
|
|||
void collect_subsumed0(clause const & c1, clause_vector & out);
|
||||
void back_subsumption0(clause & c1);
|
||||
|
||||
bool cleanup_clause(clause & c);
|
||||
bool cleanup_clause(clause & c, bool in_use_list);
|
||||
bool cleanup_clause(literal_vector & c);
|
||||
void propagate_unit(literal l);
|
||||
void elim_lit(clause & c, literal l);
|
||||
|
@ -136,7 +136,7 @@ namespace sat {
|
|||
void subsume();
|
||||
|
||||
void cleanup_watches();
|
||||
void cleanup_clauses(clause_vector & cs, bool learned, bool vars_eliminated);
|
||||
void cleanup_clauses(clause_vector & cs, bool learned, bool vars_eliminated, bool in_use_lists);
|
||||
|
||||
bool is_external(bool_var v) const;
|
||||
bool was_eliminated(bool_var v) const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue