summaryrefslogtreecommitdiff
path: root/src/util/options.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-10-07 22:54:43 +0000
committerMorgan Deters <mdeters@gmail.com>2010-10-07 22:54:43 +0000
commitb63e4a11733051728397f7d4ecb3b205fbd81dab (patch)
tree04dad54f11fd1f7a80c3a8b30bb344ad9786283f /src/util/options.h
parent557e6c09dcc9068e848796772bc775542f4fc599 (diff)
type checking for define-fun in production builds; related to (and might resolve) bug 212
Diffstat (limited to 'src/util/options.h')
-rw-r--r--src/util/options.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/util/options.h b/src/util/options.h
index 9bb0b0a38..08de590d8 100644
--- a/src/util/options.h
+++ b/src/util/options.h
@@ -77,6 +77,12 @@ struct CVC4_PUBLIC Options {
*/
bool interactiveSetByUser;
+ /** Whether we support SmtEngine::getValue() for this run. */
+ bool produceModels;
+
+ /** Whether we support SmtEngine::getAssignment() for this run. */
+ bool produceAssignments;
+
Options() :
binary_name(),
statistics(false),
@@ -91,7 +97,9 @@ struct CVC4_PUBLIC Options {
strictParsing(false),
lazyDefinitionExpansion(false),
interactive(false),
- interactiveSetByUser(false) {
+ interactiveSetByUser(false),
+ produceModels(false),
+ produceAssignments(false) {
}
};/* struct Options */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback