changeset 1589:06f32d2da877 draft

change explanation Print.cc
author Masa <e085726@ie.u-ryukyu.ac.jp>
date Mon, 01 Apr 2013 05:41:56 +0900
parents f7d35318ea76
children afcb4a3f3526
files example/word_count/ppe/Print.cc
diffstat 1 files changed, 11 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/example/word_count/ppe/Print.cc	Sun Mar 31 22:01:12 2013 +0900
+++ b/example/word_count/ppe/Print.cc	Mon Apr 01 05:41:56 2013 +0900
@@ -46,17 +46,17 @@
      * 担当範囲前の末尾文字が「改行と、スペース以外」(tail_flag = 1)で、
      * 担当範囲の先頭文字が「改行とスペース」(head_flag = 0)の場合
      * 単語数を +1  することで、整合性がとれる。
-     *
-     * ex.
-     *    task_num 4
-     *    head_tail_flag[8]
+     *     * ex.
+     *    task_num 2 
+     *    head_tail_flag[5]
      *
-     *      0   1   2   3   4   5   6   7
-     *     ___ ___ ___ ___ ___ ___ ___ ___ 
-     *    | h | t | h | t | h | t | h | t |
-     *    |___|___|___|___|___|___|___|___|
-     *        |-------|-------|-------| 
-     *           比較    比較    比較
+     *            0   1 | 2   3   4   5  
+     *   ___ ___ ___ ___ ___ ___ ___ ___  
+     *  | W | L | h | t | W | L | h | t |
+     *  |___|___|___|___|___|___|___|___|
+     *                  | 
+     *                |-----------| 
+     *                     比較
      *
      */
 
@@ -68,7 +68,7 @@
 
     for (int i = 0; i < out_task_num ; i++) {
         word_data[0] += idata[i*w->out_size+0];
-        word_data[1] += idata[i*w->out_size+1];
+        word_data[1] +idata[i*w->out_size+1];
         unsigned long long *head_tail_flag = 
             &idata[i*w->out_size+2];
         if((i!=out_task_num-1)&&