mirror of
https://github.com/Z3Prover/z3
synced 2025-07-31 16:33:18 +00:00
snapshot
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fc3cbcbe02
commit
7afbf8165e
25 changed files with 230 additions and 332 deletions
|
@ -105,10 +105,6 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
virtual void assert_lemma(expr * t) {
|
||||
m_solver->assert_lemma(t);
|
||||
}
|
||||
|
||||
virtual void push_core() {
|
||||
flush_assertions();
|
||||
m_solver->push();
|
||||
|
|
|
@ -68,16 +68,6 @@ public:
|
|||
m_solver->assert_expr(bounds);
|
||||
}
|
||||
|
||||
virtual void assert_lemma(expr* t) {
|
||||
expr_ref tmp(t, m);
|
||||
expr_ref_vector bounds(m);
|
||||
proof_ref tmp_proof(m);
|
||||
m_rewriter(t, tmp, tmp_proof);
|
||||
m_solver->assert_lemma(tmp);
|
||||
m_rewriter.flush_side_constraints(bounds);
|
||||
m_solver->assert_expr(bounds);
|
||||
}
|
||||
|
||||
virtual void push_core() {
|
||||
m_rewriter.push();
|
||||
m_solver->push();
|
||||
|
|
|
@ -62,10 +62,6 @@ public:
|
|||
m_assertions.push_back(t);
|
||||
}
|
||||
|
||||
virtual void assert_lemma(expr * t) {
|
||||
m_solver->assert_lemma(t);
|
||||
}
|
||||
|
||||
virtual void push_core() {
|
||||
flush_assertions();
|
||||
m_rewriter.push();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue