Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[Lua5.3] Updated lua/bittorent test to reflect changes
[simgrid.git] / examples / lua / bittorrent / bittorrent.lua
index 6631d43..0570ef0 100644 (file)
@@ -7,10 +7,13 @@
 -- A SimGrid Lua implementation of the Bittorrent protocol.
 
 require("simgrid")
-       
+
 require("peer")
 require("tracker")
 
-simgrid.platform(arg[1] or  "../../msg/msg_platform.xml")
-simgrid.application(arg[2] or "bittorrent.xml")
-simgrid.run()
\ No newline at end of file
+-- Initialization of the random generator
+table.sort(math)
+math.randomseed(42)
+simgrid.platform("../../platforms/platform.xml")
+simgrid.application("bittorrent.xml")
+simgrid.run()