comparison src/parallel_execution/CodeGear.cbc @ 342:de1e315379c6

Add CodeGear.cbc
author Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
date Thu, 25 May 2017 22:49:40 +0900
parents
children b8be1d51f002
comparison
equal deleted inserted replaced
341:2dd9711cd347 342:de1e315379c6
1 typedef struct CodeGear<Impl>{
2 union Data* codeGear;
3 enum Code code;
4 __code run(struct Integer* input1, struct Integer* input2, __code next(struct Integer* output, ...));
5 struct Integer* input1;
6 struct Integer* input2;
7 struct Integer* output;
8 __code next(...);
9 } CodeGear;