Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : prototypes of static functions moved
authorMarion Guthmuller <marion.guthmuller@loria.fr>
Thu, 12 Jan 2012 08:50:44 +0000 (09:50 +0100)
committerMarion Guthmuller <marion.guthmuller@loria.fr>
Thu, 12 Jan 2012 08:50:44 +0000 (09:50 +0100)
src/include/mc/mc.h
src/mc/mc_global.c

index abe55fa..2e9fc0f 100644 (file)
@@ -28,12 +28,10 @@ SG_BEGIN_DECL()
 /********************************* Global *************************************/
 XBT_PUBLIC(void) MC_init_safety_stateless(void);
 XBT_PUBLIC(void) MC_init_safety_stateful(void);
 /********************************* Global *************************************/
 XBT_PUBLIC(void) MC_init_safety_stateless(void);
 XBT_PUBLIC(void) MC_init_safety_stateful(void);
-XBT_PUBLIC(void) MC_init_liveness(xbt_automaton_t a, char *prgm);
 XBT_PUBLIC(void) MC_exit(void);
 XBT_PUBLIC(void) MC_exit_liveness(void);
 XBT_PUBLIC(void) MC_assert(int);
 XBT_PUBLIC(void) MC_assert_stateful(int);
 XBT_PUBLIC(void) MC_exit(void);
 XBT_PUBLIC(void) MC_exit_liveness(void);
 XBT_PUBLIC(void) MC_assert(int);
 XBT_PUBLIC(void) MC_assert_stateful(int);
-XBT_PUBLIC(void) MC_assert_pair(int);
 XBT_PUBLIC(void) MC_modelcheck(void);
 XBT_PUBLIC(void) MC_modelcheck_stateful(void);
 XBT_PUBLIC(void) MC_modelcheck_liveness(xbt_automaton_t a, char *prgm);
 XBT_PUBLIC(void) MC_modelcheck(void);
 XBT_PUBLIC(void) MC_modelcheck_stateful(void);
 XBT_PUBLIC(void) MC_modelcheck_liveness(xbt_automaton_t a, char *prgm);
index 89ac9b9..a1953a4 100644 (file)
@@ -34,6 +34,10 @@ mc_snapshot_t initial_snapshot_liveness = NULL;
 xbt_automaton_t automaton;
 char *prog_name;
 
 xbt_automaton_t automaton;
 char *prog_name;
 
+static void MC_init_liveness(xbt_automaton_t a, char *prgm);
+static void MC_assert_pair(int prop);
+
+
 /**
  *  \brief Initialize the model-checker data structures
  */
 /**
  *  \brief Initialize the model-checker data structures
  */