From 93e6b2f2514295c15950ea5cc44948835f830a85 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Thu, 4 Nov 2010 21:01:31 +0000 Subject: [PATCH] competition mode implies --no-checking --- src/main/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/main.cpp b/src/main/main.cpp index fcd322e99..c740604c3 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -155,6 +155,10 @@ int runCvc4(int argc, char* argv[]) { // If in competition mode, set output stream option to flush immediately #ifdef CVC4_COMPETITION_MODE *options.out << unitbuf; + // competition mode implies --no-checking + options.semanticChecks = false; + options.typeChecking = false; + options.earlyTypeChecking = false; #endif // We only accept one input file -- 2.30.2