We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
between_le
1 parent 4d5d9a7 commit 907f2d1Copy full SHA for 907f2d1
1 file changed
Mathlib/Combinatorics/SimpleGraph/Bipartite.lean
@@ -254,6 +254,8 @@ def between (s t : Set V) (G : SimpleGraph V) : SimpleGraph V where
254
255
lemma between_adj : (G.between s t).Adj v w ↔ G.Adj v w ∧ (v ∈ s ∧ w ∈ t ∨ v ∈ t ∧ w ∈ s) := by rfl
256
257
+lemma between_le : G.between s t ≤ G := fun _ _ h ↦ h.1
258
+
259
lemma between_comm : G.between s t = G.between t s := by
260
ext v w; simp [between_adj, or_comm]
261
0 commit comments