3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-11-19 08:42:32 -08:00
parent 99d5215956
commit 4928c28e63

View file

@ -3477,7 +3477,7 @@ public:
st = lp::lp_status::FEASIBLE;
lp().restore_x();
}
if (m_nla && st == lp::lp_status::OPTIMAL) {
if (m_nla && (st == lp::lp_status::OPTIMAL || st == lp::lp_status::UNBOUNDED)) {
st = lp::lp_status::FEASIBLE;
lp().restore_x();
}