mirror of
https://github.com/Z3Prover/z3
synced 2026-02-01 14:57:57 +00:00
fix build
This commit is contained in:
parent
5f835dd99c
commit
10043c37fd
1 changed files with 3 additions and 4 deletions
|
|
@ -321,12 +321,11 @@ namespace smt {
|
|||
region& r = ctx.get_region();
|
||||
m_eqs = new (r) enode_pair[num_eqs];
|
||||
std::uninitialized_copy(eqs, eqs + num_eqs, m_eqs);
|
||||
DEBUG_CODE((
|
||||
DEBUG_CODE(
|
||||
for (unsigned i = 0; i < num_eqs; ++i) {
|
||||
enode_pair const & [n1, n2] = eqs[i];
|
||||
SASSERT(n1->get_root() == n2->get_root());
|
||||
SASSERT(eqs[i].first->get_root() == eqs[i].second->get_root());
|
||||
}
|
||||
));
|
||||
);
|
||||
}
|
||||
|
||||
void ext_simple_justification::get_antecedents(conflict_resolution & cr) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue