mirror of
https://github.com/Z3Prover/z3
synced 2025-08-07 03:31:23 +00:00
add preprocessor parameter whether to use bound simplifier
This commit is contained in:
parent
76aad689c6
commit
79d47eb302
4 changed files with 6 additions and 0 deletions
|
@ -30,6 +30,7 @@ void preprocessor_params::updt_local_params(params_ref const & _p) {
|
|||
m_elim_unconstrained = p.elim_unconstrained();
|
||||
m_solve_eqs = p.solve_eqs();
|
||||
m_ng_lift_ite = static_cast<lift_ite_kind>(p.q_lift_ite());
|
||||
m_bound_simplifier = p.bound_simplifier();
|
||||
}
|
||||
|
||||
void preprocessor_params::updt_params(params_ref const & p) {
|
||||
|
@ -63,4 +64,5 @@ void preprocessor_params::display(std::ostream & out) const {
|
|||
DISPLAY_PARAM(m_max_bv_sharing);
|
||||
DISPLAY_PARAM(m_pre_simplifier);
|
||||
DISPLAY_PARAM(m_nlquant_elim);
|
||||
DISPLAY_PARAM(m_bound_simplifier);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue