X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/42e47242b26a374aa63a9a29b1ac79c443213220..4e68c6fc1ff039dd2cea2688981f4c19919874d4:/src/mc/mc_client_api.cpp diff --git a/src/mc/mc_client_api.cpp b/src/mc/mc_client_api.cpp index d2dd997a3a..f75d35a2de 100644 --- a/src/mc/mc_client_api.cpp +++ b/src/mc/mc_client_api.cpp @@ -1,11 +1,10 @@ -/* 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. */ -/* Implementation of the user API from the App to the Checker (see modelchecker.h) */ - -#include "src/mc/ModelChecker.hpp" +#include "simgrid/simix.hpp" +#include "src/kernel/actor/ActorImpl.hpp" #include "src/mc/mc_config.hpp" #include "src/mc/mc_private.hpp" #include "src/mc/mc_record.hpp" @@ -14,6 +13,8 @@ #include "xbt/asserts.h" #include "xbt/random.hpp" +/* Implementation of the user API from the App to the Checker (see modelchecker.h) */ + int MC_random(int min, int max) { #if SIMGRID_HAVE_MC @@ -29,8 +30,10 @@ int MC_random(int min, int max) void MC_assert(int prop) { + // Cannot used xbt_assert here, or it would be an infinite recursion. #if SIMGRID_HAVE_MC - xbt_assert(mc_model_checker == nullptr); + if (mc_model_checker != nullptr) + xbt_die("This should be called from the client side"); if (not prop) { if (MC_is_active()) simgrid::mc::AppSide::get()->report_assertion_failure(); @@ -38,7 +41,8 @@ void MC_assert(int prop) xbt_die("MC assertion failed"); } #else - xbt_assert(prop, "Safety property violation detected without the model-checker"); + if (not prop) + xbt_die("Safety property violation detected without the model-checker"); #endif } @@ -51,8 +55,6 @@ void MC_automaton_new_propositional_symbol_pointer(const char *name, int* value) { #if SIMGRID_HAVE_MC xbt_assert(mc_model_checker == nullptr); - if (not MC_is_active()) - return; simgrid::mc::AppSide::get()->declare_symbol(name, value); #endif } @@ -61,8 +63,6 @@ void MC_ignore(void* addr, size_t size) { #if SIMGRID_HAVE_MC xbt_assert(mc_model_checker == nullptr); - if (not MC_is_active()) - return; simgrid::mc::AppSide::get()->ignore_memory(addr, size); #endif }