Skip to content

Commit 7b30387

Browse files
authored
add IsIsolated ⊥ v
1 parent eebae33 commit 7b30387

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Mathlib/Combinatorics/SimpleGraph/Basic.lean

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -964,6 +964,10 @@ variable {G} in
964964
theorem Adj.not_isIsolated_right (h : G.Adj u v) : ¬G.IsIsolated v :=
965965
h.symm.not_isIsolated_left
966966

967+
@[simp]
968+
theorem isIsolated_bot : IsIsolated ⊥ v := by
969+
simp [← neighborSet_eq_empty]
970+
967971
theorem eq_bot_iff_isIsolated : G = ⊥ ↔ ∀ v, G.IsIsolated v := by
968972
simp [eq_bot_iff_forall_not_adj, ← neighborSet_eq_empty, Set.eq_empty_iff_forall_notMem]
969973

0 commit comments

Comments
 (0)