definition:
|
showStats :: VStateM ()
showStats = do
vstate <- get
let opts = toolOpts $ trInfo vstate
notQuiet = optVerb opts > 0
when ((notQuiet || not (isVerifiedFailfree vstate)) && optFailfree opts)
$ lift $ putStr $ showFailfreeStats vstate
when ((notQuiet || not (isVerifiedContracts vstate)) && optContract opts > 1)
$ lift $ putStrLn $ showContractStats vstate
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Shows the statistics in human-readable format.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
showStats
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Control.Monad.Trans.State.StateT VState Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|