2 bug fixes to getRequiredConstraints
[repair.git] / Repair / RepairCompiler / MCC / Compiler.java
index 712079db96441cf4de04deb96976c2d7f43b46f7..5fa3fca1a81ccf07b6d65b7838959ef55e645319 100755 (executable)
@@ -26,7 +26,10 @@ public class Compiler {
     public static boolean GENERATEINSTRUMENT=false;
     public static boolean ALLOCATECPLUSPLUS=false;
     public static boolean OMITCOMP=false;
+    public static boolean MERGENODES=false;
     public static boolean TIME=false;
+    public static boolean DEBUGGRAPH=false;
+    public static boolean REJECTLENGTH=false;
 
     public static Vector debuggraphs=new Vector();
 
@@ -79,13 +82,8 @@ public class Compiler {
            nodes.addAll(state.rulenodes.values());
 
            FileOutputStream dotfile;
-           dotfile = new FileOutputStream(cli.infile + ".dependencies.edgelabels.dot");
-           GraphNode.useEdgeLabels = true;
-           GraphNode.DOTVisitor.visit(dotfile, nodes);
-           dotfile.close();
 
            dotfile = new FileOutputStream(cli.infile + ".dependencies.dot");
-           GraphNode.useEdgeLabels = false;
            GraphNode.DOTVisitor.visit(dotfile, nodes);
            dotfile.close();
        } catch (Exception e) {