summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-11-01 17:08:55 +0000
committerMorgan Deters <mdeters@gmail.com>2011-11-01 17:08:55 +0000
commit7b568f370f6ec4105414b562ee2a6fcb3d7048f2 (patch)
tree6b2c6ab7e4a426847ce332fc2e522c3c287fb60d /src/theory
parentcbd5934ffce739fcc5ade1f8fdefcd0a04e0d9ef (diff)
Improvements to header installation on user machines. Internally, we can
still write, for example: #include "expr/node.h" but public CVC4 headers, upon installation to /usr/include/cvc4 (or wherever), have such #includes rewritten automatically to: #include <cvc4/expr/node.h>
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/arrays/array_info.cpp2
-rw-r--r--src/theory/arrays/theory_arrays.h2
-rw-r--r--src/theory/bv/equality_engine.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arrays/array_info.cpp b/src/theory/arrays/array_info.cpp
index 1e06621b4..50ded8758 100644
--- a/src/theory/arrays/array_info.cpp
+++ b/src/theory/arrays/array_info.cpp
@@ -17,7 +17,7 @@
**
**/
-#include "array_info.h"
+#include "theory/arrays/array_info.h"
namespace CVC4 {
namespace theory {
diff --git a/src/theory/arrays/theory_arrays.h b/src/theory/arrays/theory_arrays.h
index 7fa215bfc..366c2d3f7 100644
--- a/src/theory/arrays/theory_arrays.h
+++ b/src/theory/arrays/theory_arrays.h
@@ -24,7 +24,7 @@
#include "theory/theory.h"
#include "theory/arrays/union_find.h"
#include "util/congruence_closure.h"
-#include "array_info.h"
+#include "theory/arrays/array_info.h"
#include "util/hash.h"
#include "util/ntuple.h"
#include "util/stats.h"
diff --git a/src/theory/bv/equality_engine.cpp b/src/theory/bv/equality_engine.cpp
index ee4e9903c..a4d2e6329 100644
--- a/src/theory/bv/equality_engine.cpp
+++ b/src/theory/bv/equality_engine.cpp
@@ -17,7 +17,7 @@
** \todo document this file
**/
-#include "equality_engine.h"
+#include "theory/bv/equality_engine.h"
using namespace CVC4::theory::bv;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback