dfj version of delaunay refinement executes the original algorithm with workers=1...
[IRC.git] / Robust / src / Benchmarks / oooJava / DelaunayRefinement-orig-algo / Node.java
1 abstract public class Node {
2   
3   //None of the program actually uses getData/setData so I use leave Node as a 
4   //wrapper interface.
5   //public abstract Object getData();
6   //public abstract Object setData(Object obj);
7 }