3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

fix a but in adjusting term indices for implied_bounds

This commit is contained in:
Lev Nachmanson 2017-08-03 10:09:00 -07:00
parent d12a0133ce
commit 712619a9cf
3 changed files with 14 additions and 11 deletions

View file

@ -15,7 +15,7 @@ public:
T a;
unsigned i;
while (it->next(a, i)) {
coeff.emplace_back(a, i);
coeff.push_back(std::make_pair(a, i));
}
print_linear_combination_of_column_indices(coeff, out);
}