view 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
line wrap: on
line source

typedef struct CodeGear<Impl>{
        union Data* codeGear;
        enum Code code;
        __code run(struct Integer* input1, struct Integer* input2, __code next(struct Integer* output, ...));
        struct Integer* input1;
        struct Integer* input2;
        struct Integer* output;
        __code next(...);
} CodeGear;