modified algorithm for dfj style parallelism
[IRC.git] / Robust / src / Benchmarks / oooJava / DelaunayRefinement / Node.java
1 public class Node {
2   public boolean inGraph;
3   
4   public Node() {
5     inGraph = false;
6   }
7
8   //None of the program actually uses getData/setData so I use leave Node as a 
9   //wrapper interface.
10 //  public abstract Object getData();
11 //  public abstract Object setData(Object obj);
12 }