Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
activate fortran attr tests
[simgrid.git] / teshsuite / simdag / evaluate-get-route-time / evaluate-get-route-time.c
index bb81c1c..0c674e8 100644 (file)
@@ -1,10 +1,10 @@
-/* Copyright (c) 2008-2015. The SimGrid Team.
+/* Copyright (c) 2008-2018. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-//for i in $(seq 1 100); do teshsuite/simdag/platforms/evaluate_get_route_time ../examples/platforms/cluster.xml 1 2> /tmp/null ; done
+//for i in $(seq 1 100); do teshsuite/simdag/platforms/evaluate_get_route_time ../examples/platforms/cluster_backbone.xml 1 2> /tmp/null ; done
 
 
 #include <stdio.h>
@@ -15,7 +15,8 @@
 
 int main(int argc, char **argv)
 {
-  int i, j;
+  int i;
+  int j;
   xbt_os_timer_t timer = xbt_os_timer_new();
 
   SD_init(&argc, argv);
@@ -35,15 +36,17 @@ int main(int argc, char **argv)
   sg_host_t h1 = hosts[i];
   sg_host_t h2 = hosts[j];
   printf("%d\tand\t%d\t\t",i,j);
+  xbt_dynar_t route = xbt_dynar_new(sizeof(SD_link_t), NULL);
 
   xbt_os_cputimer_start(timer);
-  SD_route_get_list(h1, h2);
+  sg_host_route(h1, h2, route);
   xbt_os_cputimer_stop(timer);
 
+  xbt_dynar_free(&route);
+
   printf("%f\n", xbt_os_timer_elapsed(timer) );
 
   xbt_free(hosts);
-  SD_exit();
 
   return 0;
 }