3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-19 23:26:30 +00:00
This commit is contained in:
CEisenhofer 2026-04-08 09:27:46 +02:00
parent f895548154
commit c7e7b40d40
3 changed files with 9 additions and 3 deletions

View file

@ -47,7 +47,6 @@ namespace euf {
snode_kind sgraph::classify(expr* e) const {
if (!is_app(e))
return snode_kind::s_var;
if (m_seq.str.is_empty(e))
return snode_kind::s_empty;
@ -339,6 +338,8 @@ namespace euf {
compute_metadata(n);
compute_hash_matrix(n);
m_nodes.push_back(n);
SASSERT(!n->is_char_or_unit() || m_seq.str.is_unit(n->get_expr()));
if (e) {
unsigned eid = e->get_id();
m_expr2snode.reserve(eid + 1, nullptr);