definition:
|
analyseCompleteness :: [TypeDecl] -> FuncDecl -> CompletenessType
analyseCompleteness types fdecl = anaFun fdecl
where
anaFun (Func _ _ _ _ (Rule _ e)) = isComplete types e
anaFun (Func _ _ _ _ (External _)) = Complete
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {Complete,InComplete,InCompleteOr}}
|
name:
|
analyseCompleteness
|
precedence:
|
no precedence defined
|
result-values:
|
{Complete,InComplete,InCompleteOr}
|
signature:
|
[FlatCurry.Types.TypeDecl] -> FlatCurry.Types.FuncDecl -> CompletenessType
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|