-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
ruleA new reduction rule to be added.A new reduction rule to be added.
Milestone
Description
Source: EXACT COVER BY 3-SETS
Target: MINIMUM EDGE-COST FLOW
Motivation: Skipped — source problem X3C is a specialization of Set Covering (each set has exactly 3 elements, exact cover required). Implement the general Set Covering reductions first.
Reference: Garey & Johnson, Computers and Intractability, ND32, p.214
Specialization Note
- X3C (Exact Cover by 3-Sets) is a restriction of Set Covering where each set has exactly 3 elements and an exact cover is required.
MinimumSetCoveringexists in codebase atsrc/models/set/minimum_set_covering.rs.- X3C itself does not yet have a dedicated model. It could be modeled as a
MinimumSetCoveringinstance with constraints, or as a separate type. - Blocked on: X3C model implementation (P129).
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
ruleA new reduction rule to be added.A new reduction rule to be added.
Type
Projects
Status
Backlog