* 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 {
/**
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")) {
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) {