X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5f4329821ed097d617ccb739e1dd1b22caaadf92..ea74f5d95928a521a588737e81f1de94eef25d19:/src/kernel/routing/NetPoint.cpp diff --git a/src/kernel/routing/NetPoint.cpp b/src/kernel/routing/NetPoint.cpp index 14c4c70d95..2a0aeef5fc 100644 --- a/src/kernel/routing/NetPoint.cpp +++ b/src/kernel/routing/NetPoint.cpp @@ -1,9 +1,10 @@ -/* Copyright (c) 2009-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2009-2022. 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. */ #include "simgrid/kernel/routing/NetPoint.hpp" +#include "simgrid/kernel/routing/VivaldiZone.hpp" #include "simgrid/s4u/Engine.hpp" #include "simgrid/s4u/Host.hpp" #include "xbt/log.h" @@ -33,6 +34,12 @@ NetPoint* NetPoint::set_englobing_zone(NetZoneImpl* netzone_p) return this; } +NetPoint* NetPoint::set_coordinates(const std::string& coords) +{ + if (not coords.empty()) + new vivaldi::Coords(this, coords); + return this; +} } // namespace routing } // namespace kernel } // namespace simgrid