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:
parent
d12a0133ce
commit
712619a9cf
3 changed files with 14 additions and 11 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue