Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / mc / mc_pair.c
1 /* Copyright (c) 2013-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 <xbt.h>
8 #include "mc_liveness.h"
9 #include "mc_private.h"
10
11 mc_pair_t MC_pair_new()
12 {
13   mc_pair_t p = NULL;
14   p = xbt_new0(s_mc_pair_t, 1);
15   p->num = ++mc_stats->expanded_pairs;
16   p->search_cycle = 0;
17   return p;
18 }
19
20 void MC_pair_delete(mc_pair_t p)
21 {
22   p->automaton_state = NULL;
23   MC_state_delete(p->graph_state);
24   xbt_dynar_free(&(p->atomic_propositions));
25   xbt_free(p);
26   p = NULL;
27 }
28
29 void mc_pair_free_voidp(void *p)
30 {
31   MC_pair_delete((mc_pair_t) * (void **) p);
32 }