3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

fix feasibility tracking in lar_solver

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-05-02 18:44:42 -07:00
parent c74893016a
commit 218e155603
4 changed files with 10 additions and 9 deletions

View file

@ -3161,7 +3161,7 @@ public:
return l_false;
case lp::lp_status::FEASIBLE:
case lp::lp_status::OPTIMAL:
SASSERT(lp().all_constraints_hold());
// SASSERT(lp().all_constraints_hold());
return l_true;
case lp::lp_status::TIME_EXHAUSTED: