Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cope with Eigen 3.3.4 directly in cmake
[simgrid.git] / tools / graphicator / graphicator.cpp
index 8265952bf3f612ebb9a1935b9c9b5e2d881281ed..2d5e63c0f5cff7d6ccb499daa7e4d370b7a1d41a 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008-2021. The SimGrid Team.
+/* Copyright (c) 2008-2022. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -13,6 +13,6 @@ int main(int argc, char** argv)
   xbt_assert(argc == 3, "Usage: %s <platform_file.xml> <graphviz_file.dot>", argv[0]);
 
   e.load_platform(argv[1]);
-  TRACE_platform_graph_export_graphviz(argv[2]);
+  simgrid::instr::platform_graph_export_graphviz(argv[2]);
   return 0;
 }