X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ba2717e7e862c3a73b5c37bbba156234b9eb37a5..eedf2eb72bed8362f177c4cda8ecade438b7279f:/examples/msg/trace-host-user-variables/trace-host-user-variables.c diff --git a/examples/msg/trace-host-user-variables/trace-host-user-variables.c b/examples/msg/trace-host-user-variables/trace-host-user-variables.c index f25f77b26b..27e924840a 100644 --- a/examples/msg/trace-host-user-variables/trace-host-user-variables.c +++ b/examples/msg/trace-host-user-variables/trace-host-user-variables.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2010, 2012-2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-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. */ @@ -77,39 +77,24 @@ int main(int argc, char *argv[]) xbt_dynar_free (&link_variables); } - //create a customized viva graph configuration file - FILE *fp; - fp = fopen ("viva_graph.plist", "w"); - if (!fp){ - return 1; - } - fprintf (fp, "{\n node = ("); xbt_dynar_t nodes_type = TRACE_get_node_types (); if (nodes_type){ XBT_INFO ("Node types in the trace:"); char *node_type; xbt_dynar_foreach (nodes_type, cursor, node_type){ XBT_INFO ("%s", node_type); - fprintf (fp, "%s, ", node_type); } xbt_dynar_free (&nodes_type); } - fprintf (fp, ");\n edge = ("); xbt_dynar_t edges_type = TRACE_get_edge_types (); if (edges_type){ - XBT_INFO ("Node types in the trace:"); + XBT_INFO("Edge types in the trace:"); char *edge_type; xbt_dynar_foreach (edges_type, cursor, edge_type){ XBT_INFO ("%s", edge_type); - fprintf (fp, "%s, ", edge_type); } xbt_dynar_free (&edges_type); } - fprintf (fp, ");\n"); - fprintf (fp, " host = {\n type = square;\n size = HDD_capacity; \n values = (HDD_utilization);\n };\n"); - fprintf (fp, " link = {\n type = rhombus;\n size = bandwidth;\n };\n"); - fprintf (fp, "}\n"); - fclose (fp); return 0; }