definition:
|
containsDetOperations :: CurryProg -> Bool
containsDetOperations (CurryProg _ _ _ _ _ _ fdecls _) =
any (detInTopLevelType . typeOfQualType . funcType) fdecls
where
detInTopLevelType (CTVar _) = False
detInTopLevelType (CTCons _) = False
detInTopLevelType (CFuncType _ rt) = detInTopLevelType rt
detInTopLevelType (CTApply tc _) = tc == CTCons (pre "DET")
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------------
--- Does a Curr program contains operations with `DET` annotations?
--- Since `DET` is a type synonym which will be removed by the front end,
--- the AbstractCurry program must be an _untyped_ AbstractCurry program.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({CurryProg}) |-> _}
|
name:
|
containsDetOperations
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
AbstractCurry.Types.CurryProg -> Prelude.Bool
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|