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

fix test build

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-03-25 18:50:53 -07:00
parent b34f841421
commit fd219abe8c
2 changed files with 3 additions and 6 deletions

View file

@ -187,7 +187,7 @@ struct gomory_test {
void print_term(lar_term & t, std::ostream & out) {
vector<std::pair<mpq, unsigned>> row;
for (auto p : t)
row.push_back(std::make_pair(p.coeff(), p.var()));
row.push_back(std::make_pair(p.coeff(), p.var().index()));
print_row(out, row);
}