X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/427ce11c29a6a5b78045e0c0f703dd52a400e8ea..04c2f2d2a1d483120cef0e6110df53178c8bfe04:/src/mc/mc_liveness.c diff --git a/src/mc/mc_liveness.c b/src/mc/mc_liveness.c index 2401f8f19f..5c90750813 100644 --- a/src/mc/mc_liveness.c +++ b/src/mc/mc_liveness.c @@ -198,7 +198,7 @@ int reached(xbt_state_t st){ new_pair->automaton_state = st; new_pair->prop_ato = xbt_dynar_new(sizeof(int), NULL); new_pair->comparison_times = new_comparison_times(); - new_pair->system_state = MC_take_snapshot_liveness(); + new_pair->system_state = MC_take_snapshot(); /* Get values of propositional symbols */ int res; @@ -247,10 +247,10 @@ int reached(xbt_state_t st){ return 1; } }else{ - XBT_INFO("Different values of propositional symbols"); + XBT_DEBUG("Different values of propositional symbols"); } }else{ - XBT_INFO("Different automaton state"); + XBT_DEBUG("Different automaton state"); } if(pair_test->comparison_times != NULL && XBT_LOG_ISENABLED(mc_liveness, xbt_log_priority_debug)){ XBT_DEBUG("*** Comparison times statistics ***"); @@ -286,7 +286,7 @@ void set_pair_reached(xbt_state_t st){ pair->automaton_state = st; pair->prop_ato = xbt_dynar_new(sizeof(int), NULL); pair->comparison_times = new_comparison_times(); - pair->system_state = MC_take_snapshot_liveness(); + pair->system_state = MC_take_snapshot(); /* Get values of propositional symbols */ unsigned int cursor = 0; @@ -322,7 +322,7 @@ int visited(xbt_state_t st){ new_pair = xbt_new0(s_mc_pair_visited_t, 1); new_pair->automaton_state = st; new_pair->prop_ato = xbt_dynar_new(sizeof(int), NULL); - new_pair->system_state = MC_take_snapshot_liveness(); + new_pair->system_state = MC_take_snapshot(); /* Get values of propositional symbols */ int res; @@ -370,10 +370,10 @@ int visited(xbt_state_t st){ return 1; } }else{ - XBT_INFO("Different values of propositional symbols"); + XBT_DEBUG("Different values of propositional symbols"); } }else{ - XBT_INFO("Different automaton state"); + XBT_DEBUG("Different automaton state"); } } @@ -502,9 +502,9 @@ void MC_ddfs_init(void){ initial_state_liveness->raw_mem_set = (mmalloc_get_current_heap() == raw_heap); - XBT_INFO("**************************************************"); - XBT_INFO("Double-DFS init"); - XBT_INFO("**************************************************"); + XBT_DEBUG("**************************************************"); + XBT_DEBUG("Double-DFS init"); + XBT_DEBUG("**************************************************"); mc_pair_stateless_t mc_initial_pair = NULL; mc_state_t initial_graph_state = NULL; @@ -527,7 +527,7 @@ void MC_ddfs_init(void){ successors = xbt_dynar_new(sizeof(mc_pair_stateless_t), NULL); /* Save the initial state */ - initial_state_liveness->snapshot = MC_take_snapshot_liveness(); + initial_state_liveness->snapshot = MC_take_snapshot(); MC_UNSET_RAW_MEM;