3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00

NYI control paths

This commit is contained in:
Nikolaj Bjorner 2020-04-28 20:19:20 -07:00
parent ee1d393150
commit e67112f289
7 changed files with 22 additions and 8 deletions

View file

@ -49,7 +49,7 @@ public:
lbool find_mutexes(expr_ref_vector const& vars, vector<expr_ref_vector>& mutexes) override;
protected:
virtual lbool check_sat_core2(unsigned num_assumptions, expr * const * assumptions) = 0;
virtual lbool check_sat_cc_core(const expr_ref_vector &assumptions, vector<expr_ref_vector> const &clauses) { NOT_IMPLEMENTED_YET(); }
virtual lbool check_sat_cc_core(const expr_ref_vector &assumptions, vector<expr_ref_vector> const &clauses) { NOT_IMPLEMENTED_YET(); return l_undef; }
virtual void push_core() = 0;
virtual void pop_core(unsigned n) = 0;
};