summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-04-11 16:31:03 +0000
committerMorgan Deters <mdeters@gmail.com>2012-04-11 16:31:03 +0000
commitd01d291be3213368985f28d0072905c4f033d5ff (patch)
tree8524a2b6a00c012221ecca9266c3ab9fb11989ed /src/theory/theory.h
parent889853e225687dfef36b15ca1dccf74682e0fd66 (diff)
merge from arrays-clark branch
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index a8d34eab3..28fdc8cbe 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -281,7 +281,7 @@ public:
id = kindToTheoryId(typeNode.getKind());
}
if (id == THEORY_BUILTIN) {
- Trace("theory") << "theoryOf(" << typeNode << ") == " << s_uninterpretedSortOwner << std::endl;
+ Trace("theory::internal") << "theoryOf(" << typeNode << ") == " << s_uninterpretedSortOwner << std::endl;
return s_uninterpretedSortOwner;
}
return id;
@@ -637,7 +637,7 @@ public:
/** a - b */
static inline Set setDifference(Set a, Set b) {
- return ((~b) & AllTheories) & a;
+ return (~b) & a;
}
static inline std::string setToString(theory::Theory::Set theorySet) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback