summaryrefslogtreecommitdiff
path: root/src/smt
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt')
-rw-r--r--src/smt/Makefile.am2
-rw-r--r--src/smt/smt_engine.h10
2 files changed, 7 insertions, 5 deletions
diff --git a/src/smt/Makefile.am b/src/smt/Makefile.am
index f719b1283..ff740aa56 100644
--- a/src/smt/Makefile.am
+++ b/src/smt/Makefile.am
@@ -1,5 +1,5 @@
INCLUDES = -I@srcdir@/../include -I@srcdir@/..
-AM_CXXFLAGS = -Wall
+AM_CXXFLAGS = -Wall -fvisibility=hidden
noinst_LIBRARIES = libsmt.a
diff --git a/src/smt/smt_engine.h b/src/smt/smt_engine.h
index 6f6fb355a..078bf9cde 100644
--- a/src/smt/smt_engine.h
+++ b/src/smt/smt_engine.h
@@ -9,8 +9,8 @@
**
**/
-#ifndef __CVC4_PROVER_H
-#define __CVC4_PROVER_H
+#ifndef __CVC4__SMT__SMT_ENGINE_H
+#define __CVC4__SMT__SMT_ENGINE_H
#include <vector>
#include "core/cvc4_expr.h"
@@ -22,6 +22,7 @@
// PropEngine.
namespace CVC4 {
+namespace smt {
// TODO: SAT layer (esp. CNF- versus non-clausal solvers under the
// hood): use a type parameter and have check() delegate, or subclass
@@ -109,6 +110,7 @@ public:
void pop();
};/* class SmtEngine */
-} /* CVC4 namespace */
+}/* CVC4::smt namespace */
+}/* CVC4 namespace */
-#endif /* __CVC4_PROVER_H */
+#endif /* __CVC4__SMT__SMT_ENGINE_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback