Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rearrange lua example in separate simulation component files
[simgrid.git] / examples / lua / multi_matrix / mult_matrix.lua
1 dofile 'sender.lua'
2 dofile 'receiver.lua'
3 require "simgrid"
4 simgrid.platform("quicksort_platform.xml")
5 simgrid.application("quicksort_deployment.xml")
6 simgrid.run()
7 simgrid.info("Simulation's over.See you.")
8 simgrid.clean()
9
10
11