CurryInfo: contract-prover-4.0.0 / VerifierState.addPostCondToStats

definition: Info
 
addPostCondToStats :: String -> Bool -> VState -> VState
addPostCondToStats pc verified vst =
  if verified then vst { vPostCond = pc : vPostCond vst }
              else vst { uPostCond = pc : uPostCond vst }
demand: Info
 arguments 2 3
deterministic: Info
 deterministic operation
documentation: Info
 
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: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{True},{VState}) |-> {VState} || (_,{False},{VState}) |-> {VState}}
name: Info
 addPostCondToStats
precedence: Info
 no precedence defined
result-values: Info
 {VState}
signature: Info
 String -> Prelude.Bool -> VState -> VState
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms