193structure PotentialFunction (L : GradedLedger) where 194 /-- The potential at each vertex -/ 195 potential : Fin L.n → ℤ 196 /-- Edge weight = potential difference -/ 197 gradient : ∀ u v : Fin L.n, 198 L.edges u v = potential v - potential u 199 200/-- **PROVED: If a potential exists, then all cycle sums are zero.** -/
used by (1)
From the project-wide theorem graph. These declarations reference this one in their body.