Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a SimDag example (mixtesim) created from an old SG 2.18 example
[simgrid.git] / examples / simdag / mixtesim / include / mixtesim_prototypes.h
1 #ifndef MIXTESIM_PROTOTYPES_H
2 #define MIXTESIM_PROTOTYPES_H
3
4 #include "mixtesim_types.h"
5 #include "mixtesim_datastructures.h"
6
7 #ifndef MAX
8 #  define MAX(x,y) ((x) > (y) ? (x) : (y))
9 #endif
10 #ifndef MIN
11 #  define MIN(x,y) ((x) > (y) ? (x) : (y))
12 #endif
13
14
15 int HEFT(DAG dag);
16
17 /* parsing  */
18 /*Grid parseGridFile(char*filename);*/
19 DAG parseDAGFile(char*filename);
20
21 int createSimgridObjects();
22
23 #endif /* MIXTESIM_PROTOTYPES_H */