Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Import of Frederic's files and set up a very basic test (juste parsing the files).
[simgrid.git] / teshsuite / simdag / platforms / basic_parsing_test.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "simdag/simdag.h"
4
5 int main(int argc, char **argv) {
6   /* initialisation of SD */
7   SD_init(&argc, argv);
8
9   /* creation of the environment */
10   SD_create_environment(argv[1]);
11
12   SD_exit();
13   return 0;
14 }
15