Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add predicate filtering to compatibility graph comp
[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 namespace simgrid::mc::udpor {
9
10 CompatibilityGraphNode::CompatibilityGraphNode(std::unordered_set<CompatibilityGraphNode*> conflicts, EventSet events_)
11     : conflicts(std::move(conflicts)), events_(std::move(events_))
12 {
13 }
14
15 } // namespace simgrid::mc::udpor