mirror of
https://github.com/Z3Prover/z3
synced 2025-07-18 02:16:40 +00:00
Make ast_manager::get_family_id(symbol const &) side-effect free. The version with side-effects is now called ast_manager::mk_family_id
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
3ddb1a85f1
commit
d92efeb0c5
56 changed files with 127 additions and 108 deletions
|
@ -1512,7 +1512,7 @@ public:
|
|||
|
||||
public:
|
||||
arith_plugin(i_solver_context& ctx, ast_manager& m, smt_params& p):
|
||||
qe_solver_plugin(m, m.get_family_id("arith"), ctx),
|
||||
qe_solver_plugin(m, m.mk_family_id("arith"), ctx),
|
||||
m_util(m, p, ctx),
|
||||
m_trail(m)
|
||||
{}
|
||||
|
@ -2403,7 +2403,7 @@ public:
|
|||
bool m_produce_models;
|
||||
public:
|
||||
nlarith_plugin(i_solver_context& ctx, ast_manager& m, bool produce_models) :
|
||||
qe_solver_plugin(m, m.get_family_id("arith"), ctx),
|
||||
qe_solver_plugin(m, m.mk_family_id("arith"), ctx),
|
||||
m_rewriter(m),
|
||||
m_util(m),
|
||||
m_replacer(mk_default_expr_replacer(m)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue