summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-07-05 17:55:25 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-07-05 17:55:25 -0500
commitcbc5adb5d4f131ea6bf9a40b0c27fecf67353b4d (patch)
tree21d06037850407e21af2084e7799b25b3905ba1c /src/theory/theory.h
parent967747b7b279256bd9368e2d392ae71dec1bb1c1 (diff)
Refactor last call for theories, only create one model when quantifiers are enabled. Fix sep.nil preregistration in TheorySep.
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index e8518b1f6..81062d67a 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -565,7 +565,11 @@ public:
* - or call get() until done() is true.
*/
virtual void check(Effort level = EFFORT_FULL) { }
-
+
+ /**
+ * Needs last effort check?
+ */
+ virtual bool needsCheckLastEffort() { return false; }
/**
* T-propagate new literal assignments in the current context.
*/
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback