Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines.
[simgrid.git] / tools / graphicator / graphicator.cpp
index 9d90d2b..8265952 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008-2020. The SimGrid Team.
+/* Copyright (c) 2008-2021. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -6,18 +6,13 @@
 
 #include "simgrid/instr.h"
 #include "simgrid/s4u.hpp"
-#include "xbt/graph.h"
 
 int main(int argc, char** argv)
 {
   simgrid::s4u::Engine e(&argc, argv);
-
   xbt_assert(argc == 3, "Usage: %s <platform_file.xml> <graphviz_file.dot>", argv[0]);
 
   e.load_platform(argv[1]);
-  int status = TRACE_platform_graph_export_graphviz(argv[2]);
-
-  xbt_assert(status != 0, "%s expects --cfg=tracing:yes --cfg=tracing/platform:yes", argv[0]);
-  e.run(); /* useless, except for correctly cleaning memory */
+  TRACE_platform_graph_export_graphviz(argv[2]);
   return 0;
 }