Graphalyze-0.1: Graph-Theoretic Analysis library.Source codeContentsIndex
Data.Graph.Analysis.Visualisation
MaintainerIvan.Miljenovic@gmail.com
Description
A wrapper module around the Haskell Data.GraphViz library to turn Graphs into basic graphs for processing by the Graphviz application.
Synopsis
graphviz :: (Graph g, Show a, Ord b) => String -> g a b -> DotGraph
graphvizClusters :: (Graph g, Show c, ClusterLabel a c, Ord b) => String -> g a b -> DotGraph
Documentation
graphviz :: (Graph g, Show a, Ord b) => String -> g a b -> DotGraphSource
Turns the graph into DotGraph format with the given title. Nodes are labelled, edges aren't.
graphvizClusters :: (Graph g, Show c, ClusterLabel a c, Ord b) => String -> g a b -> DotGraphSource
Turns the graph into DotGraph format with the given title. Cluster the nodes based upon their ClusterLabel clusters. Nodes and clusters are labelled, edges aren't.
Produced by Haddock version 2.3.0