mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
integrate v2 of lns
This commit is contained in:
parent
dfb7c87448
commit
0ec567fe15
18 changed files with 254 additions and 105 deletions
|
@ -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.
|
||||
*/
|
||||
|
|
|
@ -158,9 +158,10 @@ namespace {
|
|||
void assert_expr_core(expr * t) override {
|
||||
m_context.assert_expr(t);
|
||||
}
|
||||
void set_phase(expr* e) override {
|
||||
NOT_IMPLEMENTED_YET();
|
||||
}
|
||||
void set_phase(expr* e) override { m_context.set_phase(e); }
|
||||
phase* get_phase() override { return m_context.get_phase(); }
|
||||
void set_phase(phase* p) override { m_context.set_phase(p); }
|
||||
void move_to_front(expr* e) override { m_context.move_to_front(e); }
|
||||
|
||||
void assert_expr_core2(expr * t, expr * a) override {
|
||||
if (m_name2assertion.contains(a)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue