DIY  2.0
data-parallel out-of-core C++ library
diy.h
1 #ifndef DIY_DIY_H
2 #define DIY_DIY_H
3 
4 #include "constants.h"
5 #include "types.h"
6 
7 void DIY_Foreach(void (f*)(void* block, void* comm));
8 
9 void DIY_Enqueue_item(void* comm, int nhbr);
10 void DIY_Enqueue_item_dir(void* comm, dir_t dir);
11 //void DIY_Enqueue_item_points(void* comm, ...);
12 void DIY_Enqueue_item_all(void* comm);
13 
14 #endif