Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
easily please sonar
[simgrid.git] / include / simgrid / modelchecker.h
1 /* simgrid/modelchecker.h - Formal Verification made possible in SimGrid    */
2
3 /* Copyright (c) 2008-2015. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 /** \file modelchecker.h
10  *
11  *  This is the API used by the user simulated program to communicate
12  *  with the MC.
13  */
14
15 #ifndef SIMGRID_MODELCHECKER_H
16 #define SIMGRID_MODELCHECKER_H
17
18 #include <stdbool.h>
19
20 #include <simgrid_config.h> /* HAVE_MC ? */
21
22 #include <xbt/base.h>
23
24 SG_BEGIN_DECL()
25
26 XBT_PUBLIC(int) MC_random(int min, int max);
27
28 #if HAVE_MC
29
30 /* Internal variable used to check if we're running under the MC
31  *
32  * Please don't use directly: you should use MC_is_active. */
33 extern XBT_PUBLIC(int) _sg_do_model_check;
34 extern XBT_PUBLIC(int) _sg_mc_max_visited_states;
35
36 #define MC_is_active()                  _sg_do_model_check
37 #define MC_visited_reduction() _sg_mc_max_visited_states
38
39 /** Assertion for the model-checker
40  *
41  *  This function is used to define safety properties to verify.
42  */
43 XBT_PUBLIC(void) MC_assert(int);
44
45 XBT_PUBLIC(void) MC_automaton_new_propositional_symbol(const char* id, int(*fct)(void));
46 XBT_PUBLIC(void) MC_automaton_new_propositional_symbol_pointer(const char *id, int* value);
47
48 XBT_PUBLIC(void) MC_cut(void);
49 XBT_PUBLIC(void) MC_ignore(void *addr, size_t size);
50
51 #else
52
53 #define MC_is_active()                  0
54 #define MC_visited_reduction()          0
55
56 #define MC_assert(a)                    xbt_assert(a)
57 #define MC_automaton_new_propositional_symbol(a, b) ((void)0)
58 #define MC_automaton_new_propositional_symbol_pointer(a, b) ((void)0)
59 #define MC_cut()                        ((void)0)
60 #define MC_ignore(a, b)                 ((void)0)
61
62 #endif
63
64 SG_END_DECL()
65
66 #endif /* SIMGRID_MODELCHECKER_H */