mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
rename to core2 to avoid overloaded virtual
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5a8154c156
commit
fa0c75e76e
11 changed files with 15 additions and 15 deletions
|
@ -115,7 +115,7 @@ public:
|
|||
virtual void assert_expr_core(expr *t)
|
||||
{m_solver.assert_expr(t);}
|
||||
|
||||
virtual void assert_expr_core(expr *t, expr *a)
|
||||
virtual void assert_expr_core2(expr *t, expr *a)
|
||||
{NOT_IMPLEMENTED_YET();}
|
||||
virtual void assert_lemma(expr* e) { NOT_IMPLEMENTED_YET(); }
|
||||
virtual expr_ref lookahead(const expr_ref_vector &,const expr_ref_vector &) { return expr_ref(m.mk_true(), m); }
|
||||
|
|
|
@ -50,7 +50,7 @@ virtual_solver::virtual_solver(virtual_solver_factory &factory,
|
|||
// -- change m_context, but will add m_pred to
|
||||
// -- the private field solver_na2as::m_assumptions
|
||||
if (m_virtual)
|
||||
{ solver_na2as::assert_expr_core(m.mk_true(), m_pred); }
|
||||
{ solver_na2as::assert_expr_core2(m.mk_true(), m_pred); }
|
||||
}
|
||||
|
||||
virtual_solver::~virtual_solver()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue