definition:
|
res2Msgs :: SMTResult -> [SMTError]
res2Msgs res = case res of
Error msgs -> msgs
Unsat -> [SolverError "Unsat"]
Unknown -> [SolverError "Unknown"]
_ -> [OtherError ("Unexpected result: " ++ show res)]
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transform a result to list of error messages
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Error}) |-> _ || ({Unsat}) |-> {:} || ({Unknown}) |-> {:} || ({Sat}) |-> _ || ({Model}) |-> _ || ({Values}) |-> _}
|
name:
|
res2Msgs
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
SMTResult -> [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
|