definition:
|
startSession :: SMTSolver -> SMTOpts -> IO SMTSession
startSession solver opts = do
unless (quiet opts) $ putStrLn $ "Starting " ++ sname ++ " session."
hs <- execCmd $ unwords $ sname : flags solver
return $ SMTSession hs [] [] opts 1 []
where sname = executable solver
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Start SMT solver process and initialize fresh SMT session
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
startSession
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Solver.SMTLIB.Types.SMTSolver -> Solver.SMTLIB.Types.SMTOpts
-> Prelude.IO SMTSession
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|