definition:
|
evalSessionsImpl :: SMTSolver -> SMTOpts -> SMTSess a -> IO a
evalSessionsImpl solver opts as = do
s <- startSession solver opts
(r, s') <- runSMT (evalSess as >>= \res -> closeSession >> return res) s
termSession s'
when (tracing $ options s') (dumpSession s')
return r
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Evaluate SMT sessions by applying given solver and options
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
evalSessionsImpl
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Solver.SMTLIB.Types.SMTSolver -> Solver.SMTLIB.Types.SMTOpts -> SMTSess a
-> Prelude.IO a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|