Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,732 changes: 1,089 additions & 643 deletions docs/paper/reductions.typ

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/src/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ pred create SpinGlass --graph 0-1,1-2 -o sg.json
pred create MaxCut --graph 0-1,1-2,2-0 -o maxcut.json
pred create Factoring --target 15 --bits-m 4 --bits-n 4 -o factoring.json
pred create Factoring --target 21 --bits-m 3 --bits-n 3 -o factoring2.json
pred create X3C --universe 9 --sets "0,1,2;0,2,4;3,4,5;3,5,7;6,7,8;1,4,6;2,5,8" -o x3c.json
```

Canonical examples are useful when you want a known-good instance from the paper/example database.
Expand Down
16 changes: 16 additions & 0 deletions docs/src/reductions/problem_schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,22 @@
}
]
},
{
"name": "ExactCoverBy3Sets",
"description": "Determine if a collection of 3-element subsets contains an exact cover",
"fields": [
{
"name": "universe_size",
"type_name": "usize",
"description": "Size of universe X (must be divisible by 3)"
},
{
"name": "subsets",
"type_name": "Vec<[usize; 3]>",
"description": "Collection C of 3-element subsets of X"
}
]
},
{
"name": "Factoring",
"description": "Factor a composite integer into two factors",
Expand Down
Loading
Loading