Ignore set-option.

This commit is contained in:
chriseth 2022-06-23 17:14:59 +02:00
parent ae6f8e25b6
commit acfe18cd4e

View File

@ -250,6 +250,9 @@ int main(int argc, char** argv)
string_view cmd = command(expr); string_view cmd = command(expr);
if (cmd == "set-info") if (cmd == "set-info")
continue; // ignore continue; // ignore
else if (cmd == "set-option")
// TODO we sholud handle print-success
continue; // ignore
else if (cmd == "declare-fun") else if (cmd == "declare-fun")
{ {
solAssert(items.size() == 4); solAssert(items.size() == 4);