Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix few typos and add random seed intializer
[simgrid.git] / examples / cpp / dag-from-json-simple / s4u-dag-from-json-simple.cpp
1 /* Copyright (c) 2003-2023. 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 XBT_LOG_NEW_DEFAULT_CATEGORY(dag_from_json_simple, "Messages specific for this s4u example");
9
10 int main(int argc, char* argv[])
11 {
12   simgrid::s4u::Engine e(&argc, argv);
13   e.load_platform(argv[1]);
14
15   std::vector<simgrid::s4u::ActivityPtr> dag = simgrid::s4u::create_DAG_from_json(argv[2]);
16
17   simgrid::s4u::Activity::on_completion_cb([](simgrid::s4u::Activity const& activity) {
18     XBT_INFO("Activity '%s' is complete (start time: %f, finish time: %f)", activity.get_cname(),
19              activity.get_start_time(), activity.get_finish_time());
20   });
21
22   e.run();
23   return 0;
24 }