-
Notifications
You must be signed in to change notification settings - Fork 4
Home
Ed Scheinerman edited this page Sep 19, 2018
·
23 revisions
The SimpleGraphs
module defines two data types for working with graphs:
- A robustly supported he
SimpleGraph
type represents undirected graphs without loops or multiple edges. - A modest
SimpleDigraph
type represents directed graphs in which there may be at most one directed edge(u,v)
from a vertexu
to a vertexv
. There may also be a directed edge in the opposite direction,(v,u)
.