Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rearrange lua example in separate simulation component files
[simgrid.git] / examples / lua / master_slave.lua
index 652d34e..9c28bd0 100644 (file)
@@ -11,10 +11,6 @@ comp_size = arg[2];
 comm_size = arg[3];
 slave_count = arg[4]
 
-A = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}
-
---print (A[1][3])
-
 if (#arg ~= 4) then
     error("Argc should be 4");
 end
@@ -77,7 +73,7 @@ simgrid.platform(arg[1])
 simgrid.application(arg[2])
 else
 simgrid.platform("../msg/small_platform.xml")
-simgrid.application("../ruby/deploy.xml")
+simgrid.application("deploy.xml")
 end
 simgrid.run()
 simgrid.info("Simulation's over.See you.")