start of new file
[IRC.git] / Robust / src / Benchmarks / Prefetch / Em3d / dsm / Node.java
index 15f95368308b7e78cddf8d08bf942cf29b2c48d5..5e3aca6c93128b7fa6794523461edf635fe1ad7a 100644 (file)
@@ -33,10 +33,6 @@ public class Node {
    **/
   int fromLength;
 
-  public Node() {
-
-  }
-
   /** 
    * Constructor for a node with given `degree'.   The value of the
    * node is initialized to a random value.
@@ -126,7 +122,7 @@ public class Node {
    * by this node.
    **/
   public void updateFromNodes(Random rand)
-  {
+  { 
     for (int i = 0; i < toNodes.length; i++) {
       Node otherNode = toNodes[i];
       int count = otherNode.fromLength++;