mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
use index j to avoid superficial, but typically flagged, name clash with internal index i
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
commit
bb6d826908
2 changed files with 37 additions and 36 deletions
|
@ -589,8 +589,8 @@ namespace smt {
|
|||
m_dep_manager.reset();
|
||||
bool propagated = false;
|
||||
context & ctx = get_context();
|
||||
for (unsigned j = 0; j < m_nl_monomials.size(); ++j) {
|
||||
theory_var v = m_nl_monomials[j];
|
||||
for (unsigned i = 0; i < m_nl_monomials.size(); i++) {
|
||||
theory_var v = m_nl_monomials[i];
|
||||
expr * m = var2expr(v);
|
||||
if (!ctx.is_relevant(m))
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue