Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add tests for the Unfolding object
[simgrid.git] / src / mc / explo / udpor / Configuration.cpp
1 /* Copyright (c) 2008-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 "src/mc/explo/udpor/Configuration.hpp"
7
8 namespace simgrid::mc::udpor {
9
10 void Configuration::add_event(UnfoldingEvent* e)
11 {
12   this->events_.insert(e);
13   this->newest_event = e;
14
15   // TODO: Re-compute the maxmimal events
16 }
17
18 } // namespace simgrid::mc::udpor