Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update platfrom version to 3.
[simgrid.git] / examples / simdag / metaxml / sd_meta.c
index 79d7532..0067eaa 100644 (file)
@@ -1,6 +1,13 @@
-/*
-   See examples/platforms/metaxml.xml and examples/platforms/metaxml_platform.xml files for examples on how to use the cluster, foreach, set, route:multi, trace and trace:connect tags
+/* Copyright (c) 2007, 2008, 2009, 2010. 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. */
+
+/* See examples/platforms/metaxml.xml and examples/platforms/metaxml_platform.xml 
+   for examples on how to use the cluster, foreach, set, route:multi, trace and trace:connect tags
 */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include "simdag/simdag.h"
 #include "xbt/time.h"
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(sd_test,
-                            "Logging specific to this SimDag example");
+                             "Logging specific to this SimDag example");
+
+int main(int argc, char **argv)
+{
+
+  const char *platform_file;
+  const SD_workstation_t *workstations;
+  int ws_nr;
+  SD_workstation_t w1 = NULL;
+  SD_workstation_t w2 = NULL;
+  const char *name1, *name2;
+  int i, j, k;
 
-int main(int argc, char **argv) {
   /* initialisation of SD */
   SD_init(&argc, argv);
 
@@ -26,30 +43,32 @@ int main(int argc, char **argv) {
   }
 
   /* creation of the environment */
-  const char * platform_file = argv[1];
+  platform_file = argv[1];
   SD_create_environment(platform_file);
 
   /* test the estimation functions */
-  const SD_workstation_t *workstations = SD_workstation_get_list();
-  int ws_nr = SD_workstation_get_number();
+  workstations = SD_workstation_get_list();
+  ws_nr = SD_workstation_get_number();
+
 
-  SD_workstation_t w1 = NULL;
-  SD_workstation_t w2 = NULL;
-  const char *name1, *name2;
   /* Show routes between all workstation */
-  int i,j,k;
-  for (i=0; i<ws_nr; i++){
-    for (j=0;j<ws_nr; j++){
+
+  for (i = 0; i < ws_nr; i++) {
+    for (j = 0; j < ws_nr; j++) {
+      const SD_link_t *route;
+      int route_size;
       w1 = workstations[i];
       w2 = workstations[j];
       name1 = SD_workstation_get_name(w1);
       name2 = SD_workstation_get_name(w2);
-      INFO2("Route between %s and %s:", name1, name2);   
-      const SD_link_t *route = SD_route_get_list(w1, w2);
-      int route_size = SD_route_get_size(w1, w2);
+      INFO2("Route between %s and %s:", name1, name2);
+      route = SD_route_get_list(w1, w2);
+      route_size = SD_route_get_size(w1, w2);
       for (k = 0; k < route_size; k++) {
-        INFO3("\tLink %s: latency = %f, bandwidth = %f", SD_link_get_name(route[k]),
-         SD_link_get_current_latency(route[k]), SD_link_get_current_bandwidth(route[k]));
+        INFO3("\tLink %s: latency = %f, bandwidth = %f",
+              SD_link_get_name(route[k]),
+              SD_link_get_current_latency(route[k]),
+              SD_link_get_current_bandwidth(route[k]));
       }
     }
   }
@@ -57,4 +76,3 @@ int main(int argc, char **argv) {
   SD_exit();
   return 0;
 }
-