summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-01-29 00:05:16 +0000
committerMorgan Deters <mdeters@gmail.com>2010-01-29 00:05:16 +0000
commit2a9e6970b971eb0a9ac4c216fe5f5f1542e195e0 (patch)
tree23631643798b923b7e9883286296269c8f5e772d /src/theory/theory.h
parent1e59e3f37ecb7b84371691358f3eb3804a845c04 (diff)
fixed CNF conversion, and more modular; CNF conversion command line option; various cleanups; renamed numChildren() to getNumChildren() and added it to NodeBuilder interface; fancier, non-exponential CNF conversion with variable introduction is still buggy (?)
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