3
0
Fork 0
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:
Nikolaj Bjorner 2022-11-03 05:50:46 -07:00
parent 203652da74
commit 06eb460c75
12 changed files with 40 additions and 21 deletions

View file

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