Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of framagit.org:simgrid/simgrid
[simgrid.git] / src / mc / mc_config.cpp
index 63a083e4f89e6982b85541c324b27a65a01cf7e1..1a6af99f3af93a502175b0ba6e2040e3404e8122 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008-2022. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2008-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_cfg);
 
-bool simgrid::mc::cfg_do_model_check = 0;
+bool simgrid::mc::cfg_do_model_check = false;
 
 static void _mc_cfg_cb_check(const char* spec, bool more_check = true)
 {
 #if SIMGRID_HAVE_MC
-  xbt_assert(_sg_cfg_init_status == 0 || MC_is_active() || not more_check,
-             "Specifying a %s is only allowed within the model-checker. Please use simgrid-mc.", spec);
+  xbt_assert(_sg_cfg_init_status == 0 || MC_is_active() || MC_record_replay_is_active() || not more_check,
+             "Specifying a %s is only allowed within the model-checker. Please use simgrid-mc, or specify this option "
+             "after the replay path.",
+             spec);
 #else
   xbt_die("Specifying a %s is only allowed within the model-checker. Please enable it before the compilation.", spec);
 #endif