mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
model_based_opt: fix enabling complete resolution
a bug prevented an optimization to be enabled
This commit is contained in:
parent
80c516bb50
commit
aa0719abae
1 changed files with 1 additions and 1 deletions
|
@ -981,7 +981,7 @@ namespace opt {
|
||||||
lub_rows.reset();
|
lub_rows.reset();
|
||||||
glb_rows.reset();
|
glb_rows.reset();
|
||||||
mod_rows.reset();
|
mod_rows.reset();
|
||||||
bool lub_is_unit = false, glb_is_unit = false;
|
bool lub_is_unit = true, glb_is_unit = true;
|
||||||
unsigned eq_row = UINT_MAX;
|
unsigned eq_row = UINT_MAX;
|
||||||
// select the lub and glb.
|
// select the lub and glb.
|
||||||
for (unsigned row_id : row_ids) {
|
for (unsigned row_id : row_ids) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue