mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fix 6800
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
50717fb655
commit
51df7b75ce
2 changed files with 3 additions and 1 deletions
|
@ -31,7 +31,7 @@ namespace lp {
|
|||
lra.remove_fixed_vars_from_base();
|
||||
lp_assert(lia.is_feasible());
|
||||
for (unsigned j : lra.r_basis())
|
||||
if (!lra.get_value(j).is_int())
|
||||
if (!lra.get_value(j).is_int() && lra.column_is_int(j))
|
||||
patch_basic_column(j);
|
||||
if (!lia.has_inf_int()) {
|
||||
lia.settings().stats().m_patches_success++;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue