definition:
|
funcs2SMT :: [QName] -> VStateM [FunSigTerm]
funcs2SMT qns = do
funs <- getAllFunctions [] (nub qns)
return $ map fun2SMT funs
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Translates a list of operations specified by their qualified name
--- (together with all operations on which these operation depend on)
--- into an SMT string that axiomatizes their semantics.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
funcs2SMT
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[(String, String)]
-> Control.Monad.Trans.State.StateT VerifierState.VState Prelude.IO [([String], ESMT.FunSig, Language.SMTLIB.Types.Term)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|