X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/30a925489c6e4d4a92042ef80de375c56ccb562b..22cae46149e1fb4988ad9e46060c3e7ecd4e0e44:/src/mc/mc_safety.h diff --git a/src/mc/mc_safety.h b/src/mc/mc_safety.h index 931584bb40..22b061503c 100644 --- a/src/mc/mc_safety.h +++ b/src/mc/mc_safety.h @@ -1,5 +1,4 @@ -/* Copyright (c) 2007-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2017. 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. */ @@ -9,10 +8,11 @@ #include +#include + #include -#include -#include +#include "xbt/base.h" #include "src/mc/mc_forward.hpp" #include "src/mc/mc_state.h" @@ -28,22 +28,6 @@ enum class ReductionMode { extern XBT_PRIVATE simgrid::mc::ReductionMode reduction_mode; -int modelcheck_safety(void); - -struct XBT_PRIVATE VisitedState { - mc_snapshot_t system_state; - size_t heap_bytes_used; - int nb_processes; - int num; - int other_num; // dot_output for - - VisitedState(); - ~VisitedState(); -}; - -extern XBT_PRIVATE xbt_dynar_t visited_states; -XBT_PRIVATE simgrid::mc::VisitedState* is_visited_state(mc_state_t graph_state); - } }