definition:
|
rsp2Msg :: SMT.CmdResponse -> SMTError
rsp2Msg rsp = case rsp of
SMT.ErrorRsp msg -> SolverError msg
SMT.CheckSatRsp SMT.Unknown -> SolverError "Unknown"
SMT.UnsupportedRsp -> SolverError "Unsupported command"
SMT.CheckSatRsp SMT.Unsat -> SolverError "Unsat"
_ -> OtherError $ "Unexpected response: " ++ show rsp
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transform a command response to an error message
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({ErrorRsp}) |-> {SolverError} || ({CheckSatRsp}) |-> _ || ({UnsupportedRsp}) |-> {SolverError} || ({SuccessRsp}) |-> _ || ({EchoRsp}) |-> _ || ({GetAssertionsRsp}) |-> _ || ({GetAssignmentRsp}) |-> _ || ({GetInfoRsp}) |-> _ || ({GetModelRsp}) |-> _ || ({GetOptionRsp}) |-> _ || ({GetProofRsp}) |-> _ || ({GetUnsatAssumptionsRsp}) |-> _ || ({GetUnsatCoreRsp}) |-> _ || ({GetValueRsp}) |-> _}
|
name:
|
rsp2Msg
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Language.SMTLIB.Types.CmdResponse -> Solver.SMTLIB.Types.SMTError
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|