|
definition: |
nondetTransL :: [(QName,Bool)] -> Int -> [Term] -> ([Term],Int)
nondetTransL _ i [] = ([],i)
nondetTransL ndinfo i (t:ts) =
let (t1,i1) = nondetTrans ndinfo i t
(ts1,i2) = nondetTransL ndinfo i1 ts
in (t1:ts1, i2)
|
|
demand: |
argument 3 |
|
deterministic: |
deterministic operation |
|
failfree: |
(_, _, _) |
|
indeterministic: |
referentially transparent operation |
|
infix: |
no fixity defined |
|
iotype: |
{(_,_,{[]}) |-> {(,)} || (_,_,{:}) |-> {(,)}}
|
|
name: |
nondetTransL |
|
precedence: |
no precedence defined |
|
result-values: |
{(,)}
|
|
signature: |
[((String, String), Prelude.Bool)] -> Prelude.Int -> [ESMT.Term] -> ([ESMT.Term], Prelude.Int) |
|
solution-complete: |
operation might suspend on free variables |
|
terminating: |
possibly non-terminating |
|
totally-defined: |
possibly non-reducible on same data term |