changeset 18:d3cd92ac4bd8

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 26 Nov 2012 18:53:53 +0900
parents fa9827772216
children def2005a5525
files Paper/images/ring.pdf Paper/images/ring100KB.pdf Paper/images/ring10B.pdf Paper/images/ring10KB.pdf Paper/images/ring_notp_10b.pdf Paper/source/SendWidth.java
diffstat 6 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
Binary file Paper/images/ring.pdf has changed
Binary file Paper/images/ring100KB.pdf has changed
Binary file Paper/images/ring10B.pdf has changed
Binary file Paper/images/ring10KB.pdf has changed
Binary file Paper/images/ring_notp_10b.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Paper/source/SendWidth.java	Mon Nov 26 18:53:53 2012 +0900
@@ -0,0 +1,12 @@
+public class SendWidth extends CodeSegment {
+    Receiver width = ids.create(CommandType.PEEK);
+    @Override
+    public void run() {
+        int width = this.width.asInteger();
+        ods.put("parent", "widths", width);
+        System.out.println("send widths: " + width);
+        SendWidth cs = new SendWidth();
+        cs.width.setKey("local", "width", this.width.index);
+    }
+}
+