Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : separate informations for safety stateful/stateless and liveness...
[simgrid.git] / examples / msg / mc / example_automaton.c
index 62fc3cf..deb1129 100644 (file)
@@ -59,7 +59,7 @@ int server(int argc, char *argv[])
     //XBT_INFO("r (server) = %d", r);
      
   }
-  MC_assert_pair(atoi(MSG_task_get_name(task)) == 3);
+  MC_assert_pair_stateful(atoi(MSG_task_get_name(task)) == 3);
 
   XBT_INFO("OK");
   return 0;
@@ -108,7 +108,7 @@ int main(int argc, char **argv){
   
   //XBT_INFO("r=%d", r);
   
-  MSG_main_with_automaton(automaton);
+  MSG_main_liveness_stateful(automaton);
 
   MSG_clean();