Copyright | (C) 2011 Edward Kmett |
---|---|
License | BSD-style (see the file LICENSE) |
Maintainer | Edward Kmett <[email protected]> |
Stability | experimental |
Portability | type families |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Data.Graph.Algorithm
Description
Functions and data structures common to graph search algorithms
Synopsis
- data GraphSearch (g :: Type -> Type) m = GraphSearch {
- 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
Documentation
data GraphSearch (g :: Type -> Type) m Source #
Graph search visitor
Constructors
GraphSearch | |
Fields
|