Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update python/clusters-multicpu to the new API.
[simgrid.git] / examples / cpp / actor-kill / s4u-actor-kill.cpp
index 9b8d86ee5b79e6128cd880fc561d7788f16e9516..1fc159836883e340a3168e886ba5d5086a9efe31 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2017-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2017-2023. 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. */
@@ -67,7 +67,7 @@ int main(int argc, char* argv[])
 
   e.load_platform(argv[1]); /* - Load the platform description */
   /* - Create and deploy killer actor, that will create the victim actors  */
-  sg4::Actor::create("killer", sg4::Host::by_name("Tremblay"), killer);
+  sg4::Actor::create("killer", e.host_by_name("Tremblay"), killer);
 
   e.run(); /* - Run the simulation */