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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index 1372616ec..f0db8a7ae 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -62,12 +62,12 @@ public:
/**
* Assert a literal in the current context.
*/
- virtual void assert(Literal) = 0;
+ void assert(Literal);
/**
- * Check the current assignment's consistency. Return false iff inconsistent.
+ * Check the current assignment's consistency.
*/
- virtual bool check(Effort level = FULL_EFFORT) = 0;
+ virtual void check(Effort level = FULL_EFFORT) = 0;
/**
* T-propagate new literal assignments in the current context.
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback