Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move a public header in the simgrid/ directory to fight the namespace polution
[simgrid.git] / examples / msg / mc / bugged1_stateful.c
index d76edba..4bf0381 100644 (file)
@@ -4,7 +4,7 @@
 /******************************************************************************/
 
 #include <msg/msg.h>
-#include <mc/modelchecker.h>
+#include <simgrid/modelchecker.h>
 #define N 3
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(example, "this example");
@@ -45,7 +45,7 @@ int client(int argc, char *argv[])
 
 int main(int argc, char *argv[])
 {
-
+   
   MSG_global_init(&argc, argv);
 
   MSG_create_environment("platform.xml");
@@ -57,9 +57,9 @@ int main(int argc, char *argv[])
   MSG_launch_application("deploy_bugged1.xml");
 
   MSG_main_stateful();
-
+  
   MSG_clean();
-
+   
   return 0;
 
 }