definition:
|
showDotGraph :: DotGraph -> String
showDotGraph (DGraph name attrs nodes edges) =
"digraph \"" ++ name ++ "\"" ++ graphbody2dot True attrs nodes edges
showDotGraph (UGraph name attrs nodes edges) =
"graph \"" ++ name ++ "\"" ++ graphbody2dot False attrs nodes edges
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------------
--- Shows a Dot graph as a string of the DOT language.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({DGraph}) |-> _ || ({UGraph}) |-> _}
|
name:
|
showDotGraph
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
DotGraph -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|