summaryrefslogtreecommitdiff
path: root/src/theory/theory.cpp
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2010-06-29 20:53:47 +0000
committerTim King <taking@cs.nyu.edu>2010-06-29 20:53:47 +0000
commite792bb8628ea7010fa9c452bf1aa7ba1b60291a3 (patch)
treeddc12f92092627b7aee2a63dca8dd66279b2970e /src/theory/theory.cpp
parente7e9c10006b5b243a73832ed97c5dec79df6c90a (diff)
Merging the unate-propagator branch into the trunk. This is a big update so expect a little turbulence. This commit will not compile. There will be a second commit that fixes this in a moment. I am delaying a change to avoid svn whining about a conflict.
Diffstat (limited to 'src/theory/theory.cpp')
-rw-r--r--src/theory/theory.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/theory/theory.cpp b/src/theory/theory.cpp
index e06c9594c..5e83d3728 100644
--- a/src/theory/theory.cpp
+++ b/src/theory/theory.cpp
@@ -103,5 +103,21 @@ Node Theory::get() {
return fact;
}
+std::ostream& operator<<(std::ostream& os, Theory::Effort level){
+ switch(level){
+ case Theory::MIN_EFFORT:
+ os << "MIN_EFFORT"; break;
+ case Theory::QUICK_CHECK:
+ os << "QUICK_CHECK:"; break;
+ case Theory::STANDARD:
+ os << "STANDARD"; break;
+ case Theory::FULL_EFFORT:
+ os << "FULL_EFFORT"; break;
+ default:
+ Unreachable();
+ }
+ return os;
+}
+
}/* CVC4::theory namespace */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback