definition:
|
getTheoremFunctions :: String -> CurryProg -> IO [CFuncDecl]
getTheoremFunctions proofdir (CurryProg mn _ _ _ _ _ functions _) = do
let propfuncs = filter isProperty functions -- all properties
prooffiles <- getModuleProofFiles proofdir mn
return $ filter (\fd -> existsProofFor (funcName fd) prooffiles)
propfuncs
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
------------------------------------------------------------------------
--- Get all theorems which are contained in a given program.
--- A theorem is a property for which a proof file exists in the
--- directory provided as first argument.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{CurryProg}) |-> _}
|
name:
|
getTheoremFunctions
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> AbstractCurry.Types.CurryProg
-> Prelude.IO [AbstractCurry.Types.CFuncDecl]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|