Commit 06d7f27
* Remove unsound reductions from the paper: SubsetSum to CapacityAssignment and Partition to ShortestWeightConstrainedPath. Also, delete related files for ExactCoverBy3Sets to MinimumWeightSolutionToLinearEquations and HamiltonianPath to ConsecutiveOnesSubmatrix. Update overhead calculations in various reduction implementations to reflect changes in problem structure.
* fix overhead formulas per Codex review
- sat_circuitsat: account for extra assignments/variables from unused SAT vars
- sat_coloring: OR-gadget adds 11 edges (not 10), plus base triangle constant
- circuit_spinglass: 4× spin and 6× interaction multipliers for gate arity
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* use asymptotic overhead formulas, drop constant factors
Overhead expressions describe scaling (O(·)), not exact sizes.
Revert constant-factor adjustments and keep only the two
genuinely wrong asymptotic formulas:
- CircuitSAT → SpinGlass: O(A) → O(A·V) (gate arity scales with variables)
- SpinGlass → MaxCut edges: O(m) → O(m+n) (ancilla edges are O(n))
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e38b1b5 commit 06d7f27
26 files changed
Lines changed: 61 additions & 2664 deletions
File tree
- docs/paper
- src
- rules
- unit_tests
- rules
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
414 | 414 | | |
415 | 415 | | |
416 | 416 | | |
417 | | - | |
418 | | - | |
| 417 | + | |
| 418 | + | |
419 | 419 | | |
420 | 420 | | |
421 | 421 | | |
| |||
Lines changed: 0 additions & 78 deletions
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
46 | | - | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
47 | 48 | | |
48 | | - | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
49 | 56 | | |
50 | 57 | | |
51 | | - | |
| 58 | + | |
52 | 59 | | |
53 | 60 | | |
54 | 61 | | |
| |||
121 | 128 | | |
122 | 129 | | |
123 | 130 | | |
124 | | - | |
| 131 | + | |
| 132 | + | |
125 | 133 | | |
126 | 134 | | |
127 | 135 | | |
| |||
0 commit comments