Commit d6e82e3
* feat(registry): add FieldInfo and ProblemSchemaEntry for auto-discovery
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat(models): register problem schemas for all 20 problem types
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat: add export_schemas example and Makefile target
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* refactor(paper): render struct definitions from JSON schema (#33)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* refactor(paper): remove reduction diagram from typst (#34)
The diagram moves to an interactive web visualization in mdBook.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat(docs): interactive reduction diagram with Cytoscape.js (#34)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs: move make commands from README to CLAUDE.md, add export-schemas
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat(docs): move interactive diagram to index, add doc links and hints
- Show reduction graph on introduction/index page
- Double-click nodes to navigate to problem documentation
- Add collapsible interaction hints
- Simplify reductions/graph.md to reference the index diagram
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat(docs): auto-generate API docs with cargo doc
API page now redirects to rustdoc output. No manual link
maintenance needed — `make doc` generates everything.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* fix(docs): simplify interaction hints, fix tooltip position
- Replace folded details with a single-line hint
- Add window.scrollX/Y to tooltip positioning for correct placement
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat(registry): add doc_path to reduction graph JSON nodes
Each node in the reduction graph JSON now includes a `doc_path` field
pointing to the rustdoc struct page for that problem type.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat(docs): link graph nodes to rustdoc, add variant design section
- Double-click a node to navigate to its rustdoc API page
- Add paper download link
- Add Problem Variants section with topology overview
- Remove hardcoded Problem Categories table
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs: merge reduction usage into getting-started
Add chaining reductions and type safety sections from reductions/using.md.
Update next steps links to point to interactive graph and API reference.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs: deploy CLAUDE.md in mdBook, rewrite contributing page
- Makefile copies .claude/CLAUDE.md to docs/src/claude.md at build time
- contributing.md links to CLAUDE.md for commands/architecture
- Add docs/src/claude.md to .gitignore (auto-generated)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs: update README contributing with deployed CLAUDE.md link
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* docs: add DRY mdBook implementation plan
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* refactor(docs): DRY mdBook - remove hardcoded pages, add CLAUDE.md
- Remove 11 hardcoded pages (problems/*, reductions/*, topology.md)
- Update SUMMARY.md to 7-page structure
- Add CLAUDE.md symlink for mdBook deployment
- Fix API reference redirect URL
- Remove copy command from Makefile (symlink replaces it)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* fix: address PR review comments — coverage, prose, JS, workflow
- Add unit tests for registry/schema.rs (6 tests) and info.rs with_fields
- Fix Typst prose for KColoring, MaxCut, Matching, SpinGlass to match
actual struct fields from render-struct
- Add fetch error handling in introduction.md interactive graph
- Vendor cytoscape.min.js for offline docs (remove CDN dependency)
- Pretty-print problem_schemas.json for readable diffs
- Fix Makefile: add rm -rf before cp to prevent nesting, add rustdoc
copy to mdbook target
- Update docs.yml: add --all-features, generate graph/schemas/examples
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent dc2ccf1 commit d6e82e3
56 files changed
Lines changed: 2813 additions & 1721 deletions
File tree
- .claude
- .github/workflows
- docs
- paper
- plans
- src
- problems
- reductions
- static
- examples
- src
- models
- graph
- optimization
- satisfiability
- set
- specialized
- registry
- rules
- unit_tests/registry
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | | - | |
13 | | - | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
14 | 23 | | |
15 | 24 | | |
16 | 25 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
36 | 42 | | |
37 | 43 | | |
38 | 44 | | |
39 | | - | |
40 | | - | |
| 45 | + | |
| 46 | + | |
41 | 47 | | |
42 | 48 | | |
43 | | - | |
| 49 | + | |
44 | 50 | | |
45 | 51 | | |
46 | 52 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| 22 | + | |
22 | 23 | | |
23 | 24 | | |
24 | 25 | | |
| |||
43 | 44 | | |
44 | 45 | | |
45 | 46 | | |
| 47 | + | |
| 48 | + | |
46 | 49 | | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
47 | 53 | | |
48 | 54 | | |
49 | 55 | | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
50 | 61 | | |
51 | 62 | | |
52 | 63 | | |
| |||
59 | 70 | | |
60 | 71 | | |
61 | 72 | | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
62 | 77 | | |
63 | 78 | | |
64 | 79 | | |
| 80 | + | |
65 | 81 | | |
66 | 82 | | |
67 | 83 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | | - | |
| 59 | + | |
73 | 60 | | |
| 61 | + | |
74 | 62 | | |
75 | 63 | | |
76 | 64 | | |
| |||
0 commit comments