summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/quantifiers_engine.h')
-rw-r--r--src/theory/quantifiers_engine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/quantifiers_engine.h b/src/theory/quantifiers_engine.h
index 3ed6d369f..1d8c1591c 100644
--- a/src/theory/quantifiers_engine.h
+++ b/src/theory/quantifiers_engine.h
@@ -55,9 +55,7 @@ public:
/* whether this module needs to check this round */
virtual bool needsCheck( Theory::Effort e ) { return e>=Theory::EFFORT_LAST_CALL; }
/* whether this module needs a model built */
- virtual bool needsModel( Theory::Effort e ) { return false; }
- /* whether this module needs a model built */
- virtual bool needsFullModel( Theory::Effort e ) { return false; }
+ virtual unsigned needsModel( Theory::Effort e );
/* reset at a round */
virtual void reset_round( Theory::Effort e ){}
/* Call during quantifier engine's check */
@@ -143,6 +141,8 @@ public: //effort levels
QEFFORT_CONFLICT,
QEFFORT_STANDARD,
QEFFORT_MODEL,
+ //none
+ QEFFORT_NONE,
};
private:
/** list of all quantifiers seen */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback