Skip to content

Commit cd08766

Browse files
isPANNclaude
andcommitted
fix completeness check: use covered-rules.final() instead of .get()
The warning falsely reported 4 missing rules because .get() only sees state accumulated before the current location. Rules defined after the check were invisible. Using .final() sees all rules in the document. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f2a3648 commit cd08766

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/paper/reductions.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15027,7 +15027,7 @@ Problems parameterized by graph type, weight type, or clause-width ($k$) admit i
1502715027

1502815028
// Completeness check: warn about reduction rules in JSON but missing from paper
1502915029
#context {
15030-
let covered = covered-rules.get()
15030+
let covered = covered-rules.final()
1503115031
let json-edges = {
1503215032
let edges = graph-data.edges.map(e => (graph-data.nodes.at(e.source).name, graph-data.nodes.at(e.target).name))
1503315033
let unique = ()

0 commit comments

Comments
 (0)