summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index a59ee5c5f..ccda5fa77 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -440,18 +440,7 @@ class Theory : protected EnvObj
EFFORT_LAST_CALL = 200
}; /* enum Effort */
- static inline bool standardEffortOrMore(Effort e) CVC5_CONST_FUNCTION
- {
- return e >= EFFORT_STANDARD;
- }
- static inline bool standardEffortOnly(Effort e) CVC5_CONST_FUNCTION
- {
- return e >= EFFORT_STANDARD && e < EFFORT_FULL;
- }
- static inline bool fullEffort(Effort e) CVC5_CONST_FUNCTION
- {
- return e == EFFORT_FULL;
- }
+ static bool fullEffort(Effort e) { return e == EFFORT_FULL; }
/**
* Get the id for this Theory.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback