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

deal with compiler warnings, from MacOS CI build

This commit is contained in:
Nikolaj Bjorner 2021-03-08 17:14:09 -08:00
parent 7eceeff349
commit f29a596070
13 changed files with 19 additions and 25 deletions

View file

@ -221,7 +221,7 @@ class create_cut {
for (const auto & p : m_row) {
dump_declaration(out, p.var());
}
for (const auto& p : m_t) {
for (lar_term::ival p : m_t) {
auto t = lia.lra.column2tv(p.column());
if (t.is_term()) {
dump_declaration(out, t.id());
@ -252,7 +252,7 @@ class create_cut {
}
std::ostream& dump_term_coefficients(std::ostream & out) const {
for (const auto& p : m_t) {
for (lar_term::ival p : m_t) {
dump_coeff(out, p);
}
return out;