definition:
|
revertDetOpTrans :: [QName] -> CFuncDecl -> CFuncDecl
revertDetOpTrans detops (CmtFunc _ qf ar vis texp rules) =
revertDetOpTrans detops (CFunc qf ar vis texp rules)
revertDetOpTrans detops fdecl@(CFunc qf@(mn,fn) ar vis texp _) =
if qf `elem` detops
then CFunc qf ar vis texp [simpleRule [] (constF (mn,fn++"_ORGNDFUN"))]
else fdecl
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Revert the transformation for deterministic operations performed
-- by currypp, i.e., replace rule "f x = selectValue (set f_ORGNDFUN x)"
-- with "f = f_ORGNDFUN".
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
revertDetOpTrans
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[(String, String)] -> AbstractCurry.Types.CFuncDecl
-> AbstractCurry.Types.CFuncDecl
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|