Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
5c8007c961800e075faf3758eb6f3f73297966d1
[simgrid.git] / examples / lua / splaySim / splay_ctrl.lua
1
2 -- Simulation Code ----------------------------------------------------------
3
4 require "simgrid"
5 if (#arg == 2) then
6         dofile (arg[1])
7         dofile (arg[2])
8 else
9         dofile "splay_platform.lua"
10         dofile "splay_deploy_masterslave.lua"
11 end
12
13 simgrid.run()
14 simgrid.info("Simulation's over.See you.")
15 simgrid.clean()
16