definition: |
readXmlGraphList :: Bool -> XmlExp -> [(Graph, [ChoiceMapping], NodeID)] readXmlGraphList labelNID xml = let graphs = filterElems "graph" (elemsOf xml) in zip3 (map (graphFromXml labelNID) graphs) (map choiceMappingsFromXml graphs) (map rootFromXml graphs) |
demand: |
argument 2 |
deterministic: |
deterministic operation |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> {:,[]}} |
name: |
readXmlGraphList |
precedence: |
no precedence defined |
result-values: |
{:,[]} |
signature: |
Prelude.Bool -> XML.XmlExp -> [([Node], [(Prelude.Int, Prelude.Int)], Prelude.Int)] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |