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:
parent
a6040a1f3d
commit
4728a1fb0c
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue