-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
Labels
help-wantedThe author needs attention to resolve issuesThe author needs attention to resolve issuest-combinatoricsCombinatoricsCombinatorics
Description
We have SimpleGraph.IsEdgeConnected and SimpleGraph.IsEdgeReachable for edge connectivity of simple graphs.
I suggest we're missing the following definitions:
noncomputable def edgeReachability (G : SimpleGraph V) (u v : V) : ℕ∞ :=
⨆ (k : ℕ∞) (_ : G.IsVertexReachable k u v), k
noncomputable def edgeConnectivity (G : SimpleGraph V) (u v : V) : ℕ∞ :=
⨆ (k : ℕ∞) (_ : G.IsVertexConnected k), kand basic API for them.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
help-wantedThe author needs attention to resolve issuesThe author needs attention to resolve issuest-combinatoricsCombinatoricsCombinatorics