summaryrefslogtreecommitdiff
path: root/src/theory/arith
diff options
context:
space:
mode:
authorClark Barrett <barrett@cs.nyu.edu>2010-07-07 02:18:42 +0000
committerClark Barrett <barrett@cs.nyu.edu>2010-07-07 02:18:42 +0000
commitdaf3b024547deaf1cf53b66ed046fbb15584b9d3 (patch)
tree91a2b7ebfe804041ad531ae897a037bdde61a4a7 /src/theory/arith
parent34ef50c2fcfa4d6aa8337c3096defa56d7dc0093 (diff)
Added shared term manager. Basic mechanism for identifying shared terms is
working. Still need to implement theory-specific shared term propagation.
Diffstat (limited to 'src/theory/arith')
-rw-r--r--src/theory/arith/theory_arith.cpp4
-rw-r--r--src/theory/arith/theory_arith.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arith/theory_arith.cpp b/src/theory/arith/theory_arith.cpp
index f11f38ab4..21a86c345 100644
--- a/src/theory/arith/theory_arith.cpp
+++ b/src/theory/arith/theory_arith.cpp
@@ -50,8 +50,8 @@ using namespace CVC4::theory::arith;
-TheoryArith::TheoryArith(context::Context* c, OutputChannel& out) :
- Theory(c, out),
+TheoryArith::TheoryArith(int id, context::Context* c, OutputChannel& out) :
+ Theory(id, c, out),
d_constants(NodeManager::currentNM()),
d_partialModel(c),
d_diseq(c),
diff --git a/src/theory/arith/theory_arith.h b/src/theory/arith/theory_arith.h
index 7d9fd1136..7367f5726 100644
--- a/src/theory/arith/theory_arith.h
+++ b/src/theory/arith/theory_arith.h
@@ -99,7 +99,7 @@ private:
ArithUnatePropagator d_propagator;
public:
- TheoryArith(context::Context* c, OutputChannel& out);
+ TheoryArith(int id, context::Context* c, OutputChannel& out);
~TheoryArith();
/**
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback