3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-01 04:45:52 +00:00

hook up nla_solver it lp bound propagation

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-06-05 15:26:11 -07:00
parent 33cbd29ed0
commit 9c18ede687
11 changed files with 177 additions and 93 deletions

View file

@ -1331,6 +1331,21 @@ lbool core::test_check(
return check(l);
}
lp::impq core::get_upper_bound_of_monomial(lpvar j) const {
SASSERT(false);
}
lp::impq core::get_lower_bound_of_monomial(lpvar j) const {
SASSERT(false);
}
bool core::monomial_has_lower_bound(lpvar j) const {
SASSERT(false);
}
bool core::monomial_has_upper_bound(lpvar j) const {
SASSERT(false);
}
} // end of nla