3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-09 23:53:25 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-07-06 02:09:47 -07:00
parent a0124a079e
commit 0b30ddb769

View file

@ -2763,12 +2763,12 @@ public:
} }
case lp::lp_status::FEASIBLE: { case lp::lp_status::FEASIBLE: {
inf_rational val(term_max.x, term_max.y); inf_rational val(term_max.x, term_max.y);
// todo , TODO , not sure what happens here blocker = mk_gt(v);
return inf_eps(rational::zero(), val); return inf_eps(rational::zero(), val);
} }
default: default:
SASSERT(st == lp::lp_status::UNBOUNDED); SASSERT(st == lp::lp_status::UNBOUNDED);
TRACE("arith", tout << "Unbounded v" << v << "\n";); TRACE("arith", tout << "Unbounded v" << v << "\n";);
has_shared = false; has_shared = false;
blocker = m.mk_false(); blocker = m.mk_false();
return inf_eps(rational::one(), inf_rational()); return inf_eps(rational::one(), inf_rational());