3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-06 11:20:26 +00:00

fixed freevars and psat cube cutoffs

Signed-off-by: Miguel Angelo Da Terra Neves <t-mineve@microsoft.com>
This commit is contained in:
Miguel Angelo Da Terra Neves 2017-12-04 14:33:48 -08:00
parent 2e042a8bea
commit e0dfbd6d1c
5 changed files with 56 additions and 6 deletions

View file

@ -68,7 +68,8 @@ namespace sat {
enum cutoff_t {
adaptive_cutoff,
fixed_depth_cutoff,
fixed_freevars_cutoff
fixed_freevars_cutoff,
psat_cutoff
};
struct config {
@ -95,6 +96,9 @@ namespace sat {
double m_lookahead_cube_fraction;
unsigned m_lookahead_cube_depth;
double m_lookahead_cube_freevars;
double m_lookahead_cube_psat_var_exp;
double m_lookahead_cube_psat_clause_base;
double m_lookahead_cube_psat_trigger;
reward_t m_lookahead_reward;
bool m_lookahead_global_autarky;