CurryInfo: contract-prover-4.0.0 / VerifierState.addPreCondToStats

definition: Info
 
addPreCondToStats :: String -> Bool -> VState -> VState
addPreCondToStats pc verified vst =
  if verified then vst { vPreCond = pc : vPreCond vst }
              else vst { uPreCond = pc : uPreCond vst }
demand: Info
 arguments 2 3
deterministic: Info
 deterministic operation
documentation: Info
 
Increments the number of preconditions. If the first argument is true,
a precondition 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
 addPreCondToStats
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