Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Various cleanups to the model-checking user interface
[simgrid.git] / src / msg / msg_global.c
index 243057c..681bdef 100644 (file)
@@ -117,30 +117,15 @@ MSG_error_t MSG_main(void)
   return MSG_OK;
 }
 
-MSG_error_t MSG_main_stateful(void)
-{
-  /* Clean IO before the run */
-  fflush(stdout);
-  fflush(stderr);
-
-  if (MC_IS_ENABLED) {
-    MC_modelcheck_stateful();
-  }
-  else {
-    SIMIX_run();
-  }
-  return MSG_OK;
-}
-
 
-MSG_error_t MSG_main_liveness(xbt_automaton_t a)
+MSG_error_t MSG_main_liveness()
 {
   /* Clean IO before the run */
   fflush(stdout);
   fflush(stderr);
 
   if (MC_IS_ENABLED) {
-    MC_modelcheck_liveness(a);
+    MC_modelcheck_liveness();
   }
   else {
     SIMIX_run();