Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add first implementations of History class
[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(EventSet immediate_causes, std::shared_ptr<Transition> transition)
11     : associated_transition(std::move(transition)), immediate_causes(std::move(immediate_causes))
12 {
13 }
14
15 bool UnfoldingEvent::operator==(const UnfoldingEvent& other) const
16 {
17   const bool same_actor = associated_transition->aid_ == other.associated_transition->aid_;
18   if (!same_actor)
19     return false;
20
21   // TODO: Add in information to determine which step in the sequence this actor was executed
22
23   // All unfolding event objects are created in reference to
24   // an Unfolding object which owns them. Hence, the references
25   // they contain to other events in the unvolding can
26   // be used as intrinsic identities (i.e. we don't need to
27   // recursively check if each of our causes has a `==` in
28   // the other event's causes)
29   return this->immediate_causes == other.immediate_causes;
30 }
31
32 } // namespace simgrid::mc::udpor