X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/46bc1a527aab33a964a846974ea6e310f64bc29b..84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6:/examples/platforms/cluster_prototype.lua?ds=sidebyside diff --git a/examples/platforms/cluster_prototype.lua b/examples/platforms/cluster_prototype.lua index b198e12c0f..e95fbd2a01 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-2020. 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, @@ -62,6 +62,6 @@ lat="50us", 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();