Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #259 from simgrid/configfix
[simgrid.git] / teshsuite / simdag / evaluate-parse-time / evaluate-parse-time.c
1 /* Copyright (c) 2008-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 //teshsuite/simdag/platforms/evaluate_parse_time ../examples/platforms/nancy.xml
7
8 #include <stdio.h>
9
10 #include "simgrid/simdag.h"
11 #include "xbt/xbt_os_time.h"
12
13 int main(int argc, char **argv)
14 {
15   xbt_os_timer_t timer = xbt_os_timer_new();
16   SD_init(&argc, argv);
17
18   /* creation of the environment, timed */
19   xbt_os_cputimer_start(timer);
20   SD_create_environment(argv[1]);
21   xbt_os_cputimer_stop(timer);
22
23   /* Display the result and exit after cleanup */
24   printf( "%f\n", xbt_os_timer_elapsed(timer) );
25   printf("Workstation number: %zu, link number: %d\n", sg_host_count(), sg_link_count());
26   if(argv[2]){
27     printf("Wait for %ss\n",argv[2]);
28     xbt_os_sleep(atoi(argv[2]));
29   }
30
31
32   free(timer);
33   return 0;
34 }