3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-29 01:18:45 +00:00

add cases for unconstrained sequences and strings

This commit is contained in:
Nikolaj Bjorner 2024-11-14 21:40:00 -08:00
parent 62db7642ec
commit 6eae3f0863
2 changed files with 25 additions and 2 deletions

View file

@ -286,8 +286,7 @@ void elim_unconstrained::init_nodes() {
m_heap.reserve(max_id + 1);
for (expr* e : subterms_postorder::all(terms)) {
node& n = get_node(e);
SASSERT(n.is_root());
SASSERT(get_node(e).is_root());
if (is_uninterp_const(e))
m_heap.insert(e->get_id());
}