CurryInfo: currycheck-4.0.0 / CurryCheck.genDetOpTests

definition:
genDetOpTests :: [String] -> [QName] -> [CFuncDecl] -> [CFuncDecl]
genDetOpTests prooffiles prefuns fdecls =
  map (genDetProp prefuns) (filter (isDetOrgOp . funcName) fdecls)
 where
  isDetOrgOp (mn,fn) =
    "_ORGNDFUN" `isSuffixOf` fn &&
    not (existsProofFor (mnorg, determinismTheoremFor (take (length fn - 9) fn))
                        prooffiles)
   where mnorg = take (length mn - 10) mn -- remove _PUBLICDET suffix
demand:
argument 3
deterministic:
deterministic operation
documentation:
-- Look for operations named f_ORGNDFUN and create a determinism property
-- for f.
indeterministic:
referentially transparent operation
infix:
no fixity defined
name:
genDetOpTests
precedence:
no precedence defined
result-values:
{:,[]}
signature:
[String] -> [(String, String)] -> [AbstractCurry.Types.CFuncDecl]
-> [AbstractCurry.Types.CFuncDecl]
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term