IsTwoEdgeConnected - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


GraphTheory

  

IsTwoEdgeConnected

  

test if graph is two-edge connected

  

TwoEdgeConnectedComponents

  

compute two-edge connected components of graph

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

IsTwoEdgeConnected(G)

TwoEdgeConnectedComponents(G)

Parameters

G

-

graph

Description

• 

A connected graph G is 2-edge connected if removal of any edge from G does not disconnect G.  The IsTwoEdgeConnected command returns true if G is 2-edge connected and false otherwise.

• 

TwoEdgeConnectedComponents returns the 2-edge connected components of a graph G.  The output is a list of lists of vertices of G, each being the list of vertices of a component.

Examples

> 

with⁡GraphTheory:

> 

IsTwoEdgeConnected⁡CycleGraph⁡4

true

(1)
> 

IsTwoEdgeConnected⁡PathGraph⁡4

false

(2)
> 

G≔Graph⁡a,b,a,c,a,h,a,i,b,c,c,d,d,e,d,f,e,f,h,i:

> 

IsTwoEdgeConnected⁡G

false

(3)
> 

DrawGraph⁡G

> 

TwoEdgeConnectedComponents⁡G

d,e,f,a,b,c,h,i

(4)

See Also

BiconnectedComponents

CycleGraph

IsBiconnected

IsConnected