You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: add PaintShop -> QUBO reduction (#649)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add MinimumVertexCover -> MinimumHittingSet reduction (#200)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add PartitionIntoPathsOfLength2 -> BoundedComponentSpanningForest reduction (#241)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add HamiltonianCircuit -> LongestCircuit reduction (#358)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add Partition -> SubsetSum reduction (#387)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add RootedTreeArrangement -> RootedTreeStorageAssignment reduction (#424)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add SubsetSum -> CapacityAssignment reduction (#426)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add LongestCommonSubsequence -> MaximumIndependentSet reduction (#109)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add MinimumVertexCover -> EnsembleComputation reduction (#204)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add KClique -> BalancedCompleteBipartiteSubgraph reduction (#231)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add KColoring(K3) -> TwoDimensionalConsecutiveSets reduction (#437)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: correct LCS->MIS example_db target_config
* fix: escape #k-clique Typst variable reference in paper
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: add missing Streif2021 bibliography entry for PaintShop→QUBO
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: replace deprecated 'sect' with 'inter' in Typst paper
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* fix: change EnsembleComputation to optimization (Min<usize>) and fix MVC→EC reduction
- EnsembleComputation: Value changed from Or (feasibility) to Min<usize>
(minimize sequence length). The budget parameter remains as a search-space
bound, but evaluate() now returns the number of steps used rather than
just true/false.
- MVC→EC reduction: source changed from MinimumVertexCover<SimpleGraph, i32>
to MinimumVertexCover<SimpleGraph, One>. The weighted variant was unsound
because EC has no weight field. With both sides as Min, the optimal value
relationship J* = K* + |E| is tight — no trivial upper bound needed.
- Updated paper entries, model tests, and rule tests accordingly.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* feat: add default budget for EnsembleComputation, make --budget optional
- Add `with_default_budget()` and `default_budget()` methods. Default is
sum of subset sizes (worst-case without reuse), clamped to at least 1.
- CLI: --budget is now optional; omitting it uses the default.
- Paper: remove J from problem definition (it's a search-space bound,
not a mathematical parameter).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-authored-by: Xiwei Pan <xiwei.pan@connect.hkust-gz.edu.cn>
0 commit comments