definition:
|
funcs2SMT :: IORef VState -> [QName] -> IO Command
funcs2SMT vstref qns = do
funs <- getAllFunctions vstref [] (nub qns)
return $ DefineSigsRec (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:
|
Data.IORef.IORef VerifierState.VState -> [(String, String)]
-> Prelude.IO ESMT.Command
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|