Reachable - Maple Help

Online Help

All Products    Maple    MapleSim


GraphTheory

  

Reachable

  

determine vertices reachable from a given vertex

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Reachable(G, v)

Parameters

G

-

graph

v

-

vertex of the graph

Description

• 

Reachable returns a list of all vertices reachable from the vertex v in the graph G.

• 

A vertex w is said to be reachable from a vertex v if there exists a path in the graph from v to w.

• 

To produce an actual spanning tree of vertices reachable from v, see SpanningTree or MinimalSpanningTree.

Examples

withGraphTheory:

C6CycleGraph6

C6Graph 1: an undirected unweighted graph with 6 vertices and 6 edge(s)

(1)

ReachableC6,1

1,2,3,4,5,6

(2)

GGraph5,1,2,2,3,1,4,4,5

GGraph 2: a directed unweighted graph with 5 vertices and 6 arc(s)

(3)

ReachableG,2

2,3

(4)

Compatibility

• 

The GraphTheory[Reachable] command was introduced in Maple 2018.

• 

For more information on Maple 2018 changes, see Updates in Maple 2018.

See Also

IsReachable

MinimalSpanningTree

SpanningTree