Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bcefb823a3aab165988feade9e01af523c3569e4
[simgrid.git] / teshsuite / simdag / platforms / is_router_test.c
1 /* Copyright (c) 2008-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include "simgrid/simdag.h"
10 #include "surf/surf.h"
11
12 int main(int argc, char **argv)
13 {
14   /* SD initialization */
15   int size;
16   xbt_lib_cursor_t cursor = NULL;
17   char *key, *data;
18
19 #ifdef _XBT_WIN32
20   setbuf(stderr, NULL);
21   setbuf(stdout, NULL);
22 #endif
23
24   SD_init(&argc, argv);
25
26   /* creation of the environment */
27   SD_create_environment(argv[1]);
28
29   size = xbt_dict_length(host_list) + xbt_lib_length(as_router_lib);
30
31   printf("Workstation number: %zu, link number: %d, elmts number: %d\n",
32          sg_host_count(), sg_link_count(), size);
33
34   xbt_dict_foreach(host_list, cursor, key, data) {
35     printf("   - Seen: \"%s\" is type : %d\n", key,
36            (int) routing_get_network_element_type(key));
37   }
38
39   xbt_lib_foreach(as_router_lib, cursor, key, data) {
40     printf("   - Seen: \"%s\" is type : %d\n", key,
41            (int) routing_get_network_element_type(key));
42   }
43
44   SD_exit();
45   return 0;
46 }