view src/parallel_execution/Tree.cbc @ 438:7679093bdd72

Work CUDAtwice
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Mon, 06 Nov 2017 00:11:43 +0900
parents eec6553a2aa6
children 1432d924c472
line wrap: on
line source

typedef struct Tree<Type, Impl>{
    Type* tree;
    Type* node;
    __code put(Impl* tree, Type* node, Type* root, Type* newNode);
    __code get(Impl* tree, __code next(...));
    // __code removeRedBlackTree();
    // __code clearRedBlackTree();
    __code next(...);
} Tree;