-
Notifications
You must be signed in to change notification settings - Fork 0
docs: Add reduction classification and detailed survey #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
80b986b
docs: Add reduction classification and detailed survey
GiggleLiu 9154240
fix: Correct citation for Factoring→CircuitSAT reduction
GiggleLiu a14de97
docs: Polish writing to NeurIPS academic standard
GiggleLiu 3f888e6
docs: Combine detailed constructions with theorem/proof structure
GiggleLiu 37cf09f
docs: Improve summary table with overhead column and gray highlighting
GiggleLiu 97d7bff
docs: Add notation section and improve symbol introductions
GiggleLiu 744eb87
docs: Verify facts and fix references
GiggleLiu c0ae81e
test: Improve test coverage for ReductionGraph module
GiggleLiu 7dc4099
fix: Fix clippy warnings and improve test coverage
GiggleLiu d473b08
fix: Correct Factoring→CircuitSAT citation and remove unused refs
GiggleLiu 2af6d22
test: Add coverage tests for ReductionGraph layout
GiggleLiu 952135c
refactor: Simplify layout code to remove dead branches
GiggleLiu 8bd21e0
refactor: Remove unused iteration limit in BFS layout
GiggleLiu 3030e3b
refactor: Move layout computation from Rust to Typst
GiggleLiu adec235
docs: Clean up Typst layout with explicit positions
GiggleLiu 042b313
docs: Optimize graph layout with compact node positions
GiggleLiu e6a588c
fix: Unify SpinGlass types in ReductionGraph visualization
GiggleLiu cee4c8f
refactor: Use type-erased names for ReductionGraph topology
GiggleLiu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,136 @@ | ||
| { | ||
| "nodes": [ | ||
| { | ||
| "id": "MaxCut", | ||
| "label": "MaxCut", | ||
| "category": "graph" | ||
| }, | ||
| { | ||
| "id": "DominatingSet", | ||
| "label": "DominatingSet", | ||
| "category": "graph" | ||
| }, | ||
| { | ||
| "id": "SpinGlass", | ||
| "label": "SpinGlass", | ||
| "category": "optimization" | ||
| }, | ||
| { | ||
| "id": "QUBO", | ||
| "label": "QUBO", | ||
| "category": "optimization" | ||
| }, | ||
| { | ||
| "id": "IndependentSet", | ||
| "label": "IndependentSet", | ||
| "category": "graph" | ||
| }, | ||
| { | ||
| "id": "SetPacking", | ||
| "label": "SetPacking", | ||
| "category": "set" | ||
| }, | ||
| { | ||
| "id": "Satisfiability", | ||
| "label": "Satisfiability", | ||
| "category": "satisfiability" | ||
| }, | ||
| { | ||
| "id": "Coloring", | ||
| "label": "Coloring", | ||
| "category": "graph" | ||
| }, | ||
| { | ||
| "id": "VertexCovering", | ||
| "label": "VertexCovering", | ||
| "category": "graph" | ||
| }, | ||
| { | ||
| "id": "KSatisfiability", | ||
| "label": "KSatisfiability", | ||
| "category": "satisfiability" | ||
| }, | ||
| { | ||
| "id": "CircuitSAT", | ||
| "label": "CircuitSAT", | ||
| "category": "satisfiability" | ||
| }, | ||
| { | ||
| "id": "Factoring", | ||
| "label": "Factoring", | ||
| "category": "specialized" | ||
| }, | ||
| { | ||
| "id": "Matching", | ||
| "label": "Matching", | ||
| "category": "graph" | ||
| }, | ||
| { | ||
| "id": "SetCovering", | ||
| "label": "SetCovering", | ||
| "category": "set" | ||
| } | ||
| ], | ||
| "edges": [ | ||
| { | ||
| "source": "CircuitSAT", | ||
| "target": "SpinGlass", | ||
| "bidirectional": false | ||
| }, | ||
| { | ||
| "source": "Matching", | ||
| "target": "SetPacking", | ||
| "bidirectional": false | ||
| }, | ||
| { | ||
| "source": "Satisfiability", | ||
| "target": "KSatisfiability", | ||
| "bidirectional": true | ||
| }, | ||
| { | ||
| "source": "Factoring", | ||
| "target": "CircuitSAT", | ||
| "bidirectional": false | ||
| }, | ||
| { | ||
| "source": "IndependentSet", | ||
| "target": "SetPacking", | ||
| "bidirectional": true | ||
| }, | ||
| { | ||
| "source": "SpinGlass", | ||
| "target": "QUBO", | ||
| "bidirectional": true | ||
| }, | ||
| { | ||
| "source": "MaxCut", | ||
| "target": "SpinGlass", | ||
| "bidirectional": true | ||
| }, | ||
| { | ||
| "source": "VertexCovering", | ||
| "target": "SetCovering", | ||
| "bidirectional": false | ||
| }, | ||
| { | ||
| "source": "Satisfiability", | ||
| "target": "IndependentSet", | ||
| "bidirectional": false | ||
| }, | ||
| { | ||
| "source": "Satisfiability", | ||
| "target": "Coloring", | ||
| "bidirectional": false | ||
| }, | ||
| { | ||
| "source": "IndependentSet", | ||
| "target": "VertexCovering", | ||
| "bidirectional": true | ||
| }, | ||
| { | ||
| "source": "Satisfiability", | ||
| "target": "DominatingSet", | ||
| "bidirectional": false | ||
| } | ||
| ] | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The book.toml configuration references "mermaid.min.js" in the additional-js array (line 16), but this file does not appear to exist in the repository. The mdbook-mermaid preprocessor typically provides the necessary Mermaid JavaScript automatically, so including mermaid.min.js here is likely redundant and may cause errors if the file is missing. Consider removing "mermaid.min.js" from the additional-js array and relying on the preprocessor to inject the necessary scripts, or ensure the file is properly included if it's needed for a specific reason.