mirror of
https://github.com/Z3Prover/z3
synced 2025-07-24 21:26:59 +00:00
Add intblast solver
This commit is contained in:
parent
0520558fc0
commit
9293923b8a
28 changed files with 1621 additions and 58 deletions
|
@ -363,11 +363,13 @@ namespace euf {
|
|||
bool propagate(enode* a, enode* b, th_explain* p) { return propagate(a, b, p->to_index()); }
|
||||
size_t* to_justification(sat::literal l) { return to_ptr(l); }
|
||||
void set_conflict(th_explain* p) { set_conflict(p->to_index()); }
|
||||
bool inconsistent() const { return s().inconsistent() || m_egraph.inconsistent(); }
|
||||
|
||||
bool set_root(literal l, literal r) override;
|
||||
void flush_roots() override;
|
||||
|
||||
void get_antecedents(literal l, ext_justification_idx idx, literal_vector& r, bool probing) override;
|
||||
void get_eq_antecedents(enode* a, enode* b, literal_vector& r);
|
||||
void get_th_antecedents(literal l, th_explain& jst, literal_vector& r, bool probing);
|
||||
void add_eq_antecedent(bool probing, enode* a, enode* b);
|
||||
void explain_diseq(ptr_vector<size_t>& ex, cc_justification* cc, enode* a, enode* b);
|
||||
|
@ -378,6 +380,7 @@ namespace euf {
|
|||
bool get_case_split(bool_var& var, lbool& phase) override;
|
||||
void asserted(literal l) override;
|
||||
sat::check_result check() override;
|
||||
lbool resolve_conflict() override;
|
||||
void push() override;
|
||||
void pop(unsigned n) override;
|
||||
void user_push() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue