Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
misleading typo in the comments
[simgrid.git] / examples / lua / multi_matrix / mult_matrix.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 'sender.lua'
8 dofile 'receiver.lua'
9 require "simgrid"
10
11 simgrid.platform("../../platforms/small_platform.xml")
12 simgrid.application("quicksort_deployment.xml")
13 simgrid.run()
14 simgrid.info("Simulation's over.See you.")
15