Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[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::Exec::on_completion_cb([](simgrid::s4u::Exec const& exec) {
18     XBT_INFO("Exec '%s' is complete (start time: %f, finish time: %f)", exec.get_cname(),
19              exec.get_start_time(), exec.get_finish_time());
20   });
21
22   simgrid::s4u::Comm::on_completion_cb([](simgrid::s4u::Comm const& comm) {
23     XBT_INFO("Comm '%s' is complete (start time: %f, finish time: %f)", comm.get_cname(),
24              comm.get_start_time(), comm.get_finish_time());
25   });
26
27   e.run();
28   return 0;
29 }