Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Implement MPI_IN_PLACE behavior for collectives
[simgrid.git] / examples / lua / masterslave / master_slave.lua
index 7057c2f..2aeb917 100644 (file)
@@ -4,13 +4,8 @@ dofile 'slave.lua'
 
 require "simgrid"
 
-if (#arg == 2) then
-  simgrid.platform(arg[1])
-  simgrid.application(arg[2])
-else
-  simgrid.platform("../../msg/small_platform.xml")
-  simgrid.application("../deploy.xml")
-end
+simgrid.platform(arg[1])
+simgrid.application(arg[2])
 simgrid.run()
-simgrid.info("Simulation's over.See you.")
-
+simgrid.info("Simulation's over. See you.")
+-- end-of-master-slave