definition:
|
liftProg :: LiftOptions -> Prog -> Prog
liftProg opts (Prog mn imps types funs ops) =
let alltopfuns = map (snd . funcName) funs
initstate = LiftState opts mn alltopfuns [] "" 0
transfuns = evalState (mapM liftTopFun funs) initstate
in Prog mn imps types (concat transfuns) ops
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Lift nested cases/lets/free in a FlatCurry program (w.r.t. options).
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Prog}) |-> {Prog}}
|
name:
|
liftProg
|
precedence:
|
no precedence defined
|
result-values:
|
{Prog}
|
signature:
|
LiftOptions -> FlatCurry.Types.Prog -> FlatCurry.Types.Prog
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|