Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7ee0a432c4a0831c9a288a6750602bf4babb4dbe
[simgrid.git] / examples / s4u / basic / s4u_basic.cpp
1 /* Copyright (c) 2006-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <xbt/sysdep.h>
7
8 #include <simgrid/s4u.h>
9
10 #include "s4u_basic.h"
11
12 int main(int argc, char **argv) {
13   simgrid::s4u::Engine *e = new simgrid::s4u::Engine(&argc,argv);
14   e->loadPlatform("../../platforms/two_hosts.xml");
15   simgrid::s4u::Actor::createActor("worker", simgrid::s4u::Host::by_name("Tremblay"), Worker());
16   simgrid::s4u::Actor::createActor("master", simgrid::s4u::Host::by_name("Jupiter"), Master());
17   e->run();
18   return 0;
19 }