CVP is PTIME-hard #
The reduction, and the hardness it discharges. Three steps:
- the certificate, on the source side: a Horn instance fails to be a
yes-instance exactly when it is not Horn or some goal clause has all its
negative literals forced (
DescriptiveComplexity.CvpVal.not_hornSatisfiable_iff_glVal), which isDescriptiveComplexity.exists_goalClausein one direction andDescriptiveComplexity.forced_subset_modelin the other; - the circuit, on the target side: the drawn circuit accepts exactly when
the value of its output gate – the top of the goal chain – holds, which is
the two halves of
DescriptiveComplexity.Problems.Cvp.Hardness.Valueput together; - the complement, on the class side: what the reduction gives is hardness
of
CVPforHORNSATᶜ, and polynomial time is closed under complement (DescriptiveComplexity.SigmaSOHornDefinable.compl), so complementing the Horn discharge turns that into hardness for every problem of the class.
Reducing from the complement is what keeps the circuit monotone: a circuit reporting satisfiability would have to negate the propagation, while one reporting failure only has to detect a falsified goal clause.
The certificate on the source side #
A Horn instance fails exactly when the goal chain fires: either it is not Horn, or some goal clause has all its negative literals forced.
Dependency graph
What the drawn circuit accepts #
The drawn circuit accepts exactly the failures of Horn satisfiability. The output gate is the top of the goal chain, so this is the two halves of the evaluation read at that gate, against the certificate above.
Dependency graph
The reduction and the completeness theorem #
The reduction: the complement of HORN-SAT ordered-FO-reduces to CVP, by drawing the unit-propagation circuit inside the instance.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Dependency graph
CVP is PTIME-hard: every SO-Horn definable problem reduces to it.
The route is the Horn discharge applied to the complement of the problem,
complemented back – which is available because polynomial time is closed under
complement.