]> AND Public Git Repository - simgrid.git/blobdiff - examples/lua/console/platform.lua
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[Lua] Removed lua simulation support
[simgrid.git] / examples / lua / console / platform.lua
diff --git a/examples/lua/console/platform.lua b/examples/lua/console/platform.lua
deleted file mode 100644 (file)
index 6e0f88b..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-
-simgrid.platf.open();
-
-simgrid.platf.AS_open{id="AS0",mode="Full"}; 
-
-simgrid.platf.host_new{id="Tremblay",power=98095000};
-simgrid.platf.host_new{id="Jupiter",power=76296000};
-simgrid.platf.host_new{id="Fafard",power=76296000};
-simgrid.platf.host_new{id="Ginette",power=48492000};
-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};  
-end
-
-simgrid.platf.route_new{src="Tremblay",dest="Jupiter",links="1"};
-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="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="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();
-