Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Seal the platform in graphicator before dumping
authorTom Cornebize <tom.cornebize@intel.com>
Wed, 25 May 2022 12:02:40 +0000 (14:02 +0200)
committerTom Cornebize <tom.cornebize@intel.com>
Wed, 25 May 2022 12:02:40 +0000 (14:02 +0200)
tools/graphicator/graphicator.cpp

index 284ec19..bc9a50a 100644 (file)
@@ -13,6 +13,7 @@ int main(int argc, char** argv)
   xbt_assert(argc == 3, "Usage: %s <platform_file.xml> <graphviz_file.dot|graphviz_file.csv>", 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);