3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-09 09:21:56 +00:00

Cuber fixes. Added March_CU heuristics

This commit is contained in:
Miguel Neves 2017-10-06 16:10:05 -07:00
parent 133f376172
commit 4d91169118
6 changed files with 130 additions and 59 deletions

View file

@ -100,6 +100,9 @@ namespace sat {
else if (p.lookahead_reward() == symbol("unit")) {
m_lookahead_reward = unit_literal_reward;
}
else if (p.lookahead_reward() == symbol("march_cu")) {
m_lookahead_reward = march_cu_reward;
}
else {
throw sat_param_exception("invalid reward type supplied: accepted heuristics are 'ternary', 'heuleu', 'unit' or 'heule_schur'");
}