refactor predecessor/successor into Node class
[sbp.git] / src / edu / berkeley / sbp / Node.java
index 872e377..09718af 100644 (file)
@@ -10,8 +10,14 @@ import java.io.*;
 import java.util.*;
 import java.lang.reflect.*;
 
-class Node
-    implements GraphViz.ToGraphViz {
+class Node<OtherNode extends Node>
+    implements IntegerMappable,
+               GraphViz.ToGraphViz {
+
+    protected       FastSet<OtherNode> predecessors = new FastSet<OtherNode>();
+    protected       FastSet<OtherNode> successors = new FastSet<OtherNode>();
+    //private       HashSet<OtherNode> predecessors = new HashSet<OtherNode>();
+    //private       HashSet<OtherNode> successors = new HashSet<OtherNode>();
 
     // GraphViz //////////////////////////////////////////////////////////////////////////////
 
@@ -36,4 +42,11 @@ class Node
     }
     public boolean isTransparent() { return false; }
     public boolean isHidden() { return false; }
+
+    // IntegerMappable ////////////////////////////////////////////////////////////
+
+    private static int node_idx = 0;
+    private final int idx = node_idx++;
+    public int toInt() { return idx; }
+
 }
\ No newline at end of file