definition:
|
addPreCondToStats :: String -> Bool -> VStateM ()
addPreCondToStats pc verified =
if verified then modify $ \vst -> vst { vPreCond = pc : vPreCond vst }
else modify $ \vst -> vst { uPreCond = pc : uPreCond vst }
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Increments the number of preconditions. If the first argument is true,
--- a precondition has been verified.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{True}) |-> _ || (_,{False}) |-> _}
|
name:
|
addPreCondToStats
|
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
|