summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-10-31 15:26:19 +0000
committerMorgan Deters <mdeters@gmail.com>2010-10-31 15:26:19 +0000
commit39031822cf3f9faab7b5b9e6cbce46a5194503b1 (patch)
tree7f95265819554a20a2ef4637a4a8a6a83a7cfc0b /src/smt
parentd4bfaa103d56d5c0172bf1457343a75ddea8a9b5 (diff)
enable dependence graphs in doxygen; fix lots of doxygen warnings, fix some documentation, and make it possible to "make doc" on a clean source tree (post-configure)
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/smt_engine.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 81930a5ea..5fc846a6c 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -180,7 +180,7 @@ SmtEngine::~SmtEngine() {
delete d_decisionEngine;
}
-void SmtEngine::setInfo(const string& key, const SExpr& value)
+void SmtEngine::setInfo(const std::string& key, const SExpr& value)
throw(BadOptionException) {
Debug("smt") << "SMT setInfo(" << key << ", " << value << ")" << endl;
if(key == ":name" ||
@@ -206,7 +206,7 @@ void SmtEngine::setInfo(const string& key, const SExpr& value)
throw BadOptionException();
}
-SExpr SmtEngine::getInfo(const string& key) const
+SExpr SmtEngine::getInfo(const std::string& key) const
throw(BadOptionException) {
Debug("smt") << "SMT getInfo(" << key << ")" << endl;
if(key == ":all-statistics") {
@@ -244,7 +244,7 @@ SExpr SmtEngine::getInfo(const string& key) const
}
}
-void SmtEngine::setOption(const string& key, const SExpr& value)
+void SmtEngine::setOption(const std::string& key, const SExpr& value)
throw(BadOptionException) {
Debug("smt") << "SMT setOption(" << key << ", " << value << ")" << endl;
if(key == ":print-success") {
@@ -274,7 +274,7 @@ void SmtEngine::setOption(const string& key, const SExpr& value)
}
}
-SExpr SmtEngine::getOption(const string& key) const
+SExpr SmtEngine::getOption(const std::string& key) const
throw(BadOptionException) {
Debug("smt") << "SMT getOption(" << key << ")" << endl;
if(key == ":print-success") {
@@ -305,7 +305,7 @@ SExpr SmtEngine::getOption(const string& key) const
}
void SmtEngine::defineFunction(Expr func,
- const vector<Expr>& formals,
+ const std::vector<Expr>& formals,
Expr formula) {
Debug("smt") << "SMT defineFunction(" << func << ")" << endl;
NodeManagerScope nms(d_nodeManager);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback