Skip to content

Commit 4513175

Browse files
Add docstring
1 parent 59fd8ea commit 4513175

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Mathlib/Combinatorics/SimpleGraph/Maps.lean

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -633,6 +633,8 @@ def overFin (hc : Fintype.card V = n) : SimpleGraph (Fin n) where
633633
noncomputable def overFinIso (hc : Fintype.card V = n) : G ≃g G.overFin hc := by
634634
use Fintype.equivFinOfCardEq hc; simp [overFin]
635635

636+
/-- The isomorphism between `completeBipartiteGraph α β` and
637+
`completeBipartiteGraph (Fin s) (Fin t)` where `card α = s` and `card β = t`. -/
636638
noncomputable def completeBipartiteGraph.overFinIso {α β : Type*} [Fintype α] [Fintype β]
637639
{s t : ℕ} (hc₁ : Fintype.card α = s) (hc₂ : Fintype.card β = t) :
638640
completeBipartiteGraph α β ≃g completeBipartiteGraph (Fin s) (Fin t) where

0 commit comments

Comments
 (0)