mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
deal with compiler warnings
This commit is contained in:
parent
88fbf6510f
commit
857557ad93
8 changed files with 29 additions and 29 deletions
|
@ -204,7 +204,7 @@ struct solver::imp {
|
|||
// variable representing the term.
|
||||
svector<polynomial::var> vars;
|
||||
rational den(1);
|
||||
for (const auto& kv : t) {
|
||||
for (lp::lar_term::ival kv : t) {
|
||||
vars.push_back(lp2nl(kv.column().index()));
|
||||
den = lcm(den, denominator(kv.coeff()));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue