3
0
Fork 0
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:
Nikolaj Bjorner 2018-02-07 15:13:13 -08:00
parent 5a8154c156
commit fa0c75e76e
11 changed files with 15 additions and 15 deletions

View file

@ -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); }

View file

@ -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()