Skip to content

Graph theory def: Edge connectivity number #34961

@SnirBroshi

Description

@SnirBroshi

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), k

and basic API for them.

Metadata

Metadata

Assignees

No one assigned

    Labels

    help-wantedThe author needs attention to resolve issuest-combinatoricsCombinatorics

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions