definition: |
flElem :: (Node,Node) -> Grappa String () flElem (n1,n2) = edge ("act", [n1,n2]) flElem (n1,n2) = edge ("inter", [n1,n2]) flElem (n1,n2) = edge ("pgw", [n1,n1t,n1r,n1b]) *> flow (n1t,n2t) *> edge ("pgw", [n2l,n2t,n2,n2b]) *> flow (n1b,n2b) where n1t,n1r,n1b,n2l,n2t,n2b free flElem (n1,n2) = edge ("xgw", [n1,n1t,n1r,n1b]) *> flow (n1t,n2t) *> edge ("xgw", [n2l,n2t,n2,n2b]) *> flow (n1b,n2b) where n1t,n1r,n1b,n2l,n2t,n2b free |
demand: |
argument 1 |
deterministic: |
possibly non-deterministic operation |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({(,)}) |-> {<*>,edge}} |
name: |
flElem |
precedence: |
no precedence defined |
result-values: |
{<*>,edge} |
signature: |
(Prelude.Int, Prelude.Int) -> [(String, [Prelude.Int])] -> ((), [(String, [Prelude.Int])]) |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |