Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
sed -i -e 's/\t/ /g' [sources] Please people, stop using tabs
[simgrid.git] / src / s4u / s4u_engine.cpp
index dc22416..3e2e284 100644 (file)
@@ -13,31 +13,31 @@ XBT_LOG_NEW_CATEGORY(s4u,"Log channels of the S4U (Simgrid for you) interface");
 using namespace simgrid;
 
 double s4u::Engine::getClock() {
-       return SIMIX_get_clock();
+  return SIMIX_get_clock();
 }
 
 s4u::Engine::Engine(int *argc, char **argv) {
-       SIMIX_global_init(argc, argv);
+  SIMIX_global_init(argc, argv);
 }
 
 void s4u::Engine::loadPlatform(const char *platf) {
-       SIMIX_create_environment(platf);
+  SIMIX_create_environment(platf);
 }
 
 void s4u::Engine::register_function(const char*name, int (*code)(int,char**)) {
-       SIMIX_function_register(name,code);
+  SIMIX_function_register(name,code);
 }
 void s4u::Engine::register_default(int (*code)(int,char**)) {
-       SIMIX_function_register_default(code);
+  SIMIX_function_register_default(code);
 }
 void s4u::Engine::loadDeployment(const char *deploy) {
-       SIMIX_launch_application(deploy);
+  SIMIX_launch_application(deploy);
 }
 
 void s4u::Engine::run() {
-       if (MC_is_active()) {
-               MC_run();
-       } else {
-               SIMIX_run();
-       }
+  if (MC_is_active()) {
+    MC_run();
+  } else {
+    SIMIX_run();
+  }
 }