CurryInfo: contract-prover-4.0.0 / ContractProver.nondetTransL

definition: Info
 
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: Info
 argument 3
deterministic: Info
 deterministic operation
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_,{[]}) |-> {(,)} || (_,_,{:}) |-> {(,)}}
name: Info
 nondetTransL
precedence: Info
 no precedence defined
result-values: Info
 {(,)}
signature: Info
 [((String, String), Prelude.Bool)] -> Prelude.Int -> [ESMT.Term]
-> ([ESMT.Term], Prelude.Int)
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term