Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mv trace-platform from MSG to S4U
[simgrid.git] / examples / s4u / trace-platform / s4u-trace-platform.cpp
1 /* Copyright (c) 2010, 2012-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 "simgrid/s4u.hpp"
7
8 int main(int argc, char* argv[])
9 {
10   simgrid::s4u::Engine e(&argc, argv);
11   e.loadPlatform(argv[1]);
12   e.run();
13   return 0;
14 }