44theorem constant_of_preconnected {R : V → V → Prop} 45 (hconn : ∀ u v : V, Relation.ReflTransGen R u v) {f : V → ℝ} 46 (hadj : ∀ a b, R a b → f a = f b) : 47 ∀ v w : V, f v = f w := by
proof body
Term-mode proof.
48 intro v w 49 exact eq_of_reflTransGen hadj (hconn v w) 50 51/-! ### Ratio rigidity (Result 1) -/ 52 53/-- Edge cost is nonneg for positive fields. -/
used by (1)
From the project-wide theorem graph. These declarations reference this one in their body.