3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 17:45:32 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-06-04 16:30:52 -07:00
parent 08e7de3c09
commit f920079aac

View file

@ -331,6 +331,8 @@ namespace arith {
}
void solver::new_diseq_eh(euf::th_eq const& e) {
ensure_column(e.v1());
ensure_column(e.v2());
m_delayed_eqs.push_back(std::make_pair(e, false));
ctx.push(push_back_vector<svector<std::pair<euf::th_eq, bool>>>(m_delayed_eqs));
}