summaryrefslogtreecommitdiff
path: root/src/theory/theory.cpp
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-03-08 02:33:37 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-03-08 02:33:37 +0000
commit752b00bc94385fd4b54becb072fca3814f34fd4c (patch)
tree5636548d4e874275d6348fd6fd9f03b074e65d33 /src/theory/theory.cpp
parentf632dfe4fe36f49361bebbf843992f658bac28ef (diff)
Removing QUICK_CHECK, and other unused ones, from the Theory::Effort.
Seems to be working better <http://church.cims.nyu.edu/regress-results/compare_jobs.php?job_id=3749&category=&p=5&reference_id=3739>, and should fix the failing cases in the regressions. Removing one test case from the integer regress0.
Diffstat (limited to 'src/theory/theory.cpp')
-rw-r--r--src/theory/theory.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/theory/theory.cpp b/src/theory/theory.cpp
index 76aabeb1f..0404bda3b 100644
--- a/src/theory/theory.cpp
+++ b/src/theory/theory.cpp
@@ -31,14 +31,12 @@ TheoryId Theory::s_uninterpretedSortOwner = THEORY_UF;
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;
+ case Theory::EFFORT_STANDARD:
+ os << "EFFORT_STANDARD"; break;
+ case Theory::EFFORT_FULL:
+ os << "EFFORT_FULL"; break;
+ case Theory::EFFORT_COMBINATION:
+ os << "EFFORT_COMBINATION"; break;
default:
Unreachable();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback