summaryrefslogtreecommitdiff
path: root/src/theory/idl
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/idl')
-rw-r--r--src/theory/idl/theory_idl.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/theory/idl/theory_idl.cpp b/src/theory/idl/theory_idl.cpp
index 9e402f430..55dec35e9 100644
--- a/src/theory/idl/theory_idl.cpp
+++ b/src/theory/idl/theory_idl.cpp
@@ -49,10 +49,11 @@ Node TheoryIdl::ppRewrite(TNode atom) {
}
void TheoryIdl::check(Effort level) {
- //// Not needed for now, as no code outside while() loop below.
- // if (done() && !fullEffort(e)) {
- // return;
- // }
+ if (done() && !fullEffort(level)) {
+ return;
+ }
+
+ TimerStat::CodeTimer checkTimer(d_checkTime);
while(!done()) {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback