Skip to content

Commit

Permalink
fix default parameter regression
Browse files Browse the repository at this point in the history
bug introduced in commit 63f48f8
  • Loading branch information
nunoplopes committed Aug 23, 2022
1 parent 7ab904b commit 916d1db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/smt/params/smt_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ struct smt_params : public preprocessor_params,
unsigned m_relevancy_lvl = 2;
bool m_relevancy_lemma = false;
unsigned m_random_seed = 0;
double m_random_var_freq = 1.052;

This comment has been minimized.

Copy link
@NikolajBjorner

NikolajBjorner Aug 23, 2022

Contributor

ouch!

Thanks!!

double m_inv_decay = 1;
unsigned m_clause_decay;
double m_random_var_freq = 0.01;
double m_inv_decay = 1.052;
unsigned m_clause_decay = 1;
initial_activity m_random_initial_activity = initial_activity::IA_RANDOM_WHEN_SEARCHING;
phase_selection m_phase_selection = phase_selection::PS_CACHING_CONSERVATIVE;
unsigned m_phase_caching_on = 700;
Expand Down

0 comments on commit 916d1db

Please sign in to comment.