Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'mc' into mc++
[simgrid.git] / examples / lua / SimSplay / splay_school.lua
index 51cd58c..e740dd5 100644 (file)
@@ -1,11 +1,17 @@
+-- Copyright (c) 2011, 2014. The SimGrid Team.
+-- All rights reserved.
+
+-- This program is free software; you can redistribute it and/or modify it
+-- under the terms of the license (GNU LGPL) which comes with this package.
+
 require("sim_splay")
 
 function SPLAYschool()
   log:print("My ip is: "..job.me.ip())
-  for i = 1000,10000 do
+  for i = 1,200 do
     log:print(i)
   end
-
+--[[
   events.sleep(5)
 
   if job.me.ip() == job.nodes[1].ip then
@@ -13,6 +19,7 @@ function SPLAYschool()
   end
   events.sleep(5)
   os.exit()
+  --]]
 end
 
 function call_me(from)
@@ -21,4 +28,5 @@ end
 
 events.thread("SPLAYschool")
 start.loop()
+log:print("Simulation finished")