projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8572eb7
)
support (set-info) on status, source, category, difficulty, smt-lib-version, and...
author
Morgan Deters
<mdeters@gmail.com>
Fri, 8 Oct 2010 06:25:05 +0000
(06:25 +0000)
committer
Morgan Deters
<mdeters@gmail.com>
Fri, 8 Oct 2010 06:25:05 +0000
(06:25 +0000)
src/smt/smt_engine.cpp
patch
|
blob
|
history
diff --git
a/src/smt/smt_engine.cpp
b/src/smt/smt_engine.cpp
index 5bf5ebd691519ccc7255fc7e2bc29e115894a734..fc2c8550e5298375e1b34be47c7e478e5a699954 100644
(file)
--- 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();
}