49#ifndef DOXYGEN_SHOULD_SKIP_THIS
58 while (
_lock_flag_.test_and_set(std::memory_order_acquire)) {}
69 for (
NodeId i = 0; i < nb_nodes; ++i) {
76 if (!
_graph_.existsNode(x) || !
_graph_.existsNode(y))
return false;
86 bool result =
_graph_.existsArc(x, y);
110 if (
_graph_.existsArc(node1, node2) &&
_graph_.existsArc(node1, node3)
111 &&
_graph_.existsArc(node2, node3)) {
134 if (
_graph_.existsArc(node1, node2) &&
_graph_.existsArc(node1, node3)
135 &&
_graph_.existsArc(node2, node3)) {
178 _graph_.addArc(change.node1(), change.node2());
185 _graph_.eraseArc(
Arc(change.node1(), change.node2()));
192 _graph_.eraseArc(
Arc(change.node1(), change.node2()));
193 _graph_.addArc(change.node2(), change.node1());
200 _graph_.eraseArc(
Arc(change.node1(), change.node2()));
201 _graph_.eraseArc(
Arc(change.node1(), change.node3()));
202 _graph_.eraseArc(
Arc(change.node2(), change.node3()));
203 _graph_.addArc(change.node2(), change.node1());
204 _graph_.addArc(change.node3(), change.node1());
211 _graph_.eraseArc(
Arc(change.node1(), change.node3()));
212 _graph_.eraseArc(
Arc(change.node2(), change.node3()));
213 _graph_.addArc(change.node3(), change.node2());
231# define GUM_CONSTRAINT_CLASS_NAME StructuralConstraintDAG
233# undef GUM_CONSTRAINT_CLASS_NAME
The class for notifying learning algorithms of new arc additions.
The class for notifying learning algorithms of arc removals.
The class for notifying learning algorithms of arc reversals.
The graph change substituting a triangle node1->node2->node3 + node1->node3 into v-structure node2->n...
The graph change substituting a triangle node1->node2->node3 + node1->node3 into v-structure node1->n...
void _unlock_() const
the methode to release a critical region used to modify graph
bool isAlwaysInvalidAlone(const GraphChange &change) const
indicates whether a change will always violate the constraint
void setGraph(const DAG &graph)
sets a new graph from which we will perform checking
void modifyGraphAlone(const ArcAddition &change)
notify the constraint of a modification of the graph
bool checkArcAdditionAlone(NodeId x, NodeId y) const
checks whether the constraints enable to add arc (x,y)
bool checkArcReversalAlone(NodeId x, NodeId y) const
checks whether the constraints enable to reverse arc (x,y)
bool checkModificationAlone(const ArcAddition &change) const
checks whether the constraints enable to add an arc
void setGraphAlone(const DiGraph &graph)
sets a new graph from which we will perform checking
bool checkArcTriangleDeletion1Alone(NodeId node1, NodeId node2, NodeId node3) const
checks whether the constraints enable to apply an ArcTriangleDeletion1
void _lock_() const
the method to lock a critical region in order to modify graph
bool checkArcTriangleDeletion2Alone(NodeId node1, NodeId node2, NodeId node3) const
checks whether the constraints enable to apply an ArcTriangleDeletion2
std::atomic_flag _lock_flag_
bool checkArcDeletionAlone(NodeId x, NodeId y) const
checks whether the constraints enable to remove arc (x,y)
std::size_t Size
In aGrUM, hashed values are unsigned long int.
Size NodeId
Type for node ids.
bool hasDirectedPath(const G &g, NodeId from, NodeId to)
Returns true if there is a directed path from from to to.
include the inlined functions if necessary
Generic BFS-based path-finding algorithms for aGrUM graphs.
the base class for structural constraints imposed by DAGs