X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/37f0af1dc1280fa5a29351fa71b27b8d0ec1dc60..8344f32ee2339f2b53a6e79ac0e9aa3a93384f58:/tools/graphicator/graphicator.cpp diff --git a/tools/graphicator/graphicator.cpp b/tools/graphicator/graphicator.cpp index 284ec199b6..368892bd08 100644 --- a/tools/graphicator/graphicator.cpp +++ b/tools/graphicator/graphicator.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2022. The SimGrid Team. +/* Copyright (c) 2008-2023. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -13,6 +13,7 @@ int main(int argc, char** argv) xbt_assert(argc == 3, "Usage: %s ", argv[0]); e.load_platform(argv[1]); + e.seal_platform(); const std::string outputfile(argv[2]); const std::string extension = outputfile.substr(outputfile.find_last_of(".") + 1); @@ -25,7 +26,7 @@ int main(int argc, char** argv) simgrid::instr::platform_graph_export_graphviz(outputfile); } else { - xbt_assert(false, "Unknown output file format, please use '.dot' or .csv' extension\n"); + xbt_die("Unknown output file format, please use '.dot' or .csv' extension"); } return 0; }