summaryrefslogtreecommitdiff
path: root/src/theory/theory.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-09-28 22:44:00 +0000
committerMorgan Deters <mdeters@gmail.com>2010-09-28 22:44:00 +0000
commit1c2b7c593fa1c12575eb37e56a5c66a1a190ad81 (patch)
treed3914a7c7277720ca6099731190fb50f260af826 /src/theory/theory.cpp
parent665704ba3ec1201c536c2ffa27a4d667eab3e12c (diff)
fix predicate bug in UF; code cleanup in theory.cpp
Diffstat (limited to 'src/theory/theory.cpp')
-rw-r--r--src/theory/theory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/theory.cpp b/src/theory/theory.cpp
index c93f26deb..b1eb195c7 100644
--- a/src/theory/theory.cpp
+++ b/src/theory/theory.cpp
@@ -31,7 +31,7 @@ std::ostream& operator<<(std::ostream& os, Theory::Effort level){
case Theory::MIN_EFFORT:
os << "MIN_EFFORT"; break;
case Theory::QUICK_CHECK:
- os << "QUICK_CHECK:"; break;
+ os << "QUICK_CHECK"; break;
case Theory::STANDARD:
os << "STANDARD"; break;
case Theory::FULL_EFFORT:
@@ -40,7 +40,7 @@ std::ostream& operator<<(std::ostream& os, Theory::Effort level){
Unreachable();
}
return os;
-}
+}/* ostream& operator<<(ostream&, Theory::Effort) */
}/* CVC4::theory namespace */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback