diff src/alice/test/topology/fish/PeekStartX.java @ 36:0b25b48116b6

DistributedFish share width each other (not work)
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Fri, 20 Jan 2012 18:40:02 +0900
parents
children b5daccf36104
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/alice/test/topology/fish/PeekStartX.java	Fri Jan 20 18:40:02 2012 +0900
@@ -0,0 +1,23 @@
+package alice.test.topology.fish;
+
+import alice.codesegment.CodeSegment;
+import alice.datasegment.CommandType;
+import alice.datasegment.Receiver;
+
+public class PeekStartX extends CodeSegment {
+
+	public Receiver startX = ids.create(CommandType.PEEK);
+	public int index;
+	
+	public PeekStartX(int index) {
+		this.index = index;
+	}
+	
+	@Override
+	public void run() {
+		int startX = this.startX.asInteger();
+		AsignStartX cs = new AsignStartX(startX, this.startX.index);
+		cs.routing.setKey("local", "routing", this.startX.index);
+	}
+
+}