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:
parent
fbf5fc9482
commit
24dd047892
4 changed files with 4 additions and 20 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue