Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add xbt_assert() for state handle overflow
[simgrid.git] / src / mc / explo / udpor / UnfoldingEvent.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/UnfoldingEvent.hpp"
7
8 namespace simgrid::mc::udpor {
9
10 UnfoldingEvent::UnfoldingEvent(unsigned int nb_events, std::string const& trans_tag, EventSet const& immediate_causes)
11     : UnfoldingEvent(nb_events, trans_tag, immediate_causes, 0)
12 {
13   // TODO: Implement this correctly
14 }
15
16 UnfoldingEvent::UnfoldingEvent(unsigned int nb_events, std::string const& trans_tag, EventSet const& immediate_causes,
17                                StateHandle sid)
18 {
19   // TODO: Implement this
20 }
21
22 bool UnfoldingEvent::operator==(const UnfoldingEvent&) const
23 {
24   // TODO: Implement semantic equality
25   return false;
26 }
27
28 } // namespace simgrid::mc::udpor