Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b68e56394678ada46bff9ca2d3b4eafa075cdbb1
[simgrid.git] / src / mc / mc_comm_determinism.c
1 /* Copyright (c) 2008-2014. 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 "mc_state.h"
8 #include "mc_comm_pattern.h"
9 #include "mc_request.h"
10 #include "mc_safety.h"
11 #include "mc_private.h"
12 #include "mc_record.h"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_comm_determinism, mc,
15                                 "Logging specific to MC communication determinism detection");
16
17 /********** Global variables **********/
18
19 xbt_dynar_t initial_communications_pattern;
20 xbt_dynar_t incomplete_communications_pattern;
21
22 /********** Static functions ***********/
23
24 static void comm_pattern_free(mc_comm_pattern_t p)
25 {
26   xbt_free(p->rdv);
27   xbt_free(p->data);
28   xbt_free(p);
29   p = NULL;
30 }
31
32 static void list_comm_pattern_free(mc_list_comm_pattern_t l)
33 {
34   xbt_dynar_free(&(l->list));
35   xbt_free(l);
36   l = NULL;
37 }
38
39 static e_mc_comm_pattern_difference_t compare_comm_pattern(mc_comm_pattern_t comm1, mc_comm_pattern_t comm2) {
40   if(comm1->type != comm2->type)
41     return TYPE_DIFF;
42   if (strcmp(comm1->rdv, comm2->rdv) != 0)
43     return RDV_DIFF;
44   if (comm1->src_proc != comm2->src_proc)
45     return SRC_PROC_DIFF;
46   if (comm1->dst_proc != comm2->dst_proc)
47     return DST_PROC_DIFF;
48   if (comm1->data_size != comm2->data_size)
49     return DATA_SIZE_DIFF;
50   if(comm1->data == NULL && comm2->data == NULL)
51     return 0;
52   /*if(comm1->data != NULL && comm2->data !=NULL) {
53     if (!memcmp(comm1->data, comm2->data, comm1->data_size))
54       return 0;
55     return DATA_DIFF;
56   }else{
57     return DATA_DIFF;
58   }*/
59   return 0;
60 }
61
62 static void print_determinism_result(e_mc_comm_pattern_difference_t diff, int process, mc_comm_pattern_t comm, unsigned int cursor) {
63   if (_sg_mc_comms_determinism && !initial_global_state->comm_deterministic) {
64     XBT_INFO("****************************************************");
65     XBT_INFO("***** Non-deterministic communications pattern *****");
66     XBT_INFO("****************************************************");
67     XBT_INFO("The communications pattern of the process %d is different!",  process);
68     switch(diff) {
69     case TYPE_DIFF:
70       XBT_INFO("Different communication type for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
71       break;
72     case RDV_DIFF:
73       XBT_INFO("Different communication rdv for communication %s at index %d",  comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
74       break;
75     case SRC_PROC_DIFF:
76         XBT_INFO("Different communication source process for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
77       break;
78     case DST_PROC_DIFF:
79         XBT_INFO("Different communication destination process for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
80       break;
81     case DATA_SIZE_DIFF:
82       XBT_INFO("Different communication data size for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
83       break;
84     case DATA_DIFF:
85       XBT_INFO("Different communication data for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
86       break;
87     default:
88       break;
89     }
90     MC_print_statistics(mc_stats);
91     xbt_abort();
92   } else if (_sg_mc_send_determinism && !initial_global_state->send_deterministic) {
93     XBT_INFO("*********************************************************");
94     XBT_INFO("***** Non-send-deterministic communications pattern *****");
95     XBT_INFO("*********************************************************");
96     XBT_INFO("The communications pattern of the process %d is different!",  process);
97     switch(diff) {
98     case TYPE_DIFF:
99       XBT_INFO("Different communication type for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
100       break;
101     case RDV_DIFF:
102       XBT_INFO("Different communication rdv for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
103       break;
104     case SRC_PROC_DIFF:
105         XBT_INFO("Different communication source process for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
106       break;
107     case DST_PROC_DIFF:
108         XBT_INFO("Different communication destination process for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
109       break;
110     case DATA_SIZE_DIFF:
111       XBT_INFO("Different communication data size for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
112       break;
113     case DATA_DIFF:
114       XBT_INFO("Different communication data for communication %s at index %d", comm->type == SIMIX_COMM_SEND ? "Send" : "Recv", cursor);
115       break;
116     default:
117       break;
118     }
119     MC_print_statistics(mc_stats);
120     xbt_abort();
121   }
122 }
123
124 static void print_communications_pattern()
125 {
126   unsigned int cursor = 0, cursor2 = 0;
127   mc_comm_pattern_t current_comm;
128   mc_list_comm_pattern_t current_list;
129   unsigned int current_process = 1;
130   while (current_process < simix_process_maxpid) {
131     current_list = (mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, current_process, mc_list_comm_pattern_t);
132     XBT_INFO("Communications from the process %u:", current_process);
133     while(cursor2 < current_list->index_comm){
134       current_comm = (mc_comm_pattern_t)xbt_dynar_get_as(current_list->list, cursor2, mc_comm_pattern_t);
135       if (current_comm->type == SIMIX_COMM_SEND) {
136         XBT_INFO("(%u) [(%lu) %s -> (%lu) %s] %s ", cursor,current_comm->src_proc,
137                  current_comm->src_host, current_comm->dst_proc,
138                  current_comm->dst_host, "iSend");
139       } else {
140         XBT_INFO("(%u) [(%lu) %s <- (%lu) %s] %s ", cursor, current_comm->dst_proc,
141                  current_comm->dst_host, current_comm->src_proc,
142                  current_comm->src_host, "iRecv");
143       }
144       cursor2++;
145     }
146     current_process++;
147     cursor = 0;
148     cursor2 = 0;
149   }
150 }
151
152 static void print_incomplete_communications_pattern(){
153   unsigned int cursor = 0;
154   unsigned int current_process = 1;
155   xbt_dynar_t current_pattern;
156   mc_comm_pattern_t comm;
157   while (current_process < simix_process_maxpid) {
158     current_pattern = (xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, current_process, xbt_dynar_t);
159     XBT_INFO("Incomplete communications from the process %u:", current_process);
160     xbt_dynar_foreach(current_pattern, cursor, comm) {
161       XBT_DEBUG("(%u) Communication %p", cursor, comm);
162     }
163     current_process++;
164     cursor = 0;
165   }
166 }
167
168 static void update_comm_pattern(mc_comm_pattern_t comm_pattern, smx_synchro_t comm)
169 {
170   void *addr_pointed;
171   comm_pattern->src_proc = comm->comm.src_proc->pid;
172   comm_pattern->dst_proc = comm->comm.dst_proc->pid;
173   comm_pattern->src_host = simcall_host_get_name(comm->comm.src_proc->smx_host);
174   comm_pattern->dst_host = simcall_host_get_name(comm->comm.dst_proc->smx_host);
175   if (comm_pattern->data_size == -1 && comm->comm.src_buff != NULL) {
176     comm_pattern->data_size = *(comm->comm.dst_buff_size);
177     comm_pattern->data = xbt_malloc0(comm_pattern->data_size);
178     addr_pointed = *(void **) comm->comm.src_buff;
179     if (addr_pointed > (void*) std_heap && addr_pointed < std_heap->breakval)
180       memcpy(comm_pattern->data, addr_pointed, comm_pattern->data_size);
181     else
182       memcpy(comm_pattern->data, comm->comm.src_buff, comm_pattern->data_size);
183   }
184 }
185
186 static void deterministic_comm_pattern(int process, mc_comm_pattern_t comm, int backtracking) {
187
188   mc_list_comm_pattern_t list_comm_pattern = (mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, process, mc_list_comm_pattern_t);
189
190   if(!backtracking){
191     mc_comm_pattern_t initial_comm = xbt_dynar_get_as(list_comm_pattern->list, comm->index, mc_comm_pattern_t);
192     e_mc_comm_pattern_difference_t diff;
193     
194     if((diff = compare_comm_pattern(initial_comm, comm)) != NONE_DIFF){
195       if (comm->type == SIMIX_COMM_SEND)
196         initial_global_state->send_deterministic = 0;
197       initial_global_state->comm_deterministic = 0;
198       print_determinism_result(diff, process, comm, list_comm_pattern->index_comm + 1);
199     }
200   }
201     
202   list_comm_pattern->index_comm++;
203   comm_pattern_free(comm);
204
205 }
206
207 /********** Non Static functions ***********/
208
209 void comm_pattern_free_voidp(void *p) {
210   comm_pattern_free((mc_comm_pattern_t) * (void **) p);
211 }
212
213 void list_comm_pattern_free_voidp(void *p) {
214   list_comm_pattern_free((mc_list_comm_pattern_t) * (void **) p);
215 }
216
217 void get_comm_pattern(xbt_dynar_t list, smx_simcall_t request, e_mc_call_type_t call_type)
218 {
219
220   mc_comm_pattern_t pattern = NULL;
221   pattern = xbt_new0(s_mc_comm_pattern_t, 1);
222   pattern->data_size = -1;
223   pattern->data = NULL;
224
225   pattern->index = ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, request->issuer->pid, mc_list_comm_pattern_t))->index_comm + xbt_dynar_length((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, request->issuer->pid, xbt_dynar_t));
226   
227   void *addr_pointed;
228   
229   if (call_type == MC_CALL_TYPE_SEND) {
230     /* Create comm pattern */
231     pattern->type = SIMIX_COMM_SEND;
232     pattern->comm = simcall_comm_isend__get__result(request);
233     pattern->rdv = (pattern->comm->comm.rdv != NULL) ? strdup(pattern->comm->comm.rdv->name) : strdup(pattern->comm->comm.rdv_cpy->name);
234     pattern->src_proc = pattern->comm->comm.src_proc->pid;
235     pattern->src_host = simcall_host_get_name(request->issuer->smx_host);
236     if(pattern->comm->comm.src_buff != NULL){
237       pattern->data_size = pattern->comm->comm.src_buff_size;
238       pattern->data = xbt_malloc0(pattern->data_size);
239       addr_pointed = *(void **) pattern->comm->comm.src_buff;
240       if (addr_pointed > (void*) std_heap && addr_pointed < std_heap->breakval)
241         memcpy(pattern->data, addr_pointed, pattern->data_size);
242       else
243         memcpy(pattern->data, pattern->comm->comm.src_buff, pattern->data_size);
244     }
245   } else if (call_type == MC_CALL_TYPE_RECV) {                      
246     pattern->type = SIMIX_COMM_RECEIVE;
247     pattern->comm = simcall_comm_irecv__get__result(request);
248     pattern->rdv = (pattern->comm->comm.rdv != NULL) ? strdup(pattern->comm->comm.rdv->name) : strdup(pattern->comm->comm.rdv_cpy->name);
249     pattern->dst_proc = pattern->comm->comm.dst_proc->pid;
250     pattern->dst_host = simcall_host_get_name(request->issuer->smx_host);
251   } else {
252     xbt_die("Unexpected call_type %i", (int) call_type);
253   }
254
255   xbt_dynar_push((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, request->issuer->pid, xbt_dynar_t), &pattern);
256
257   XBT_DEBUG("Insert incomplete comm pattern %p for process %lu", pattern, request->issuer->pid);
258 }
259
260 void complete_comm_pattern(xbt_dynar_t list, smx_synchro_t comm, int backtracking) {
261
262   mc_comm_pattern_t current_comm_pattern;
263   unsigned int cursor = 0;
264   unsigned int src = comm->comm.src_proc->pid;
265   unsigned int dst = comm->comm.dst_proc->pid;
266   mc_comm_pattern_t src_comm_pattern;
267   mc_comm_pattern_t dst_comm_pattern;
268   int src_completed = 0, dst_completed = 0;
269
270   /* Complete comm pattern */
271   xbt_dynar_foreach((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, src, xbt_dynar_t), cursor, current_comm_pattern) {
272     if (current_comm_pattern-> comm == comm) {
273       update_comm_pattern(current_comm_pattern, comm);
274       src_completed = 1;
275       xbt_dynar_remove_at((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, src, xbt_dynar_t), cursor, &src_comm_pattern);
276       XBT_DEBUG("Remove incomplete comm pattern for process %u at cursor %u", src, cursor);
277       break;
278     }
279   }
280   if(!src_completed)
281     xbt_die("Corresponding communication for the source process not found!");
282
283   cursor = 0;
284
285   xbt_dynar_foreach((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, dst, xbt_dynar_t), cursor, current_comm_pattern) {
286     if (current_comm_pattern-> comm == comm) {
287       update_comm_pattern(current_comm_pattern, comm);
288       dst_completed = 1;
289       xbt_dynar_remove_at((xbt_dynar_t)xbt_dynar_get_as(incomplete_communications_pattern, dst, xbt_dynar_t), cursor, &dst_comm_pattern);
290       XBT_DEBUG("Remove incomplete comm pattern for process %u at cursor %u", dst, cursor);
291       break;
292     }
293   }
294   if(!dst_completed)
295     xbt_die("Corresponding communication for the destination process not found!");
296   
297   if (!initial_global_state->initial_communications_pattern_done) {
298     /* Store comm pattern */
299     if(src_comm_pattern->index < xbt_dynar_length(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, src, mc_list_comm_pattern_t))->list)){
300       xbt_dynar_set(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, src, mc_list_comm_pattern_t))->list, src_comm_pattern->index, &src_comm_pattern);
301       ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, src, mc_list_comm_pattern_t))->list->used++;
302     } else {
303       xbt_dynar_insert_at(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, src, mc_list_comm_pattern_t))->list, src_comm_pattern->index, &src_comm_pattern);
304     }
305     
306     if(dst_comm_pattern->index < xbt_dynar_length(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, dst, mc_list_comm_pattern_t))->list)) {
307       xbt_dynar_set(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, dst, mc_list_comm_pattern_t))->list, dst_comm_pattern->index, &dst_comm_pattern);
308       ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, dst, mc_list_comm_pattern_t))->list->used++;
309     } else {
310       xbt_dynar_insert_at(((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, dst, mc_list_comm_pattern_t))->list, dst_comm_pattern->index, &dst_comm_pattern);
311     }
312     ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, src, mc_list_comm_pattern_t))->index_comm++;
313     ((mc_list_comm_pattern_t)xbt_dynar_get_as(initial_communications_pattern, dst, mc_list_comm_pattern_t))->index_comm++;
314   } else {
315     /* Evaluate comm determinism */
316     deterministic_comm_pattern(src, src_comm_pattern, backtracking);
317     deterministic_comm_pattern(dst, dst_comm_pattern, backtracking);
318   }
319 }
320
321 /************************ Main algorithm ************************/
322
323 void MC_pre_modelcheck_comm_determinism(void)
324 {
325
326   int mc_mem_set = (mmalloc_get_current_heap() == mc_heap);
327
328   mc_state_t initial_state = NULL;
329   smx_process_t process;
330   int i;
331
332   if (!mc_mem_set)
333     MC_SET_MC_HEAP;
334
335   if (_sg_mc_visited > 0)
336     visited_states = xbt_dynar_new(sizeof(mc_visited_state_t), visited_state_free_voidp);
337  
338   initial_communications_pattern = xbt_dynar_new(sizeof(mc_list_comm_pattern_t), list_comm_pattern_free_voidp);
339   for (i=0; i<simix_process_maxpid; i++){
340     mc_list_comm_pattern_t process_list_pattern = xbt_new0(s_mc_list_comm_pattern_t, 1);
341     process_list_pattern->list = xbt_dynar_new(sizeof(mc_comm_pattern_t), comm_pattern_free_voidp);
342     process_list_pattern->index_comm = 0;
343     xbt_dynar_insert_at(initial_communications_pattern, i, &process_list_pattern);
344   }
345   incomplete_communications_pattern = xbt_dynar_new(sizeof(xbt_dynar_t), xbt_dynar_free_voidp);
346   for (i=0; i<simix_process_maxpid; i++){
347     xbt_dynar_t process_pattern = xbt_dynar_new(sizeof(mc_comm_pattern_t), NULL);
348     xbt_dynar_insert_at(incomplete_communications_pattern, i, &process_pattern);
349   }
350
351   initial_state = MC_state_new();
352   MC_SET_STD_HEAP;
353   
354   XBT_DEBUG("********* Start communication determinism verification *********");
355
356   /* Wait for requests (schedules processes) */
357   MC_wait_for_requests();
358
359   MC_SET_MC_HEAP;
360
361   /* Get an enabled process and insert it in the interleave set of the initial state */
362   xbt_swag_foreach(process, simix_global->process_list) {
363     if (MC_process_is_enabled(process)) {
364       MC_state_interleave_process(initial_state, process);
365     }
366   }
367
368   xbt_fifo_unshift(mc_stack, initial_state);
369
370   MC_SET_STD_HEAP;
371
372 }
373
374 void MC_modelcheck_comm_determinism(void)
375 {
376
377   char *req_str = NULL;
378   int value;
379   mc_visited_state_t visited_state = NULL;
380   smx_simcall_t req = NULL;
381   smx_process_t process = NULL;
382   mc_state_t state = NULL, next_state = NULL;
383
384   while (xbt_fifo_size(mc_stack) > 0) {
385
386     /* Get current state */
387     state = (mc_state_t) xbt_fifo_get_item_content(xbt_fifo_get_first_item(mc_stack));
388
389     XBT_DEBUG("**************************************************");
390     XBT_DEBUG("Exploration depth = %d (state = %d, interleaved processes = %d)",
391               xbt_fifo_size(mc_stack), state->num,
392               MC_state_interleave_size(state));
393
394     /* Update statistics */
395     mc_stats->visited_states++;
396
397     if ((xbt_fifo_size(mc_stack) <= _sg_mc_max_depth)
398         && (req = MC_state_get_request(state, &value))
399         && (visited_state == NULL)) {
400
401       req_str = MC_request_to_string(req, value);  
402       XBT_DEBUG("Execute: %s", req_str);                 
403       xbt_free(req_str);
404       
405       if (dot_output != NULL) {
406         MC_SET_MC_HEAP;
407         req_str = MC_request_get_dot_output(req, value);
408         MC_SET_STD_HEAP;
409       }
410
411       MC_state_set_executed_request(state, req, value);
412       mc_stats->executed_transitions++;
413
414       /* TODO : handle test and testany simcalls */
415       e_mc_call_type_t call = MC_CALL_TYPE_NONE;
416       if (_sg_mc_comms_determinism || _sg_mc_send_determinism) {
417         call = mc_get_call_type(req);
418       }
419
420       /* Answer the request */
421       SIMIX_simcall_handle(req, value);    /* After this call req is no longer useful */
422
423       MC_SET_MC_HEAP;
424       if(!initial_global_state->initial_communications_pattern_done)
425         handle_comm_pattern(call, req, value, initial_communications_pattern, 0);
426       else
427         handle_comm_pattern(call, req, value, NULL, 0);
428       MC_SET_STD_HEAP;
429
430       /* Wait for requests (schedules processes) */
431       MC_wait_for_requests();
432
433       /* Create the new expanded state */
434       MC_SET_MC_HEAP;
435
436       next_state = MC_state_new();
437
438       if ((visited_state = is_visited_state(next_state)) == NULL) {
439
440         /* Get enabled processes and insert them in the interleave set of the next state */
441         xbt_swag_foreach(process, simix_global->process_list) {
442           if (MC_process_is_enabled(process)) {
443             MC_state_interleave_process(next_state, process);
444           }
445         }
446
447         if (dot_output != NULL)
448           fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", state->num,  next_state->num, req_str);
449
450       } else {
451
452         if (dot_output != NULL)
453           fprintf(dot_output, "\"%d\" -> \"%d\" [%s];\n", state->num, visited_state->other_num == -1 ? visited_state->num : visited_state->other_num, req_str);
454
455       }
456
457       xbt_fifo_unshift(mc_stack, next_state);
458
459       if (dot_output != NULL)
460         xbt_free(req_str);
461
462       MC_SET_STD_HEAP;
463
464     } else {
465
466       if (xbt_fifo_size(mc_stack) > _sg_mc_max_depth) {
467         XBT_WARN("/!\\ Max depth reached ! /!\\ ");
468       } else if (visited_state != NULL) {
469         XBT_DEBUG("State already visited (equal to state %d), exploration stopped on this path.", visited_state->other_num == -1 ? visited_state->num : visited_state->other_num);
470       } else {
471         XBT_DEBUG("There are no more processes to interleave. (depth %d)", xbt_fifo_size(mc_stack));
472       }
473
474       MC_SET_MC_HEAP;
475
476       if (!initial_global_state->initial_communications_pattern_done) 
477         initial_global_state->initial_communications_pattern_done = 1;
478
479       /* Trash the current state, no longer needed */
480       xbt_fifo_shift(mc_stack);
481       MC_state_delete(state, !state->in_visited_states ? 1 : 0);
482       XBT_DEBUG("Delete state %d at depth %d", state->num, xbt_fifo_size(mc_stack) + 1);
483
484       MC_SET_STD_HEAP;
485
486       visited_state = NULL;
487
488       /* Check for deadlocks */
489       if (MC_deadlock_check()) {
490         MC_show_deadlock(NULL);
491         return;
492       }
493
494       MC_SET_MC_HEAP;
495
496       while ((state = xbt_fifo_shift(mc_stack)) != NULL) {
497         if (MC_state_interleave_size(state) && xbt_fifo_size(mc_stack) < _sg_mc_max_depth) {
498           /* We found a back-tracking point, let's loop */
499           XBT_DEBUG("Back-tracking to state %d at depth %d", state->num, xbt_fifo_size(mc_stack) + 1);
500           xbt_fifo_unshift(mc_stack, state);
501           MC_SET_STD_HEAP;
502
503           MC_replay(mc_stack);
504
505           XBT_DEBUG("Back-tracking to state %d at depth %d done", state->num, xbt_fifo_size(mc_stack));
506
507           break;
508         } else {
509           XBT_DEBUG("Delete state %d at depth %d", state->num, xbt_fifo_size(mc_stack) + 1);
510           MC_state_delete(state, !state->in_visited_states ? 1 : 0);
511         }
512       }
513
514       MC_SET_STD_HEAP;
515     }
516   }
517
518   MC_print_statistics(mc_stats);
519   MC_SET_STD_HEAP;
520
521   return;
522 }