summaryrefslogtreecommitdiff
path: root/src/theory/theory_engine.cpp
diff options
context:
space:
mode:
authorTim King <taking@google.com>2017-03-27 10:02:11 -0700
committerTim King <taking@google.com>2017-03-27 10:02:11 -0700
commit09d14ac7f81111882327cb168f100e9f998611ac (patch)
tree688ec6a2b884b26a28b74c3f3a07fe74ffccce16 /src/theory/theory_engine.cpp
parent7b89724488085d7eed3e37520ca11d8cd1e18120 (diff)
Moving the CareGraph into its own file.
Diffstat (limited to 'src/theory/theory_engine.cpp')
-rw-r--r--src/theory/theory_engine.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 8014a8f22..a68625da8 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -37,6 +37,7 @@
#include "smt_util/node_visitor.h"
#include "theory/arith/arith_ite_utils.h"
#include "theory/bv/theory_bv_utils.h"
+#include "theory/care_graph.h"
#include "theory/ite_utilities.h"
#include "theory/quantifiers/first_order_model.h"
#include "theory/quantifiers/model_engine.h"
@@ -662,7 +663,7 @@ void TheoryEngine::combineTheories() {
#endif
#define CVC4_FOR_EACH_THEORY_STATEMENT(THEORY) \
if (theory::TheoryTraits<THEORY>::isParametric && d_logicInfo.isTheoryEnabled(THEORY)) { \
- theoryOf(THEORY)->getCareGraph(careGraph); \
+ theoryOf(THEORY)->getCareGraph(&careGraph); \
}
// Call on each parametric theory to give us its care graph
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback