changeset 62:a75782dcaceb

Fix
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Thu, 08 Feb 2018 13:55:21 +0900
parents a56f85c0bf90
children ecb7f8c66302
files mindmap.mm paper/master_paper.pdf paper/parallelism_gears.tex
diffstat 3 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mindmap.mm	Thu Feb 08 05:54:17 2018 +0900
+++ b/mindmap.mm	Thu Feb 08 13:55:21 2018 +0900
@@ -274,5 +274,8 @@
 </node>
 <node CREATED="1514282094582" ID="ID_545317549" MODIFIED="1514282111883" TEXT="&#x30c7;&#x30fc;&#x30bf;&#x4f9d;&#x5b58;&#x306f;&#x3069;&#x3046;&#x3044;&#x3046;&#x3075;&#x3046;&#x306b;&#x5b9f;&#x88c5;&#x3059;&#x308b;&#x304b;"/>
 </node>
+<node CREATED="1518064616548" ID="ID_1521823706" MODIFIED="1518064621801" POSITION="left" TEXT="Slide">
+<node CREATED="1518064623894" ID="ID_502526343" MODIFIED="1518064644041" TEXT="&#x4e26;&#x5217;&#x51e6;&#x7406;&#x306f;&#x4fe1;&#x983c;&#x6027;&#x3092;"/>
+</node>
 </node>
 </map>
Binary file paper/master_paper.pdf has changed
--- a/paper/parallelism_gears.tex	Thu Feb 08 05:54:17 2018 +0900
+++ b/paper/parallelism_gears.tex	Thu Feb 08 13:55:21 2018 +0900
@@ -19,8 +19,7 @@
 実行される Code Gear の例を \coderef{codeGearExample} に示す。
 \coderef{codeGearExample} は Integer 型 の Input Data Gear を2つ受け取り、加算処理を行い、Integer 型 の Output Data Gear に書き出す。
 並列処理を行う Code Gear は Interface の Code Gear と同じく、引数に Input Data Gear、処理が終了した後に継続する Code Gear、引数の Code Gear の中に Output Data Gear を記述する(\coderef{codeGearExample} 1行目)。
-引数のCode Gear の中には書き出される Output Data Gear を記述する。
-処理が終了した Code Gear は Output Data Gear を書き出す Code Gear に継続する。
+この Code Gear 実行後は通常 Output Data Gear を書き出す Code Gear に継続する。
 実際に Output Data Gear を書き出す場合、goto 文に Output Data Gear を引数に渡す(\coderef{codeGearExample} 3行目)。
 
 \lstinputlisting[caption=並列実行される Code Gear の例, label=code:codeGearExample]{./src/codeGearExample.cbc}