2 bug fixes to getRequiredConstraints
[repair.git] / Repair / RepairCompiler / MCC / State.java
index 024aed37ec7aa0a555c5f001e983a23bf73e0a0b..55a86e10578c3ee02c73d95e8088b1ed74305ce0 100755 (executable)
@@ -6,7 +6,7 @@ import MCC.IR.*;
 import java.util.*;
 
 public class State {
-    
+
     public static State currentState = null;
 
     public static boolean failed = false;
@@ -32,8 +32,12 @@ public class State {
     public Vector vRules;
 
     public Hashtable rulenodes;
-    public Hashtable constraintnodes;    
+    public Hashtable constraintnodes;
     public Hashtable implicitrule;
+    public Hashtable implicitruleinv;
+    public HashSet noupdate;
+
+    public SetAnalysis setanalysis;
     State() {
         vConstraints = null;
         vRules = null;
@@ -48,6 +52,8 @@ public class State {
         ptConstraints = null;
         ptSpace = null;
        implicitrule=new Hashtable();
+       implicitruleinv=new Hashtable();
+        noupdate=new HashSet();
     }
 
     void printall() {
@@ -60,5 +66,5 @@ public class State {
            System.out.println(c.toString());
        }
     }
-    
+
 }