Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a122ad20ab20c8b89980eb5469e62efb39751b2b
[simgrid.git] / examples / s4u / trace-platform / s4u-trace-platform.cpp
1 /* Copyright (c) 2010-2018. 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 /* This source code simply loads the platform. This is only useful to play
7  * with the tracing module. See the tesh file to see how to generate the
8  * traces.
9  */
10
11 #include "simgrid/s4u.hpp"
12
13 int main(int argc, char* argv[])
14 {
15   simgrid::s4u::Engine e(&argc, argv);
16   e.loadPlatform(argv[1]);
17   e.run();
18   return 0;
19 }