definition: |
convertState :: Bool -> State -> (Graph, [ChoiceMapping], NodeID) convertState labelNID state = (g, choiceMappings, root) where IG.Graph nodes _ root = graph state choiceMappings = replaceChoiceIDs nodes (fingerprint state) g = map (generateNode labelNID (activeNode state) (results state)) nodes |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
-- Convert states from program execution to states for svg creation |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> {(,,)}} |
name: |
convertState |
precedence: |
no precedence defined |
result-values: |
{(,,)} |
signature: |
Prelude.Bool -> TermGraph.XML.State -> ([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 |