mirror of
https://github.com/Z3Prover/z3
synced 2025-08-21 02:30:23 +00:00
fixes for #2513
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
de69b01e92
commit
a337a51374
28 changed files with 486 additions and 144 deletions
|
@ -49,13 +49,15 @@ namespace sat {
|
|||
std::ostream* m_out;
|
||||
std::ostream* m_bout;
|
||||
ptr_vector<clause> m_proof;
|
||||
svector<status> m_status;
|
||||
svector<status> m_status;
|
||||
literal_vector m_units;
|
||||
vector<watch> m_watches;
|
||||
svector<lbool> m_assignment;
|
||||
bool m_inconsistent;
|
||||
bool m_check_unsat, m_check_sat, m_check;
|
||||
unsigned m_num_add, m_num_del;
|
||||
bool m_check_unsat, m_check_sat, m_check, m_activity;
|
||||
|
||||
void dump_activity();
|
||||
void dump(unsigned n, literal const* c, status st);
|
||||
void bdump(unsigned n, literal const* c, status st);
|
||||
void append(literal l, status st);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue