definition:
|
parseGetModelRsp :: SMTParser SMT.CmdResponse
parseGetModelRsp =
-- Note: the keyword 'model' is not part of the SMTLib standard (but used in Z3)
terminal KW_model *> return SMT.GetModelRsp <*> many parseModelRsp
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- parser for a get-model-response
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> _}
|
name:
|
parseGetModelRsp
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
ParserComb.Parser Language.SMTLIB.Scanner.Token Language.SMTLIB.Types.CmdResponse
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|