mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
fix build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
66f2a7636b
commit
5c80b142c5
2 changed files with 0 additions and 5 deletions
|
@ -27,7 +27,6 @@ void smt_params::updt_local_params(params_ref const & _p) {
|
||||||
m_random_seed = p.random_seed();
|
m_random_seed = p.random_seed();
|
||||||
m_relevancy_lvl = p.relevancy();
|
m_relevancy_lvl = p.relevancy();
|
||||||
m_ematching = p.ematching();
|
m_ematching = p.ematching();
|
||||||
m_recfun_max_depth = p.recfun_max_depth();
|
|
||||||
m_phase_selection = static_cast<phase_selection>(p.phase_selection());
|
m_phase_selection = static_cast<phase_selection>(p.phase_selection());
|
||||||
m_restart_strategy = static_cast<restart_strategy>(p.restart_strategy());
|
m_restart_strategy = static_cast<restart_strategy>(p.restart_strategy());
|
||||||
m_restart_factor = p.restart_factor();
|
m_restart_factor = p.restart_factor();
|
||||||
|
|
|
@ -108,9 +108,6 @@ struct smt_params : public preprocessor_params,
|
||||||
bool m_new_core2th_eq;
|
bool m_new_core2th_eq;
|
||||||
bool m_ematching;
|
bool m_ematching;
|
||||||
|
|
||||||
// TODO: move into its own file?
|
|
||||||
unsigned m_recfun_max_depth;
|
|
||||||
|
|
||||||
// -----------------------------------
|
// -----------------------------------
|
||||||
//
|
//
|
||||||
// Case split strategy
|
// Case split strategy
|
||||||
|
@ -264,7 +261,6 @@ struct smt_params : public preprocessor_params,
|
||||||
m_display_features(false),
|
m_display_features(false),
|
||||||
m_new_core2th_eq(true),
|
m_new_core2th_eq(true),
|
||||||
m_ematching(true),
|
m_ematching(true),
|
||||||
m_recfun_max_depth(50),
|
|
||||||
m_case_split_strategy(CS_ACTIVITY_DELAY_NEW),
|
m_case_split_strategy(CS_ACTIVITY_DELAY_NEW),
|
||||||
m_rel_case_split_order(0),
|
m_rel_case_split_order(0),
|
||||||
m_lookahead_diseq(false),
|
m_lookahead_diseq(false),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue