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

start gomory cut

Signed-off-by: Lev Nachmanson <levnach@microsoft.com>
This commit is contained in:
Lev Nachmanson 2017-07-11 13:38:59 -07:00
parent 69d6b022b8
commit fc6a876845
3 changed files with 64 additions and 29 deletions

View file

@ -1252,6 +1252,11 @@ namespace smt {
// SAT core assigns a value to
return l_false;
}
case lp::lia_move::bound: {
// todo nikolaj
// Need to set a bound >= k on the only var from the term
return l_false;
}
case lp::lia_move::cut: {
// m_explanation implies term <= k
app_ref b = mk_bound(term, k);