[Issue Backlog] Backlog Analysis - 2026-06-07 #9749
Closed
Replies: 1 comment
-
|
This discussion has been marked as outdated by Issue Backlog Processor. A newer discussion is available at Discussion #9778. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Issue Backlog Analysis - 2026-06-07
Executive Summary
New Issues Since Last Run (Batch Cursor: #9713 → #9738)
#9726 —
sls_seq_plugin: wrong index in edit_distance_with_updates can_add checksrc/ast/sls/sls_seq_plugin.cppedit_distance_with_updatessrc/ast/sls/sls_seq_plugin.cpp, line 915b.can_add(i - 1)uses theiindex (which iterates over stringa) instead ofj(which iterates over stringb). The correct code in the update-generation block directly below usesb.can_add(j - 1), confirming the bug by contrast.i != j, the mutability cost matrixuis computed incorrectly, causing flawed string repair proposals in the SLS solver. The bug is masked wheni == j(square sub-problems).i - 1toj - 1on line 915 ofsls_seq_plugin.cpp.#9738 —
euf_sgraph.cpp: drop_left/drop_right O(count×depth) vs O(depth) + classify double is_string callsrc/ast/euf/euf_sgraph.cpp(on branchcopilot/fix-euf-snode-supportonly; not yet onmain)mainyet.drop_left/drop_rightuse O(count × depth) loop instead of O(depth) recursive tree navigationclassifycallsis_stringtwice when one call sufficesDropLeftCache/DropRightCachefor O(1) amortized costIssues with Suggested Fixes
sls_seq_plugin: wrong index in edit_distance_with_updateseuf_sgraph.cpp: drop_left/drop_right O(count×depth)Notable Open PRs Awaiting Review
@NikolajBjornerreviewIssues Recommended for Closure
None identified this run.
Potential Duplicates / Merge Candidates
None new. Previously identified clusters remain (see prior runs):
unsat, but loops forever on 4.15.1 #7700: infinite loop/memory blow-up in Z3 4.15.xQF_SLIA#7841, invalid model #7664, invalid model issue on an incremental QF_SLIA formula #6982: invalid models in QF_SLIA string theorysatinstead of expectedunsat, and fails model validation on a specific input #7730, Spacer unsoundness regarding CHCs involving inductively defined datatypes #7611, Soundness bug in HORN logic #4008, z3 returning wrong sat-answer #7417: Spacer soundness clusterNotes
copilot/fix-euf-snode-supportfeature branch, notmain.Automated by Issue Backlog Processor — runs every 2 days
Beta Was this translation helpful? Give feedback.
All reactions