summaryrefslogtreecommitdiff
path: root/src/util/options.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-11-08 23:37:36 +0000
committerMorgan Deters <mdeters@gmail.com>2010-11-08 23:37:36 +0000
commit1f07775e9205b3f9e172a1ad218a9015b7265b58 (patch)
treee3a70b0f547a46cc3b25fc4867124ebb700977f4 /src/util/options.h
parent438e4336569f90adcb8c994df54bc410f56cde07 (diff)
command-line flag to disable theory registration, also SMT-LIBv2 compliance (per SMT-LIB mailing list this afternoon)
Diffstat (limited to 'src/util/options.h')
-rw-r--r--src/util/options.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/util/options.h b/src/util/options.h
index 8cf0b8446..60c8f2a1a 100644
--- a/src/util/options.h
+++ b/src/util/options.h
@@ -90,6 +90,9 @@ struct CVC4_PUBLIC Options {
/** Should the parser do semantic checks? */
bool semanticChecks;
+ /** Should the TheoryEngine do theory registration? */
+ bool theoryRegistration;
+
/** Should the parser memory-map file input? */
bool memoryMap;
@@ -134,6 +137,7 @@ struct CVC4_PUBLIC Options {
uf_implementation(MORGAN),
parseOnly(false),
semanticChecks(DO_SEMANTIC_CHECKS_BY_DEFAULT),
+ theoryRegistration(true),
memoryMap(false),
strictParsing(false),
lazyDefinitionExpansion(false),
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback