graphs-0.6.0.1: A simple monadic graph library

Copyright(C) 2011 Edward Kmett
LicenseBSD-style (see the file LICENSE)
MaintainerEdward Kmett <ekmett@gmail.com>
Stabilityexperimental
Portabilitytype families
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Graph.Algorithm

Description

Functions and data structures common to graph search algorithms

Synopsis

Documentation

data GraphSearch g m Source

Graph search visitor

Constructors

GraphSearch 

Fields

enterVertex :: Vertex g -> g m
 
enterEdge :: Edge g -> g m
 
grayTarget :: Edge g -> g m
 
exitVertex :: Vertex g -> g m
 
blackTarget :: Edge g -> g m
 

Instances