IsNetwork - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


GraphTheory

  

IsNetwork

  

test if graph is a network

 

Calling Sequence

Parameters

Description

Definition

Examples

Calling Sequence

IsNetwork(G, s, t)

IsNetwork(G)

Parameters

G

-

directed graph

s

-

vertex

t

-

vertex

Description

• 

IsNetwork('G','s','t') outputs true if the directed graph G is a network with s as the source and t as the sink, and false otherwise.

• 

IsNetwork('G') tests if a directed graph is a network. The output is a sequence of two sets of vertices, sources and sinks, of all possible sources and sinks.  If these sets are both empty then G is implicitly not a network.

Definition

• 

A network is a connected directed graph with at least one vertex with indegree 0 (the source) and at least one vertex with outdegree 0 (the sink). Note that under this definition a network may have an internal cycle.

Examples

(1)

(2)

(3)

(4)

See Also

Digraph

DrawNetwork

MaxFlow

RandomGraphs[RandomNetwork]

 


Download Help Document