X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/928dc2ffdce11b4ce364eda56a602c132ee6cb71..fe4080b8dd04acb2074ca72d36e3019acddea455:/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; }