Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Clean the code of Lua examples.
[simgrid.git] / examples / lua / masterslave / master_slave.lua
index 2d32e52..b2b0f60 100644 (file)
@@ -3,12 +3,13 @@ dofile 'slave.lua'
 -- Simulation Code ----------------------------------------------------------
 
 require "simgrid"
+
 if (#arg == 2) then
-simgrid.platform(arg[1])
-simgrid.application(arg[2])
+  simgrid.platform(arg[1])
+  simgrid.application(arg[2])
 else
-simgrid.platform("../../msg/small_platform.xml")
-simgrid.application("../deploy.xml")
+  simgrid.platform("../../msg/small_platform.xml")
+  simgrid.application("../deploy.xml")
 end
 simgrid.run()
 simgrid.info("Simulation's over.See you.")