3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00

add a comment

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2023-10-08 07:34:03 -07:00
parent 54f7aac0bc
commit 3aac528aef

View file

@ -370,7 +370,7 @@ namespace nla {
rational monomial_bounds::fixed_var_product(monic const& m) { rational monomial_bounds::fixed_var_product(monic const& m) {
rational r(1); rational r(1);
for (lpvar v : m) { for (lpvar v : m) {
// VERIFY(!c().var_is_fixed(v) || c().lra.get_column_value(v).x == c().lra.get_lower_bound(v).x); // we have to use the column bounds here, because the value of the column value may be outside the bounds
if (c().var_is_fixed(v)) if (c().var_is_fixed(v))
r *= c().lra.get_lower_bound(v).x; r *= c().lra.get_lower_bound(v).x;
} }