3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-03 22:05:45 +00:00

cosmetic changes

This commit is contained in:
Lev Nachmanson 2023-10-08 10:16:40 -07:00
parent 3aac528aef
commit 1ba0f5aba9
2 changed files with 2 additions and 2 deletions

View file

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