definition:
|
inferNFConds :: ModuleName
-> ProgInfo (TypeDecl, [Constructor])
-> [TAFuncDecl]
-> [TAFuncDecl]
inferNFConds modname info fdecls
= let freshVars = [maximum (concatMap allVarsInFunc fdecls) + 1 ..]
(_, flatDecls) = flattenFuncs freshVars fdecls
res = map (inferNF modname info) flatDecls
decls = filterRelevantNFCs modname res
in map unrec decls
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Infer NFCs for a list of function declarations
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {:,[]}}
|
name:
|
inferNFConds
|
precedence:
|
no precedence defined
|
result-values:
|
{:,[]}
|
signature:
|
String
-> Analysis.ProgInfo.ProgInfo (FlatCurry.Types.TypeDecl, [((String, String), Prelude.Int)])
-> [FlatCurry.Annotated.Types.AFuncDecl FlatCurry.Types.TypeExpr]
-> [FlatCurry.Annotated.Types.AFuncDecl FlatCurry.Types.TypeExpr]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|