definition:
|
addPostCondToStats :: String -> Bool -> VStateM ()
addPostCondToStats pc verified =
if verified then modify $ \vst -> vst { vPostCond = pc : vPostCond vst }
else modify $ \vst -> vst { uPostCond = pc : uPostCond vst }
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Adds an operation to the already processed operations with postconditions.
--- If the second argument is true, the postcondition of this operation
--- has been verified.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{True}) |-> _ || (_,{False}) |-> _}
|
name:
|
addPostCondToStats
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
String -> Prelude.Bool -> Control.Monad.Trans.State.StateT VState Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|