Enable quiet output...
authorbdemsky <bdemsky>
Mon, 17 May 2004 22:04:32 +0000 (22:04 +0000)
committerbdemsky <bdemsky>
Mon, 17 May 2004 22:04:32 +0000 (22:04 +0000)
Repair/RepairCompiler/MCC/CLI.java
Repair/RepairCompiler/MCC/Compiler.java

index 11f479a8a47382afd1346d35d0a4af1e69164a64..2f1f28384b3b17554faf193738a4c5bd94283481 100755 (executable)
@@ -11,7 +11,7 @@ import java.util.StringTokenizer;
  * files.
  *
  * @author  le01, 6.035 Staff (<tt>6.035-staff@mit.edu</tt>)
- * @version <tt>$Id: CLI.java,v 1.5 2004/05/11 21:14:24 bdemsky Exp $</tt>
+ * @version <tt>$Id: CLI.java,v 1.6 2004/05/17 22:04:32 bdemsky Exp $</tt>
  */
 public class CLI {
     /**
@@ -104,6 +104,8 @@ public class CLI {
                 debug = true;
            } else if (args[i].equals("-checkonly")) {
                 Compiler.REPAIR=false;
+           } else if (args[i].equals("-debug")) {
+                Compiler.GENERATEDEBUGHOOKS=true;
            } else if (args[i].equals("-aggressivesearch")) {
                 Compiler.AGGRESSIVESEARCH=true;
            } else if (args[i].equals("-prunequantifiernodes")) {
index abdf07cb19c1d6d55cdfb2d20efbe37b8687fe0f..f5dcfe15558f97eba1794f0957777708553b1a3e 100755 (executable)
@@ -21,7 +21,7 @@ public class Compiler {
     public static boolean REPAIR=true;
     public static boolean AGGRESSIVESEARCH=false;
     public static boolean PRUNEQUANTIFIERS=false;
-    public static boolean GENERATEDEBUGHOOKS=true;
+    public static boolean GENERATEDEBUGHOOKS=false;
     public static boolean GENERATEDEBUGPRINT=false;
 
     public static void main(String[] args) {