mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 22:23:22 +00:00
fix ordering of delayed assume eqs
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7a04e52c41
commit
12f62e73d5
1 changed files with 2 additions and 1 deletions
|
@ -1583,7 +1583,7 @@ public:
|
||||||
}
|
}
|
||||||
tout << "\n"; );
|
tout << "\n"; );
|
||||||
if (!m_use_nra_model && !m_nla) {
|
if (!m_use_nra_model && !m_nla) {
|
||||||
// lp().random_update(vars.size(), vars.c_ptr());
|
lp().random_update(vars.size(), vars.c_ptr());
|
||||||
}
|
}
|
||||||
m_model_eqs.reset();
|
m_model_eqs.reset();
|
||||||
TRACE("arith", display(tout););
|
TRACE("arith", display(tout););
|
||||||
|
@ -1611,6 +1611,7 @@ public:
|
||||||
tout << mk_pp(n1->get_owner(), m) << " = " << mk_pp(n2->get_owner(), m) << "\n";
|
tout << mk_pp(n1->get_owner(), m) << " = " << mk_pp(n2->get_owner(), m) << "\n";
|
||||||
tout << "v" << v << " = " << "v" << other << "\n";);
|
tout << "v" << v << " = " << "v" << other << "\n";);
|
||||||
m_assume_eq_candidates.push_back(std::make_pair(v, other));
|
m_assume_eq_candidates.push_back(std::make_pair(v, other));
|
||||||
|
num_candidates++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue