definition:
|
getModel :: SMT (Either [SMTError] [SMT.ModelRsp])
getModel = do
sendCmds [SMT.GetModel]
modelMsg <- getDelimited
case parseCmdRsps modelMsg of
Left msg -> return $ Left $ [ParserError msg]
Right [SMT.GetModelRsp m] -> return $ Right $ m
Right rsps -> return $ Left $ map rsp2Msg rsps
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Get a model for the current assertions on the solver stack
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
getModel
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
SMT (Prelude.Either [Solver.SMTLIB.Types.SMTError] [Language.SMTLIB.Types.ModelRsp])
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|