definition: |
showContractStats :: VState -> String showContractStats vstate = showStat "PRECONDITIONS : VERIFIED " (vPreCond vstate) ++ showStat "PRECONDITIONS : UNVERIFIED" (uPreCond vstate) ++ showStat "POSTCONDITIONS: VERIFIED " (vPostCond vstate) ++ showStat "POSTCONDITIONS: UNVERIFIED" (uPostCond vstate) ++ (if isVerifiedContracts vstate then "\nALL CONTRACTS VERIFIED!" else "") where showStat t fs = if null fs then "" else "\n" ++ t ++ ": " ++ unwords fs |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Shows the statistics for the contract checking in human-readable format. |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
showContractStats |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
VState -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
possibly non-reducible on same data term |