Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
b75d93552bb22e64500ce29a1a811c3f6ce141bc
[simgrid.git] / src / mc / mc_liveness.h
1 /* Copyright (c) 2007-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 #ifndef SIMGRID_MC_LIVENESS_H
8 #define SIMGRID_MC_LIVENESS_H
9
10 #include <stdint.h>
11
12 #include <simgrid_config.h>
13 #include <xbt/base.h>
14 #include <xbt/fifo.h>
15 #include <xbt/dynar.h>
16 #include <xbt/automaton.h>
17 #include "src/mc/mc_state.h"
18
19 SG_BEGIN_DECL()
20
21 SG_END_DECL()
22
23 namespace simgrid {
24 namespace mc {
25
26 extern XBT_PRIVATE xbt_automaton_t property_automaton;
27
28 struct XBT_PRIVATE Pair {
29   int num = 0;
30   int search_cycle = 0;
31   mc_state_t graph_state = nullptr; /* System state included */
32   xbt_automaton_state_t automaton_state = nullptr;
33   xbt_dynar_t atomic_propositions = nullptr;
34   int requests = 0;
35   int depth = 0;
36   int exploration_started = 0;
37   int visited_pair_removed = 0;
38
39   Pair();
40   ~Pair();
41
42   Pair(Pair const&) = delete;
43   Pair& operator=(Pair const&) = delete;
44 };
45
46 struct XBT_PRIVATE VisitedPair {
47   int num;
48   int other_num; /* Dot output for */
49   int acceptance_pair;
50   mc_state_t graph_state; /* System state included */
51   xbt_automaton_state_t automaton_state;
52   xbt_dynar_t atomic_propositions;
53   size_t heap_bytes_used;
54   int nb_processes;
55   int acceptance_removed;
56   int visited_removed;
57 };
58
59 XBT_PRIVATE simgrid::mc::VisitedPair* visited_pair_new(int pair_num, xbt_automaton_state_t automaton_state, xbt_dynar_t atomic_propositions, mc_state_t graph_state);
60 XBT_PRIVATE void visited_pair_delete(simgrid::mc::VisitedPair* p);
61
62 int modelcheck_liveness(void);
63 XBT_PRIVATE void show_stack_liveness(xbt_fifo_t stack);
64 XBT_PRIVATE void dump_stack_liveness(xbt_fifo_t stack);
65
66 XBT_PRIVATE extern xbt_dynar_t visited_pairs;
67 XBT_PRIVATE int is_visited_pair(simgrid::mc::VisitedPair* visited_pair, simgrid::mc::Pair* pair);
68
69 }
70 }
71
72 #endif