From: Tom Cornebize Date: Wed, 25 May 2022 12:02:40 +0000 (+0200) Subject: Seal the platform in graphicator before dumping X-Git-Tag: v3.32~214^2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5f7ac8567fc1d7ad69f046a4f163ded25de920b1?hp=-c Seal the platform in graphicator before dumping --- 5f7ac8567fc1d7ad69f046a4f163ded25de920b1 diff --git a/tools/graphicator/graphicator.cpp b/tools/graphicator/graphicator.cpp index 284ec199b6..bc9a50a535 100644 --- a/tools/graphicator/graphicator.cpp +++ b/tools/graphicator/graphicator.cpp @@ -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);