3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-19 09:40:20 +00:00

fix #3397, use it or lose it

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-18 11:06:19 -07:00
parent fbf5fc9482
commit 24dd047892
4 changed files with 4 additions and 20 deletions

View file

@ -204,10 +204,8 @@ namespace sat {
m_branching_heuristic = BH_VSIDS;
else if (p.branching_heuristic() == symbol("chb"))
m_branching_heuristic = BH_CHB;
else if (p.branching_heuristic() == symbol("lrb"))
m_branching_heuristic = BH_LRB;
else
throw sat_param_exception("invalid branching heuristic: accepted heuristics are 'vsids', 'lrb' or 'chb'");
throw sat_param_exception("invalid branching heuristic: accepted heuristics are 'vsids' or 'chb'");
m_anti_exploration = p.branching_anti_exploration();
m_step_size_init = 0.40;