Mercurial > hg > Gears > GearsAgda
view src/parallel_execution/Tree.cbc @ 433:d920f3a3f037
Refactoring cuda.c
author | Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 17 Oct 2017 15:47:33 +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;