def
SimpleGraph.InternallyDisjoint
{V : Type u_2}
{G : SimpleGraph V}
{u v x y : V}
(p : G.Walk u v)
(q : G.Walk x y)
:
Two walks are internally disjoint if they share no vertices other than their endpoints.
Equations
Instances For
We say a graph is infinitely connected if any two vertices are connected by infinitely many pairwise disjoint paths. Note that graphs with at most one vertex are not classed as infinitely connected.
Equations
- G.InfinitelyConnected = (Nontrivial V ∧ Pairwise fun (u v : V) => ∃ (P : Set (G.Walk u v)), P.Infinite ∧ (∀ p ∈ P, p.IsPath) ∧ P.Pairwise SimpleGraph.InternallyDisjoint)