mirror of
https://github.com/Z3Prover/z3
synced 2025-08-17 08:42:15 +00:00
move tactic_params to params
This commit is contained in:
parent
203652da74
commit
06eb460c75
12 changed files with 40 additions and 21 deletions
|
@ -30,6 +30,10 @@ namespace euf {
|
|||
unsigned m_num_steps = 0;
|
||||
unsigned m_num_elim_vars = 0;
|
||||
};
|
||||
struct config {
|
||||
bool m_context_solve = true;
|
||||
unsigned m_max_occs = UINT_MAX;
|
||||
};
|
||||
|
||||
th_rewriter m_rewriter;
|
||||
scoped_ptr_vector<extract_eq> m_extract_plugins;
|
||||
|
@ -40,6 +44,7 @@ namespace euf {
|
|||
|
||||
expr_mark m_unsafe_vars; // expressions that cannot be replaced
|
||||
stats m_stats;
|
||||
config m_config;
|
||||
|
||||
void add_subst(dependent_eq const& eq);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue