X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..2092a7784bc5241f42fdb17432b6b5b393b9b33d:/examples/platforms/cluster_prototype.lua diff --git a/examples/platforms/cluster_prototype.lua b/examples/platforms/cluster_prototype.lua index 51f4dc48a6..0d6e816619 100644 --- a/examples/platforms/cluster_prototype.lua +++ b/examples/platforms/cluster_prototype.lua @@ -1,4 +1,4 @@ --- Copyright (c) 2011-2016. The SimGrid Team. +-- Copyright (c) 2011-2019. The SimGrid Team. -- All rights reserved. -- This program is free software; you can redistribute it and/or modify it @@ -52,7 +52,7 @@ end simgrid.engine.open(); - cluster_factory = my_cluster{prefix="node-", suffix=".acme.org", radical=seq(0,262144), host_factory = function(hostno) + cluster_factory = my_cluster{prefix="node-", suffix=".simgrid.org", radical=seq(0,262144), host_factory = function(hostno) if hostno % 2 == 0 then return "blabla" end if hostno % 2 == 1 then return "blublub" end end, @@ -60,8 +60,8 @@ id="AS0", bw="125MBps", lat="50us", - sharing_sharing_policy="FULLDUPLEX" + sharing_sharing_policy="SPLITDUPLEX" }() - --my_cluster{prefix="node2-", suffix=".acme.org", radical=seq(0,44) } + --my_cluster{prefix="node2-", suffix=".simgrid.org", radical=seq(0,44) } simgrid.engine.close();