3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00

theory-aware branching heuristic

This commit is contained in:
Murphy Berzish 2017-05-02 10:43:40 -04:00
parent 6cd1f877b8
commit 5b4792955d
4 changed files with 176 additions and 17 deletions

View file

@ -3022,6 +3022,10 @@ namespace smt {
}
}
void context::add_theory_aware_branching_info(bool_var v, double priority, lbool phase) {
m_case_split_queue->add_theory_aware_branching_info(v, priority, phase);
}
bool context::propagate_th_case_split(unsigned qhead) {
if (m_all_th_case_split_literals.empty())
return true;