CurryInfo: verify-non-fail-2.0.0 / Main.addEquVarCondition

definition:
addEquVarCondition :: TermDomain a => Int -> Expr -> VerifyStateM a ()
addEquVarCondition var exp = do
  let conj = if exp == fcTrue
               then Var var
               else if exp == fcFalse
                      then fcNot (Var var)
                      else Comb FuncCall (pre "==") [Var var, exp]
                           -- note: the Eq class dictioniary is missing...
  addConjunct conj
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- Adds an equality between a variable and an expression as a conjunct
-- to the current condition.
indeterministic:
referentially transparent operation
infix:
no fixity defined
name:
addEquVarCondition
precedence:
no precedence defined
result-values:
_
signature:
Analysis.TermDomain.TermDomain a => Prelude.Int -> FlatCurry.Types.Expr
-> Control.Monad.Trans.State.StateT (VerifyState a) Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term