3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 21:38:44 +00:00

fix in cautious remove_basis

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-05-28 13:19:16 -07:00
parent a6040a1f3d
commit 4728a1fb0c

View file

@ -362,7 +362,8 @@ public:
const ChangeReport& change_report) {
if (is_base(j)) {
TRACE("nla_solver", get_int_solver()->display_row_info(tout, row_of_basic_column(j)) << "\n";);
remove_from_basis(j, val);
if (!remove_from_basis(j, val))
return false;
}
impq ival(val);