summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-09-02 17:56:43 +0000
committerMorgan Deters <mdeters@gmail.com>2011-09-02 17:56:43 +0000
commit487e610b88f2a634e3285886ff96717c103338de (patch)
tree7f034b5c9f537195df72ac9ecd7666226dc2ed9f /src/theory/theory.h
parent90267f8729799f44c6fb33ace11b971a16e78dff (diff)
Partial merge of integers work; this is simple B&B and some pseudoboolean
infrastructure, and takes care not to affect CVC4's performance on LRA benchmarks.
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index d859c60d8..62a8cb4d6 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -442,8 +442,10 @@ public:
}
/**
- * Given an atom of the theory, that comes from the input formula, this is method can rewrite the atom
- * into an equivalent form. This is only called just before an input atom to the engine.
+ * Given an atom of the theory coming from the input formula, this
+ * method can be overridden in a theory implementation to rewrite
+ * the atom into an equivalent form. This is only called just
+ * before an input atom to the engine.
*/
virtual Node preprocess(TNode atom) { return atom; }
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback