CurryInfo: failfree-4.0.0 / Main.preCondExpOf

definition:
preCondExpOf :: VerifyInfo -> QName -> [(Int,TypeExpr)] -> TransStateM Term
preCondExpOf ti qf args =
  maybe (return tTrue)
        (\fd -> applyFunc fd args >>= pred2SMT)
        (find (\fd -> funcName fd == toPreCondQName qf) (preConds ti))
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- Returns the precondition expression for a given operation
-- and its arguments (which are assumed to be variable indices).
-- Rename all local variables by adding the `freshvar` index to them.
indeterministic:
referentially transparent operation
infix:
no fixity defined
name:
preCondExpOf
precedence:
no precedence defined
result-values:
_
signature:
VerifierState.VerifyInfo -> (String, String)
-> [(Prelude.Int, FlatCurry.Types.TypeExpr)]
-> Control.Monad.Trans.State.StateT TransState Prelude.IO ESMT.Term
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term