view src/parallel_execution/CodeGear.h @ 557:1eb2a22ec1e3

tweak
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Mon, 18 Nov 2019 21:22:34 +0900
parents 6b71cf5b1c22
children
line wrap: on
line source

typedef struct CodeGear<Impl>{
        union Data* codeGear;
        enum Code code;
        __code code(struct Integer* input1, struct Integer* input2, __code next(struct Integer* output, ...));
        __code setInfo(struct Context* codeGear, union Data** dataGears, __code next(...));
        union Data* dataGears[10];
        __code next(...);
} CodeGear;