Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add/update copyright notices.
[simgrid.git] / examples / lua / masterslave / master_slave.lua
1 -- Copyright (c) 2011-2014. The SimGrid Team.
2 -- All rights reserved.
3
4 -- This program is free software; you can redistribute it and/or modify it
5 -- under the terms of the license (GNU LGPL) which comes with this package.
6
7 dofile 'master.lua'
8 dofile 'slave.lua'
9 -- Simulation Code ----------------------------------------------------------
10
11 require "simgrid"
12
13 simgrid.platform(arg[1])
14 simgrid.application(arg[2])
15 simgrid.run()
16 simgrid.info("Simulation's over. See you.")
17 -- end-of-master-slave