summaryrefslogtreecommitdiff
path: root/src/theory/booleans/theory_bool.h
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/booleans/theory_bool.h
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/booleans/theory_bool.h')
-rw-r--r--src/theory/booleans/theory_bool.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/booleans/theory_bool.h b/src/theory/booleans/theory_bool.h
index 512dfebcc..4d8620146 100644
--- a/src/theory/booleans/theory_bool.h
+++ b/src/theory/booleans/theory_bool.h
@@ -30,8 +30,8 @@ namespace booleans {
class TheoryBool : public Theory {
public:
- TheoryBool(context::Context* c, OutputChannel& out) :
- Theory(c, out) {
+ TheoryBool(int id, context::Context* c, OutputChannel& out) :
+ Theory(id, c, out) {
}
void preRegisterTerm(TNode n) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback