Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
6a0a1c75973bc391e36952f31c967c3d81709e1b
[simgrid.git] / src / mc / LivenessChecker.cpp
1 /* Copyright (c) 2011-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <cstring>
8
9 #include <algorithm>
10 #include <memory>
11
12 #include <unistd.h>
13 #include <sys/wait.h>
14
15 #include <xbt/automaton.h>
16 #include <xbt/dynar.h>
17 #include <xbt/dynar.hpp>
18 #include <xbt/fifo.h>
19 #include <xbt/log.h>
20 #include <xbt/sysdep.h>
21
22 #include "src/mc/mc_request.h"
23 #include "src/mc/LivenessChecker.hpp"
24 #include "src/mc/mc_private.h"
25 #include "src/mc/mc_record.h"
26 #include "src/mc/mc_smx.h"
27 #include "src/mc/Client.hpp"
28 #include "src/mc/mc_private.h"
29 #include "src/mc/mc_replay.h"
30 #include "src/mc/mc_safety.h"
31 #include "src/mc/mc_exit.h"
32
33 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_liveness, mc,
34                                 "Logging specific to algorithms for liveness properties verification");
35
36 /********* Global variables *********/
37
38 xbt_dynar_t acceptance_pairs;
39
40 /********* Static functions *********/
41
42 namespace simgrid {
43 namespace mc {
44
45 VisitedPair::VisitedPair(int pair_num, xbt_automaton_state_t automaton_state, xbt_dynar_t atomic_propositions, mc_state_t graph_state)
46 {
47   simgrid::mc::Process* process = &(mc_model_checker->process());
48
49   this->graph_state = graph_state;
50   if(this->graph_state->system_state == nullptr)
51     this->graph_state->system_state = simgrid::mc::take_snapshot(pair_num);
52   this->heap_bytes_used = mmalloc_get_bytes_used_remote(
53     process->get_heap()->heaplimit,
54     process->get_malloc_info());
55
56   this->nb_processes =
57     mc_model_checker->process().simix_processes().size();
58
59   this->automaton_state = automaton_state;
60   this->num = pair_num;
61   this->other_num = -1;
62   this->acceptance_removed = 0;
63   this->visited_removed = 0;
64   this->acceptance_pair = 0;
65   this->atomic_propositions = simgrid::xbt::unique_ptr<s_xbt_dynar_t>(
66     xbt_dynar_new(sizeof(int), nullptr));
67
68   unsigned int cursor = 0;
69   int value;
70   xbt_dynar_foreach(atomic_propositions, cursor, value)
71       xbt_dynar_push_as(this->atomic_propositions.get(), int, value);
72 }
73
74 static int is_exploration_stack_pair(simgrid::mc::VisitedPair* pair){
75   xbt_fifo_item_t item = xbt_fifo_get_first_item(mc_stack);
76   while (item) {
77     if (((simgrid::mc::Pair*)xbt_fifo_get_item_content(item))->num == pair->num){
78       ((simgrid::mc::Pair*)xbt_fifo_get_item_content(item))->visited_pair_removed = 1;
79       return 1;
80     }
81     item = xbt_fifo_get_next_item(item);
82   }
83   return 0;
84 }
85
86 VisitedPair::~VisitedPair()
87 {
88   if( !is_exploration_stack_pair(this))
89     MC_state_delete(this->graph_state, 1);
90 }
91
92 static int MC_automaton_evaluate_label(xbt_automaton_exp_label_t l,
93                                        xbt_dynar_t atomic_propositions_values)
94 {
95
96   switch (l->type) {
97   case 0:{
98       int left_res = MC_automaton_evaluate_label(l->u.or_and.left_exp, atomic_propositions_values);
99       int right_res = MC_automaton_evaluate_label(l->u.or_and.right_exp, atomic_propositions_values);
100       return (left_res || right_res);
101     }
102   case 1:{
103       int left_res = MC_automaton_evaluate_label(l->u.or_and.left_exp, atomic_propositions_values);
104       int right_res = MC_automaton_evaluate_label(l->u.or_and.right_exp, atomic_propositions_values);
105       return (left_res && right_res);
106     }
107   case 2:{
108       int res = MC_automaton_evaluate_label(l->u.exp_not, atomic_propositions_values);
109       return (!res);
110     }
111   case 3:{
112       unsigned int cursor = 0;
113       xbt_automaton_propositional_symbol_t p = nullptr;
114       xbt_dynar_foreach(simgrid::mc::property_automaton->propositional_symbols, cursor, p) {
115         if (std::strcmp(xbt_automaton_propositional_symbol_get_name(p), l->u.predicat) == 0)
116           return (int) xbt_dynar_get_as(atomic_propositions_values, cursor, int);
117       }
118       return -1;
119     }
120   case 4:
121     return 2;
122   default:
123     return -1;
124   }
125 }
126
127 static xbt_dynar_t visited_pairs;
128
129 Pair::Pair() : num(++mc_stats->expanded_pairs),
130   visited_pair_removed(_sg_mc_visited > 0 ? 0 : 1)
131 {}
132
133 Pair::~Pair() {
134   if (this->visited_pair_removed)
135     MC_state_delete(this->graph_state, 1);
136 }
137
138 void LivenessChecker::showStack(xbt_fifo_t stack)
139 {
140   int value;
141   simgrid::mc::Pair* pair;
142   xbt_fifo_item_t item;
143   smx_simcall_t req;
144   char *req_str = nullptr;
145
146   for (item = xbt_fifo_get_last_item(stack);
147        item; item = xbt_fifo_get_prev_item(item)) {
148     pair = (simgrid::mc::Pair*) xbt_fifo_get_item_content(item);
149     req = MC_state_get_executed_request(pair->graph_state, &value);
150     if (req && req->call != SIMCALL_NONE) {
151       req_str = simgrid::mc::request_to_string(req, value, simgrid::mc::RequestType::executed);
152       XBT_INFO("%s", req_str);
153       xbt_free(req_str);
154     }
155   }
156 }
157
158 void LivenessChecker::dumpStack(xbt_fifo_t stack)
159 {
160   simgrid::mc::Pair* pair;
161   while ((pair = (simgrid::mc::Pair*) xbt_fifo_pop(stack)) != nullptr)
162     delete pair;
163 }
164
165 simgrid::xbt::unique_ptr<s_xbt_dynar_t> LivenessChecker::getPropositionValues()
166 {
167   unsigned int cursor = 0;
168   xbt_automaton_propositional_symbol_t ps = nullptr;
169   simgrid::xbt::unique_ptr<s_xbt_dynar_t> values = simgrid::xbt::unique_ptr<s_xbt_dynar_t>(xbt_dynar_new(sizeof(int), nullptr));
170   xbt_dynar_foreach(simgrid::mc::property_automaton->propositional_symbols, cursor, ps) {
171     int res = xbt_automaton_propositional_symbol_evaluate(ps);
172     xbt_dynar_push_as(values.get(), int, res);
173   }
174   return std::move(values);
175 }
176
177 int LivenessChecker::compare(simgrid::mc::VisitedPair* state1, simgrid::mc::VisitedPair* state2)
178 {
179   simgrid::mc::Snapshot* s1 = state1->graph_state->system_state;
180   simgrid::mc::Snapshot* s2 = state2->graph_state->system_state;
181   int num1 = state1->num;
182   int num2 = state2->num;
183   return simgrid::mc::snapshot_compare(num1, s1, num2, s2);
184 }
185
186 simgrid::mc::VisitedPair* LivenessChecker::insertAcceptancePair(simgrid::mc::Pair* pair)
187 {
188   auto acceptance_pairs = simgrid::xbt::range<simgrid::mc::VisitedPair*>(::acceptance_pairs);
189   auto new_pair =
190     std::unique_ptr<simgrid::mc::VisitedPair>(new VisitedPair(
191       pair->num, pair->automaton_state, pair->atomic_propositions.get(),
192       pair->graph_state));
193   new_pair->acceptance_pair = 1;
194
195   auto res = std::equal_range(acceptance_pairs.begin(), acceptance_pairs.end(),
196     new_pair, simgrid::mc::DerefAndCompareByNbProcessesAndUsedHeap());
197
198   if (pair->search_cycle == 1)
199     for (auto i = res.first; i != res.second; ++i) {
200       simgrid::mc::VisitedPair* pair_test = *i;
201       if (xbt_automaton_state_compare(pair_test->automaton_state, new_pair->automaton_state) == 0) {
202         if (xbt_automaton_propositional_symbols_compare_value(
203             pair_test->atomic_propositions.get(),
204             new_pair->atomic_propositions.get()) == 0) {
205           if (this->compare(pair_test, new_pair.get()) == 0) {
206             XBT_INFO("Pair %d already reached (equal to pair %d) !", new_pair->num, pair_test->num);
207             xbt_fifo_shift(mc_stack);
208             if (dot_output != nullptr)
209               fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", initial_global_state->prev_pair, pair_test->num, initial_global_state->prev_req);
210             return nullptr;
211           }
212         }
213       }
214     }
215
216   auto new_raw_pair = new_pair.release();
217   xbt_dynar_insert_at(
218     ::acceptance_pairs, res.first - acceptance_pairs.begin(), &new_raw_pair);
219   return new_raw_pair;
220 }
221
222 void LivenessChecker::removeAcceptancePair(int pair_num)
223 {
224   unsigned int cursor = 0;
225   simgrid::mc::VisitedPair* pair_test = nullptr;
226   int pair_found = 0;
227
228   xbt_dynar_foreach(acceptance_pairs, cursor, pair_test)
229     if (pair_test->num == pair_num) {
230        pair_found = 1;
231       break;
232     }
233
234   if(pair_found == 1) {
235     xbt_dynar_remove_at(acceptance_pairs, cursor, &pair_test);
236
237     pair_test->acceptance_removed = 1;
238
239     if (_sg_mc_visited == 0 || pair_test->visited_removed == 1) 
240       delete pair_test;
241
242   }
243 }
244
245 void LivenessChecker::prepare(void)
246 {
247   simgrid::mc::Pair* initial_pair = nullptr;
248   mc_model_checker->wait_for_requests();
249   acceptance_pairs = xbt_dynar_new(sizeof(simgrid::mc::VisitedPair*), nullptr);
250   if(_sg_mc_visited > 0)
251     simgrid::mc::visited_pairs = xbt_dynar_new(sizeof(simgrid::mc::VisitedPair*), nullptr);
252
253   initial_global_state->snapshot = simgrid::mc::take_snapshot(0);
254   initial_global_state->prev_pair = 0;
255
256   unsigned int cursor = 0;
257   xbt_automaton_state_t automaton_state;
258
259   xbt_dynar_foreach(simgrid::mc::property_automaton->states, cursor, automaton_state) {
260     if (automaton_state->type == -1) {  /* Initial automaton state */
261
262       initial_pair = new Pair();
263       initial_pair->automaton_state = automaton_state;
264       initial_pair->graph_state = MC_state_new();
265       initial_pair->atomic_propositions = this->getPropositionValues();
266       initial_pair->depth = 1;
267
268       /* Get enabled processes and insert them in the interleave set of the graph_state */
269       for (auto& p : mc_model_checker->process().simix_processes())
270         if (simgrid::mc::process_is_enabled(&p.copy))
271           MC_state_interleave_process(initial_pair->graph_state, &p.copy);
272
273       initial_pair->requests = MC_state_interleave_size(initial_pair->graph_state);
274       initial_pair->search_cycle = 0;
275
276       xbt_fifo_unshift(mc_stack, initial_pair);
277     }
278   }
279 }
280
281
282 void LivenessChecker::replay(xbt_fifo_t stack)
283 {
284   xbt_fifo_item_t item;
285   simgrid::mc::Pair* pair = nullptr;
286   mc_state_t state = nullptr;
287   smx_simcall_t req = nullptr, saved_req = NULL;
288   int value, depth = 1;
289   char *req_str;
290
291   XBT_DEBUG("**** Begin Replay ****");
292
293   /* Intermediate backtracking */
294   if(_sg_mc_checkpoint > 0) {
295     item = xbt_fifo_get_first_item(stack);
296     pair = (simgrid::mc::Pair*) xbt_fifo_get_item_content(item);
297     if(pair->graph_state->system_state){
298       simgrid::mc::restore_snapshot(pair->graph_state->system_state);
299       return;
300     }
301   }
302
303   /* Restore the initial state */
304   simgrid::mc::restore_snapshot(initial_global_state->snapshot);
305
306     /* Traverse the stack from the initial state and re-execute the transitions */
307     for (item = xbt_fifo_get_last_item(stack);
308          item != xbt_fifo_get_first_item(stack);
309          item = xbt_fifo_get_prev_item(item)) {
310
311       pair = (simgrid::mc::Pair*) xbt_fifo_get_item_content(item);
312
313       state = (mc_state_t) pair->graph_state;
314
315       if (pair->exploration_started) {
316
317         saved_req = MC_state_get_executed_request(state, &value);
318
319         if (saved_req != nullptr) {
320           /* because we got a copy of the executed request, we have to fetch the
321              real one, pointed by the request field of the issuer process */
322           const smx_process_t issuer = MC_smx_simcall_get_issuer(saved_req);
323           req = &issuer->simcall;
324
325           /* Debug information */
326           if (XBT_LOG_ISENABLED(mc_liveness, xbt_log_priority_debug)) {
327             req_str = simgrid::mc::request_to_string(req, value, simgrid::mc::RequestType::simix);
328             XBT_DEBUG("Replay (depth = %d) : %s (%p)", depth, req_str, state);
329             xbt_free(req_str);
330           }
331
332         }
333
334         simgrid::mc::handle_simcall(req, value);
335         mc_model_checker->wait_for_requests();
336       }
337
338       /* Update statistics */
339       mc_stats->visited_pairs++;
340       mc_stats->executed_transitions++;
341
342       depth++;
343
344     }
345
346   XBT_DEBUG("**** End Replay ****");
347 }
348
349 /**
350  * \brief Checks whether a given pair has already been visited by the algorithm.
351  */
352 int LivenessChecker::insertVisitedPair(simgrid::mc::VisitedPair* visited_pair, simgrid::mc::Pair* pair)
353 {
354   if (_sg_mc_visited == 0)
355     return -1;
356
357   simgrid::mc::VisitedPair* new_visited_pair = nullptr;
358   if (visited_pair == nullptr)
359     new_visited_pair = new simgrid::mc::VisitedPair(
360       pair->num, pair->automaton_state, pair->atomic_propositions.get(),
361       pair->graph_state);
362   else
363     new_visited_pair = visited_pair;
364
365   auto visited_pairs = simgrid::xbt::range<simgrid::mc::VisitedPair*>(simgrid::mc::visited_pairs);
366
367   auto range = std::equal_range(visited_pairs.begin(), visited_pairs.end(),
368     new_visited_pair, simgrid::mc::DerefAndCompareByNbProcessesAndUsedHeap());
369
370   for (auto i = range.first; i != range.second; ++i) {
371     simgrid::mc::VisitedPair* pair_test = *i;
372     std::size_t cursor = i - visited_pairs.begin();
373     if (xbt_automaton_state_compare(pair_test->automaton_state, new_visited_pair->automaton_state) == 0) {
374       if (xbt_automaton_propositional_symbols_compare_value(
375           pair_test->atomic_propositions.get(),
376           new_visited_pair->atomic_propositions.get()) == 0) {
377         if (this->compare(pair_test, new_visited_pair) == 0) {
378           if (pair_test->other_num == -1)
379             new_visited_pair->other_num = pair_test->num;
380           else
381             new_visited_pair->other_num = pair_test->other_num;
382           if (dot_output == nullptr)
383             XBT_DEBUG("Pair %d already visited ! (equal to pair %d)", new_visited_pair->num, pair_test->num);
384           else
385             XBT_DEBUG("Pair %d already visited ! (equal to pair %d (pair %d in dot_output))", new_visited_pair->num, pair_test->num, new_visited_pair->other_num);
386           xbt_dynar_remove_at(simgrid::mc::visited_pairs, cursor, &pair_test);
387           xbt_dynar_insert_at(simgrid::mc::visited_pairs, cursor, &new_visited_pair);
388           pair_test->visited_removed = 1;
389           if (!pair_test->acceptance_pair
390               || pair_test->acceptance_removed == 1)
391             delete pair_test;
392           return new_visited_pair->other_num;
393         }
394       }
395     }
396   }
397
398   xbt_dynar_insert_at(simgrid::mc::visited_pairs, range.first - visited_pairs.begin(), &new_visited_pair);
399
400   if ((ssize_t) visited_pairs.size() > _sg_mc_visited) {
401     int min2 = mc_stats->expanded_pairs;
402     unsigned int index2 = 0;
403     for (std::size_t i = 0; i != (std::size_t) visited_pairs.size(); ++i) {
404       simgrid::mc::VisitedPair* pair_test = visited_pairs[i];
405       if (!mc_model_checker->is_important_snapshot(*pair_test->graph_state->system_state)
406           && pair_test->num < min2) {
407         index2 = i;
408         min2 = pair_test->num;
409       }
410     }
411     simgrid::mc::VisitedPair* pair_test = nullptr;
412     xbt_dynar_remove_at(simgrid::mc::visited_pairs, index2, &pair_test);
413     pair_test->visited_removed = 1;
414     if (!pair_test->acceptance_pair || pair_test->acceptance_removed)
415       delete pair_test;
416   }
417
418   return -1;
419 }
420
421 LivenessChecker::LivenessChecker(Session& session) : Checker(session)
422 {
423 }
424
425 LivenessChecker::~LivenessChecker()
426 {
427 }
428
429 RecordTrace LivenessChecker::getRecordTrace() // override
430 {
431   RecordTrace res;
432
433   xbt_fifo_item_t start = xbt_fifo_get_last_item(mc_stack);
434   for (xbt_fifo_item_t item = start; item; item = xbt_fifo_get_prev_item(item)) {
435     simgrid::mc::Pair* pair = (simgrid::mc::Pair*) xbt_fifo_get_item_content(item);
436     int value;
437     smx_simcall_t req = MC_state_get_executed_request(pair->graph_state, &value);
438     if (req && req->call != SIMCALL_NONE) {
439       smx_process_t issuer = MC_smx_simcall_get_issuer(req);
440       const int pid = issuer->pid;
441
442       // Serialization the (pid, value) pair:
443       res.push_back(RecordTraceElement(pid, value));
444     }
445   }
446
447   return std::move(res);
448 }
449
450 void LivenessChecker::showAcceptanceCycle(std::size_t depth)
451 {
452   XBT_INFO("*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*");
453   XBT_INFO("|             ACCEPTANCE CYCLE            |");
454   XBT_INFO("*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*");
455   XBT_INFO("Counter-example that violates formula :");
456   simgrid::mc::dumpRecordPath();
457   this->showStack(mc_stack);
458   this->dumpStack(mc_stack);
459   MC_print_statistics(mc_stats);
460   XBT_INFO("Counter-example depth : %zd", depth);
461 }
462
463 int LivenessChecker::main(void)
464 {
465   simgrid::mc::Pair* current_pair = nullptr;
466   int value, res, visited_num = -1;
467   smx_simcall_t req = nullptr;
468   xbt_automaton_transition_t transition_succ = nullptr;
469   int cursor = 0;
470   simgrid::mc::Pair* next_pair = nullptr;
471   simgrid::xbt::unique_ptr<s_xbt_dynar_t> prop_values;
472   simgrid::mc::VisitedPair* reached_pair = nullptr;
473
474   while(xbt_fifo_size(mc_stack) > 0){
475
476     /* Get current pair */
477     current_pair = (simgrid::mc::Pair*) xbt_fifo_get_item_content(xbt_fifo_get_first_item(mc_stack));
478
479     /* Update current state in buchi automaton */
480     simgrid::mc::property_automaton->current_state = current_pair->automaton_state;
481
482     XBT_DEBUG("********************* ( Depth = %d, search_cycle = %d, interleave size = %d, pair_num = %d, requests = %d)",
483        current_pair->depth, current_pair->search_cycle,
484        MC_state_interleave_size(current_pair->graph_state), current_pair->num,
485        current_pair->requests);
486
487     if (current_pair->requests > 0) {
488
489       if (current_pair->automaton_state->type == 1 && current_pair->exploration_started == 0) {
490         /* If new acceptance pair, return new pair */
491         if ((reached_pair = this->insertAcceptancePair(current_pair)) == nullptr) {
492           this->showAcceptanceCycle(current_pair->depth);
493           return SIMGRID_MC_EXIT_LIVENESS;
494         }
495       }
496
497       /* Pair already visited ? stop the exploration on the current path */
498       if ((current_pair->exploration_started == 0)
499         && (visited_num = this->insertVisitedPair(
500           reached_pair, current_pair)) != -1) {
501
502         if (dot_output != nullptr){
503           fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", initial_global_state->prev_pair, visited_num, initial_global_state->prev_req);
504           fflush(dot_output);
505         }
506
507         XBT_DEBUG("Pair already visited (equal to pair %d), exploration on the current path stopped.", visited_num);
508         current_pair->requests = 0;
509         goto backtracking;
510
511       }else{
512
513         req = MC_state_get_request(current_pair->graph_state, &value);
514
515          if (dot_output != nullptr) {
516            if (initial_global_state->prev_pair != 0 && initial_global_state->prev_pair != current_pair->num) {
517              fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", initial_global_state->prev_pair, current_pair->num, initial_global_state->prev_req);
518              xbt_free(initial_global_state->prev_req);
519            }
520            initial_global_state->prev_pair = current_pair->num;
521            initial_global_state->prev_req = simgrid::mc::request_get_dot_output(req, value);
522            if (current_pair->search_cycle)
523              fprintf(dot_output, "%d [shape=doublecircle];\n", current_pair->num);
524            fflush(dot_output);
525          }
526
527          char* req_str = simgrid::mc::request_to_string(req, value, simgrid::mc::RequestType::simix);
528          XBT_DEBUG("Execute: %s", req_str);
529          xbt_free(req_str);
530
531          /* Set request as executed */
532          MC_state_set_executed_request(current_pair->graph_state, req, value);
533
534          /* Update mc_stats */
535          mc_stats->executed_transitions++;
536          if(current_pair->exploration_started == 0)
537            mc_stats->visited_pairs++;
538
539          /* Answer the request */
540          simgrid::mc::handle_simcall(req, value);
541
542          /* Wait for requests (schedules processes) */
543          mc_model_checker->wait_for_requests();
544
545          current_pair->requests--;
546          current_pair->exploration_started = 1;
547
548          /* Get values of atomic propositions (variables used in the property formula) */
549          prop_values = this->getPropositionValues();
550
551          /* Evaluate enabled/true transitions in automaton according to atomic propositions values and create new pairs */
552          cursor = xbt_dynar_length(current_pair->automaton_state->out) - 1;
553          while (cursor >= 0) {
554            transition_succ = (xbt_automaton_transition_t)xbt_dynar_get_as(current_pair->automaton_state->out, cursor, xbt_automaton_transition_t);
555            res = MC_automaton_evaluate_label(transition_succ->label, prop_values.get());
556            if (res == 1 || res == 2) { /* 1 = True transition (always enabled), 2 = enabled transition according to atomic prop values */
557               next_pair = new Pair();
558               next_pair->graph_state = MC_state_new();
559               next_pair->automaton_state = transition_succ->dst;
560               next_pair->atomic_propositions = this->getPropositionValues();
561               next_pair->depth = current_pair->depth + 1;
562               /* Get enabled processes and insert them in the interleave set of the next graph_state */
563               for (auto& p : mc_model_checker->process().simix_processes())
564                 if (simgrid::mc::process_is_enabled(&p.copy))
565                   MC_state_interleave_process(next_pair->graph_state, &p.copy);
566
567               next_pair->requests = MC_state_interleave_size(next_pair->graph_state);
568
569               /* FIXME : get search_cycle value for each acceptant state */
570               if (next_pair->automaton_state->type == 1 || current_pair->search_cycle)
571                 next_pair->search_cycle = 1;
572
573               /* Add new pair to the exploration stack */
574               xbt_fifo_unshift(mc_stack, next_pair);
575
576            }
577            cursor--;
578          }
579
580       } /* End of visited_pair test */
581
582     } else {
583
584     backtracking:
585       if(visited_num == -1)
586         XBT_DEBUG("No more request to execute. Looking for backtracking point.");
587
588       prop_values.reset();
589
590       /* Traverse the stack backwards until a pair with a non empty interleave
591          set is found, deleting all the pairs that have it empty in the way. */
592       while ((current_pair = (simgrid::mc::Pair*) xbt_fifo_shift(mc_stack)) != nullptr) {
593         if (current_pair->requests > 0) {
594           /* We found a backtracking point */
595           XBT_DEBUG("Backtracking to depth %d", current_pair->depth);
596           xbt_fifo_unshift(mc_stack, current_pair);
597           this->replay(mc_stack);
598           XBT_DEBUG("Backtracking done");
599           break;
600         }else{
601           /* Delete pair */
602           XBT_DEBUG("Delete pair %d at depth %d", current_pair->num, current_pair->depth);
603           if (current_pair->automaton_state->type == 1)
604             this->removeAcceptancePair(current_pair->num);
605           delete current_pair;
606         }
607       }
608
609     } /* End of if (current_pair->requests > 0) else ... */
610
611   } /* End of while(xbt_fifo_size(mc_stack) > 0) */
612
613   XBT_INFO("No property violation found.");
614   MC_print_statistics(mc_stats);
615   return SIMGRID_MC_EXIT_SUCCESS;
616 }
617
618 int LivenessChecker::run()
619 {
620   XBT_INFO("Check the liveness property %s", _sg_mc_property_file);
621   MC_automaton_load(_sg_mc_property_file);
622   mc_model_checker->wait_for_requests();
623
624   XBT_DEBUG("Starting the liveness algorithm");
625   _sg_mc_liveness = 1;
626
627   /* Create exploration stack */
628   mc_stack = xbt_fifo_new();
629
630   /* Create the initial state */
631   initial_global_state = xbt_new0(s_mc_global_t, 1);
632
633   this->prepare();
634   return this->main();
635 }
636
637 }
638 }