definition:
|
checkPreCon :: String -> SMT.Term -> SMT.Term -> SMT.Term -> String -> [Int]
-> TransStateM (Maybe Bool)
checkPreCon scripttitle assertion impbindings imp mname mvars = do
optcontract <- lift $ getOption optContract
if optcontract > 1
then
generateSMT scripttitle assertion impbindings imp
>>= checkSMT evalPreCon mvars (\name args margs -> "Call"
++ printCall mname margs ++ "violates " ++ toPreCondName name
++ " due to calling" ++ printCall name args)
else return $ Just False
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Checks the satisfiability of the given assertion and checks the pre
-- condition if the assertion is satisfiable.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_,_,_) |-> _}
|
name:
|
checkPreCon
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Language.SMTLIB.Types.Term -> Language.SMTLIB.Types.Term
-> Language.SMTLIB.Types.Term -> String -> [Prelude.Int]
-> Control.Monad.Trans.State.StateT TransState.TransState (Control.Monad.Trans.State.StateT VerifierState.VState Prelude.IO) (Prelude.Maybe Prelude.Bool)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|