From 806625c41d2c9ac825d3511f70294a6c0eeaa835 Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Mon, 9 Feb 2015 16:02:26 +0100 Subject: [PATCH] Fixed examples/lua/console/platform.lua We may consider removing this file in favor of examples/platforms/small_platform.lua --- examples/lua/console/platform.lua | 34 +++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/examples/lua/console/platform.lua b/examples/lua/console/platform.lua index b38d3ce64e..be57b8e0ff 100644 --- a/examples/lua/console/platform.lua +++ b/examples/lua/console/platform.lua @@ -6,7 +6,7 @@ simgrid.platf.open(); -simgrid.platf.AS_open{id="AS0",mode="Full"}; +simgrid.platf.AS_open{id="AS0",mode="Full"}; simgrid.platf.host_new{id="Tremblay",power=98095000}; simgrid.platf.host_new{id="Jupiter",power=76296000}; @@ -16,7 +16,7 @@ simgrid.platf.host_new{id="Bourassa",power=48492000}; -- create Links for i=10,0,-1 do - simgrid.platf.link_new{id=i,bandwidth=252750+ i*768,latency=0.000270544+i*0.087}; + simgrid.platf.link_new{id=i,bandwidth=252750+ i*768,latency=0.000270544+i*0.087}; end simgrid.platf.route_new{src="Tremblay",dest="Jupiter",links="1"}; @@ -24,26 +24,26 @@ simgrid.platf.route_new{src="Tremblay",dest="Fafard",links="0,1,2,3,4,8"}; simgrid.platf.route_new{src="Tremblay",dest="Ginette",links="3,4,5"}; simgrid.platf.route_new{src="Tremblay",dest="Bourassa",links="0,1,3,2,4,6,7"}; -simgrid.platf.route_new{src="Jupiter",dest="Tremblay",links="1"}; +--simgrid.platf.route_new{src="Jupiter",dest="Tremblay",links="1"}; +simgrid.platf.route_new{src="Jupiter",dest="Bourassa",links="0,1,2,3,4,6,7,9"}; simgrid.platf.route_new{src="Jupiter",dest="Fafard",links="0,1,2,3,4,8,9"}; simgrid.platf.route_new{src="Jupiter",dest="Ginette",links="3,4,5,9"}; -simgrid.platf.route_new{src="Jupiter",dest="Bourassa",links="0,1,2,3,4,6,7,9"}; - -simgrid.platf.route_new{src="Fafard",dest="Tremblay",links="0,1,2,3,4,8"}; -simgrid.platf.route_new{src="Fafard",dest="Jupiter",links="0,1,2,3,4,8,9"}; + simgrid.platf.route_new{src="Fafard",dest="Ginette",links="0,1,2,5,8"}; simgrid.platf.route_new{src="Fafard",dest="Bourassa",links="6,7,8"}; - -simgrid.platf.route_new{src="Ginette",dest="Tremblay",links="3,4,5"}; -simgrid.platf.route_new{src="Ginette",dest="Jupiter",links="3,4,5,9"}; -simgrid.platf.route_new{src="Ginette",dest="Fafard",links="0,1,2,5,8"}; -simgrid.platf.route_new{src="Ginette",dest="Bourassa",links="0,1,2,5,6,7"}; +--simgrid.platf.route_new{src="Fafard",dest="Tremblay",links="0,1,2,3,4,8"}; +--simgrid.platf.route_new{src="Fafard",dest="Jupiter",links="0,1,2,3,4,8,9"}; -simgrid.platf.route_new{src="Bourassa",dest="Tremblay",links="0,1,3,2,4,6,7"}; -simgrid.platf.route_new{src="Bourassa",dest="Jupiter",links="0,1,2,3,4,6,7,9"}; -simgrid.platf.route_new{src="Bourassa",dest="Fafard",links="6,7,8"}; -simgrid.platf.route_new{src="Bourassa",dest="Ginette",links="0,1,2,5,6,7"}; +simgrid.platf.route_new{src="Ginette",dest="Bourassa",links="0,1,2,5,6,7"}; +--simgrid.platf.route_new{src="Ginette",dest="Tremblay",links="3,4,5"}; +--simgrid.platf.route_new{src="Ginette",dest="Jupiter",links="3,4,5,9"}; +--simgrid.platf.route_new{src="Ginette",dest="Fafard",links="0,1,2,5,8"}; + +--simgrid.platf.route_new{src="Bourassa",dest="Tremblay",links="0,1,3,2,4,6,7"}; +--simgrid.platf.route_new{src="Bourassa",dest="Jupiter",links="0,1,2,3,4,6,7,9"}; +--simgrid.platf.route_new{src="Bourassa",dest="Fafard",links="6,7,8"}; +--simgrid.platf.route_new{src="Bourassa",dest="Ginette",links="0,1,2,5,6,7"}; simgrid.platf.AS_close(); simgrid.platf.close(); - + -- 2.20.1