mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +00:00
fix bug in smt_tactic_core for translating user-ids
This commit is contained in:
parent
0d055b83eb
commit
f0e9363e78
2 changed files with 475 additions and 1 deletions
|
@ -339,7 +339,7 @@ public:
|
|||
lhs.reset();
|
||||
rhs.reset();
|
||||
for (unsigned i = 0; i < num_fixed; ++i)
|
||||
fixed.push_back(t->m_var2internal[i]);
|
||||
fixed.push_back(t->m_var2internal[fixed_ids[i]]);
|
||||
for (unsigned i = 0; i < num_eqs; ++i) {
|
||||
lhs.push_back(t->m_var2internal[eq_lhs[i]]);
|
||||
rhs.push_back(t->m_var2internal[eq_rhs[i]]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue