mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
check for v1 == v2
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
63ac2ee0d1
commit
3c16edc8d3
|
@ -134,6 +134,8 @@ class lp_bound_propagator {
|
||||||
m_val2fixed_row.insert(val(v1), r1);
|
m_val2fixed_row.insert(val(v1), r1);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (v1 == v2)
|
||||||
|
return;
|
||||||
|
|
||||||
explanation ex;
|
explanation ex;
|
||||||
explain_fixed_in_row(r1, ex);
|
explain_fixed_in_row(r1, ex);
|
||||||
|
|
Loading…
Reference in a new issue