Skip to content

Commit b28b07e

Browse files
committed
update
1 parent 68c80db commit b28b07e

4 files changed

Lines changed: 12 additions & 96 deletions

File tree

.claude/skills/check-issue/SKILL.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ Read the "Reduction Algorithm" section and flag as **Fail** if:
9595

9696
If the construction involves gadgets, penalty terms, auxiliary variables, or non-trivial structural transformation → **Pass**.
9797

98+
Note: if a trivial reduction make original disconnected problems connected, it is also **Pass**.
99+
98100
---
99101

100102
## Rule Check 3: Correctness (fail label: `Wrong`)
@@ -128,7 +130,7 @@ For each reference, verify:
128130

129131
If any cited fact **cannot be verified** (paper not found, claim not in paper) → **Fail** with specifics.
130132

131-
### 3d: Better Algorithm Discovery
133+
### 3d: Better Algorithm Discovery (not fatal)
132134

133135
While searching, if you find:
134136
- A **more recent paper** that supersedes the cited reference

.claude/skills/test-feature/SKILL.md

Lines changed: 0 additions & 91 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,4 @@ claude-output.log
8585
.worktree/
8686
*.json
8787
.claude/worktrees/
88+
docs/test-reports/

Makefile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,14 @@ diagrams:
7676

7777
# Build and serve mdBook with API docs
7878
mdbook:
79-
cargo run --example export_graph
80-
cargo run --example export_schemas
81-
RUSTDOCFLAGS="--default-theme=dark" cargo doc --features ilp-highs --no-deps
82-
mdbook build
79+
@echo "Exporting graph..."
80+
@cargo run --example export_graph 2>&1 | tail -1
81+
@echo "Exporting schemas..."
82+
@cargo run --example export_schemas 2>&1 | tail -1
83+
@echo "Building API docs..."
84+
@RUSTDOCFLAGS="--default-theme=dark" cargo doc --features ilp-highs --no-deps 2>&1 | tail -1
85+
@echo "Building mdBook..."
86+
@mdbook build
8387
rm -rf book/api
8488
cp -r target/doc book/api
8589
@-lsof -ti:3001 | xargs kill 2>/dev/null || true

0 commit comments

Comments
 (0)