Algebra.Graph.IO.GML
Description
Mostly-complete implementation of the GML format
https://en.wikipedia.org/wiki/Graph_Modelling_Language
gmlGraph :: GMLGraph a b -> Graph a Source #
Construct a Graph using the edge data contained in a GMLGraph
Graph
GMLGraph
gmlGraphP Source #
Arguments
parser for node id's
Parser for the GML graph format
data GMLGraph a b Source #
Graph entities of the GML graph format
Constructors
Fields
Defined in Algebra.Graph.IO.GML
Methods
showsPrec :: Int -> GMLGraph a b -> ShowS #
show :: GMLGraph a b -> String #
showList :: [GMLGraph a b] -> ShowS #
data GMLNode a Source #
GML nodes
showsPrec :: Int -> GMLNode a -> ShowS #
show :: GMLNode a -> String #
showList :: [GMLNode a] -> ShowS #
data GMLEdge a b Source #
GML edges
showsPrec :: Int -> GMLEdge a b -> ShowS #
show :: GMLEdge a b -> String #
showList :: [GMLEdge a b] -> ShowS #