definition:
|
sendCmds :: [SMT.Command] -> SMT ()
sendCmds cmds = do
bufferCmds (cmds ++ [echo delim])
sin <- getStdin
buf <- takeBuffer
liftIO2SMT $ hPutStr sin (showSMT buf) >> hFlush sin
optTracing buf
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Send SMT-LIB commands to SMT solver
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
sendCmds
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[Language.SMTLIB.Types.Command] -> SMT ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|