3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-03 09:50:23 +00:00

integrate v2 of lns

This commit is contained in:
Nikolaj Bjorner 2021-02-04 15:47:40 -08:00
parent dfb7c87448
commit 0ec567fe15
18 changed files with 254 additions and 105 deletions

View file

@ -150,6 +150,11 @@ namespace smt {
*/
lbool preferred_sat(expr_ref_vector const& asms, vector<expr_ref_vector>& cores);
void set_phase(expr * e) { NOT_IMPLEMENTED_YET(); }
solver::phase* get_phase() { NOT_IMPLEMENTED_YET(); return nullptr; }
void set_phase(solver::phase* p) { NOT_IMPLEMENTED_YET(); }
void move_to_front(expr* e) { NOT_IMPLEMENTED_YET(); }
/**
\brief Return the model associated with the last check command.
*/