Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Remove mc_stats.state_size (not used)
authorGabriel Corona <gabriel.corona@loria.fr>
Wed, 13 Apr 2016 12:56:34 +0000 (14:56 +0200)
committerGabriel Corona <gabriel.corona@loria.fr>
Wed, 13 Apr 2016 14:32:34 +0000 (16:32 +0200)
src/mc/ModelChecker.cpp
src/mc/mc_private.h

index 670f719..9aaffdd 100644 (file)
@@ -113,7 +113,6 @@ void ModelChecker::start()
 
   /* Initialize statistics */
   mc_stats = xbt_new0(s_mc_stats_t, 1);
-  mc_stats->state_size = 1;
 
   if ((_sg_mc_dot_output_file != nullptr) && (_sg_mc_dot_output_file[0] != '\0'))
     MC_init_dot_output();
index ae5e000..235a5be 100644 (file)
@@ -67,7 +67,6 @@ XBT_PRIVATE void MC_show_deadlock(void);
 /****************************** Statistics ************************************/
 
 typedef struct mc_stats {
-  unsigned long state_size;
   unsigned long visited_states;
   unsigned long executed_transitions;
 } s_mc_stats_t, *mc_stats_t;