definition: |
unfold :: [(VarIndex, a)] -> [AExpr a] -> AExpr a -> AExpr a unfold vs es e = if null binds then e' else ALet (annExpr e') binds e' where binds = zip vs' es (ARule a vs' e') = freshRule (maximumVarIndex es + 1) (ARule a vs e) maximumVarIndex es = maximum (0 : concatMap allVars es) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Simple unfolding |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
unfold |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[(Prelude.Int, a)] -> [FlatCurry.Annotated.Types.AExpr a] -> FlatCurry.Annotated.Types.AExpr a -> FlatCurry.Annotated.Types.AExpr a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |