summaryrefslogtreecommitdiff
path: root/src/smt/smt_engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt/smt_engine.cpp')
-rw-r--r--src/smt/smt_engine.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 5bf5ebd69..fc2c8550e 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -162,10 +162,15 @@ SmtEngine::~SmtEngine() {
void SmtEngine::setInfo(const string& key, const SExpr& value)
throw(BadOptionException) {
- if(key == ":status") {
+ if(key == ":status" ||
+ key == ":source" ||
+ key == ":category" ||
+ key == ":difficulty" ||
+ key == ":smt-lib-version" ||
+ key == ":notes") {
+ // ignore these
return;
}
- // FIXME implement me
throw BadOptionException();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback