3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-20 07:36:31 +00:00

Fix enode_concat_eq leaf comparison, simplify is_str/re_concat, update sgraph summary

Address remaining review feedback from PR #8820:
- Use pointer comparison instead of ID comparison in enode_concat_eq
- Remove redundant num_args() == 2 check from is_str_concat/is_re_concat
- Update euf_sgraph.h abstract to detail seq_plugin features

Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-03-02 18:58:21 +00:00
parent 5bbeedaff0
commit 40b99311e3
3 changed files with 20 additions and 13 deletions

View file

@ -66,7 +66,7 @@ namespace euf {
if (la.size() != lb.size())
return false;
for (unsigned i = 0; i < la.size(); ++i)
if (la[i]->get_id() != lb[i]->get_id())
if (la[i] != lb[i])
return false;
return true;
}