Connectivity on a graph #
A graph is preconnected if for every pair of vertices, there is a path between them.
Equations
- G.Preconnected = ∀ (x y : α), x ∈ G.vertexSet → y ∈ G.vertexSet → G.ConnBetween x y
Instances For
If G has one vertex connected to all others, then G is connected.
Cut #
A partition of G.V into two parts with no edge between them.
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ⋯ = ⋯
Instances For
Alias of the forward direction of Graph.preconnected_iff_isEmpty_separation.
- minimal (S' : Set α) (F' : Set β) : G.IsMixedSep S' F' → IsMixedSep.size S F ≤ IsMixedSep.size S' F'
Instances For
A graph has PreconnGE n, if for every pair of vertices s and t, there is no
n-vertex cut between them.
In the case of complete graphs, K_n, ∀ κ, K_n.PreconnGE κ.
Instances For
A graph has ConnGE n, if every cut has size at least n and the number of vertices is at
least n + 1.
Instances For
A graph has EdgeConnGE n, if for every pair of vertices s and t, there is no
n-edge cut between them.
Equations
- G.EdgeConnGE n = ∀ ⦃s t : α⦄, s ∈ G.vertexSet → t ∈ G.vertexSet → G.EdgeConnBetweenGE s t n
Instances For
Upper bound on connectivity from the vertex count: ⊤ if V(G) is a subsingleton, else
|V(G)| - 1 in ℕ∞.
Equations
- G.cardConnectivityBound = if x : G.vertexSet.Subsingleton then ⊤ else G.vertexSet.encard - 1
Instances For
Global vertex connectivity as an ℕ∞: minimum of separator connectivity and the
cardinality bound that appears in ConnGE.
Equations
Instances For
Minimum pairwise connBetweenConnectivity over ordered pairs of vertices in V(G).
Equations
- G.preconnectivity = ⨅ (s : ↑G.vertexSet), ⨅ (t : ↑G.vertexSet), G.connectivityBetween ↑s ↑t
Instances For
Minimum pairwise edgeConnBetweenConnectivity over ordered pairs of vertices in V(G).
Equations
- G.edgeConnectivity = ⨅ (s : ↑G.vertexSet), ⨅ (t : ↑G.vertexSet), G.edgeConnectivityBetween ↑s ↑t