132structure ClauseGadget (n : ℕ) where 133 /-- Variable indices appearing in the clause -/ 134 variables : List (Fin n) 135 /-- Negation flags for each variable -/ 136 negated : List Bool 137 /-- Starting position on tape -/ 138 position : ℤ 139 /-- Width of the gadget -/ 140 width : ℕ := 3 * variables.length + 2
proof body
Definition body.
141 142/-- Encode a SAT clause as CA cells -/
used by (2)
From the project-wide theorem graph. These declarations reference this one in their body.