We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2947e23 commit c2c2ebbCopy full SHA for c2c2ebb
src/main/scala/smtlib/parser/ParserCommandsResponses.scala
@@ -127,10 +127,7 @@ trait ParserCommandsResponses { this: ParserCommon with ParserTerms with ParserC
127
peekToken match {
128
case Tokens.SymbolLit("error") => parseErrorResponse
129
case t => {
130
- nextToken match {
131
- case Tokens.SymbolLit("model") => ()
132
- case t => expected(t, Tokens.SymbolLitKind) //TODO: expected symbol of value "model"
133
- }
+ if (peekToken == Tokens.SymbolLit("model")) nextToken
134
val exprs: ListBuffer[SExpr] = new ListBuffer
135
while(peekToken.kind != Tokens.CParen) {
136
try {
0 commit comments