get rid of ugly globals in DataFlowGraph
[fleet.git] / src / edu / berkeley / fleet / dataflow / ForeverNode.java
index 6f66ad0..e801b4f 100644 (file)
@@ -1,4 +1,5 @@
 package edu.berkeley.fleet.dataflow;
+import java.util.*;
 import edu.berkeley.fleet.loops.*;
 import edu.berkeley.fleet.api.*;
 
@@ -14,7 +15,7 @@ public class ForeverNode extends Node {
             public void sendToken(LoopFactory lf) { }
             public void recvWord(LoopFactory lf) { }
             public void build(Context ctx) { }
-            public int  reset(Context ctx, int phase, Destination ackDestination) { return 0; }
+            public int  reset(Context ctx, int phase, Destination ackDestination, HashSet<Dock> sendTorpedoesTo) { return 0; }
             public void setPeer(InPort peer) {
                 this.peer = peer;
                 DockInPort pip = ((DockInPort)peer);