Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
00f28fcbdfdbd1ae9723249e386dff9f2d9bc60e
[simgrid.git] / src / mc / explo / udpor / CompatibilityGraphNode.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/CompatibilityGraphNode.hpp"
7
8 #include <algorithm>
9 #include <numeric>
10
11 namespace simgrid::mc::udpor {
12
13 CompatibilityGraphNode::CompatibilityGraphNode(std::unordered_set<CompatibilityGraphNode*> conflicts, EventSet events_)
14     : conflicts(std::move(conflicts)), events_(std::move(events_))
15 {
16 }
17
18 } // namespace simgrid::mc::udpor