123theorem sat_reaches_zero {n : ℕ} (f : CNFFormula n) (h : f.isSAT) : 124 ∃ a : Assignment n, satJCost f a = 0 := by
proof body
Term-mode proof.
125 obtain ⟨a, ha⟩ := h 126 exact ⟨a, (satJCost_zero_iff f a).mpr ha⟩ 127 128/-- The recognition time for a satisfiable formula is ≤ n (variable count). -/
used by (2)
From the project-wide theorem graph. These declarations reference this one in their body.