mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 16:25:48 +00:00
removed front-end-params
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
288a96610f
commit
ffb7e26c75
91 changed files with 264 additions and 412 deletions
|
@ -44,7 +44,7 @@ namespace smt {
|
|||
{}
|
||||
};
|
||||
|
||||
user_theory::user_theory(ast_manager & m, front_end_params const& p, void * ext_context, void * ext_data, char const * name, family_id fid, user_decl_plugin * dp, user_simplifier_plugin * sp):
|
||||
user_theory::user_theory(ast_manager & m, smt_params const& p, void * ext_context, void * ext_data, char const * name, family_id fid, user_decl_plugin * dp, user_simplifier_plugin * sp):
|
||||
theory(fid),
|
||||
m_params(p),
|
||||
m_ext_context(ext_context),
|
||||
|
|
|
@ -43,7 +43,7 @@ namespace smt {
|
|||
typedef union_find<user_theory> th_union_find;
|
||||
typedef std::pair<theory_var, theory_var> var_pair;
|
||||
|
||||
front_end_params const& m_params;
|
||||
smt_params const& m_params;
|
||||
void * m_ext_context;
|
||||
void * m_ext_data;
|
||||
std::string m_name;
|
||||
|
@ -134,7 +134,7 @@ namespace smt {
|
|||
void assert_axiom_core(app* axiom);
|
||||
|
||||
public:
|
||||
user_theory(ast_manager & m, front_end_params const& p, void * ext_context, void * ext_data, char const * name, family_id fid, user_decl_plugin * dp, user_simplifier_plugin * sp);
|
||||
user_theory(ast_manager & m, smt_params const& p, void * ext_context, void * ext_data, char const * name, family_id fid, user_decl_plugin * dp, user_simplifier_plugin * sp);
|
||||
virtual ~user_theory();
|
||||
|
||||
virtual theory * mk_fresh(context * new_ctx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue