3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-02-15 21:18:15 -10:00
parent fcc40310c7
commit 73662ad60d

View file

@ -399,7 +399,7 @@ template <typename T, typename X> unsigned lp_solver<T, X>::try_to_remove_some_r
template <typename T, typename X> void lp_solver<T, X>::cleanup() {
int n = 0; // number of deleted rows
int d;
while ((d = try_to_remove_some_rows() > 0))
while ((d = try_to_remove_some_rows()) > 0)
n += d;
if (n == 1) {