Mercurial > hg > GearsTemplate
comparison src/parallel_execution/context.h @ 358:98c6e13d8ec7
add sort.cbc
author | Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 24 Jun 2017 20:07:27 +0900 |
parents | b8be1d51f002 |
children | e68080586c15 |
comparison
equal
deleted
inserted
replaced
350:a9863b41f026 | 358:98c6e13d8ec7 |
---|---|
286 long size; | 286 long size; |
287 } Allocate; | 287 } Allocate; |
288 struct Integer { | 288 struct Integer { |
289 int value; | 289 int value; |
290 } Integer; | 290 } Integer; |
291 struct SortArray {//そもそもこれは必要なのか? | |
292 struct Integer **array;//Array arrayじゃできない? | |
293 int loop_counter; | |
294 enum Code make_array; | |
295 enum Code print; | |
296 }SortArray; | |
291 }; // union Data end this is necessary for context generator | 297 }; // union Data end this is necessary for context generator |
292 | 298 |
293 typedef union Data Data; | 299 typedef union Data Data; |
294 | 300 |
295 #include "c/typedefData.h" | 301 #include "c/typedefData.h" |