mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
enable sat.euf in opt, enable smt legacy for lns
This commit is contained in:
parent
db04ccb137
commit
56478f917b
4 changed files with 38 additions and 31 deletions
|
@ -150,10 +150,14 @@ 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 control phase selection and variable ordering.
|
||||
Base implementation is a no-op.
|
||||
*/
|
||||
void set_phase(expr * e) { }
|
||||
solver::phase* get_phase() { return nullptr; }
|
||||
void set_phase(solver::phase* p) { }
|
||||
void move_to_front(expr* e) { }
|
||||
|
||||
/**
|
||||
\brief Return the model associated with the last check command.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue