We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abe2b05 commit 5fde8ecCopy full SHA for 5fde8ec
FormalConjecturesForMathlib/Combinatorics/SimpleGraph/GraphConjectures/Definitions.lean
@@ -109,9 +109,10 @@ def InternallyDisjoint {V : Type*} {G : SimpleGraph V} {u v x y : V}
109
110
/--
111
We say a graph is infinitely connected if any two vertices are connected by infinitely many
112
-pairwise disjoint paths.
+pairwise disjoint paths. Note that graphs with at most one vertex are not classed as
113
+infinitely connected.
114
-/
-def InfinitelyConnected {V : Type*} (G : SimpleGraph V) : Prop :=
115
+def InfinitelyConnected {V : Type*} (G : SimpleGraph V) : Prop := Nontrivial V ∧
116
Pairwise fun u v ↦ ∃ P : Set (G.Walk u v),
117
P.Infinite ∧ (∀ p ∈ P, p.IsPath) ∧ P.Pairwise InternallyDisjoint
118
0 commit comments