mirror of
https://github.com/Z3Prover/z3
synced 2025-08-09 04:31:24 +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
|
@ -105,11 +105,11 @@ namespace smt {
|
|||
m_context.assert_expr(t);
|
||||
}
|
||||
|
||||
virtual void assert_expr_core(expr * t, expr * a) {
|
||||
virtual void assert_expr_core2(expr * t, expr * a) {
|
||||
if (m_name2assertion.contains(a)) {
|
||||
throw default_exception("named assertion defined twice");
|
||||
}
|
||||
solver_na2as::assert_expr_core(t, a);
|
||||
solver_na2as::assert_expr_core2(t, a);
|
||||
get_manager().inc_ref(t);
|
||||
m_name2assertion.insert(a, t);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue