\name{edgeConnectivity} \alias{edgeConnectivity} \title{computed edge connectivity and min disconnecting set for an undirected graph} \description{computed edge connectivity and min disconnecting set for an undirected graph} \usage{ edgeConnectivity(g) } \arguments{ \item{g}{an instance of the \code{graph} class with \code{edgemode} \dQuote{undirected}} } \details{ Consider a graph G consisting of a single connected component. The edge connectivity of G is the minimum number of edges in G that can be cut to produce a graph with two (disconnected) components. The set of edges in this cut is called the minimum disconnecting set. } \value{ A list: \item{connectivity}{the integer describing the number of edges that must be severed to obtain two components} \item{minDisconSet}{a list (of length \code{connectivity}) of pairs of node names describing the edges that need to be cut to obtain two components} } \references{ Boost Graph Library ( www.boost.org/libs/graph/doc/index.html ) The Boost Graph Library: User Guide and Reference Manual; by Jeremy G. Siek, Lie-Quan Lee, and Andrew Lumsdaine; (Addison-Wesley, Pearson Education Inc., 2002), xxiv+321pp. ISBN 0-201-72914-8 } \author{Vince Carey } \seealso{\code{\link{minCut}}, \code{\link{edmonds.karp.max.flow}}, \code{\link{push.relabel.max.flow}} } \examples{ con <- file(system.file("XML/conn.gxl",package="RBGL"), open="r") coex <- fromGXL(con) close(con) edgeConnectivity(coex) } \keyword{ models }