]> AND Public Git Repository - simgrid.git/blobdiff - src/mc/private.h
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : DPOR (independant transitions) algorithm for liveness properties
[simgrid.git] / src / mc / private.h
index 02c10df81758b427a9ec49fd89a4c8f50a92137a..fc931b6335e0c9d641936b079dbe90f410a1d57d 100644 (file)
@@ -220,7 +220,7 @@ void set_pair_visited(mc_pair_t p, int search_cycle);
 int visited(mc_pair_t p, int search_cycle);
 
 
-/* **** DPOR with restore snapshot **** */
+/* **** DPOR Cristian with restore snapshot **** */
 
 typedef struct s_mc_state_with_snapshot{
   mc_snapshot_t system_state;
@@ -231,4 +231,10 @@ mc_state_ws_t new_state_ws(mc_snapshot_t s, mc_state_t gs);
 void MC_dpor_with_restore_snapshot_init(void);
 void MC_dpor_with_restore_snapshot(void);
 
+/* **** DPOR 2 (invisible and independant transitions) **** */
+
+
+void MC_dpor2_init(xbt_automaton_t a);
+void MC_dpor2(xbt_automaton_t a, int search_cycle);
+
 #endif