aGrUM 2.3.2
a C++ library for (probabilistic) graphical models
gum::learning::StructuralConstraintUndiGraph Class Reference

The base class for structural constraints used by learning algorithms that learn an undirected graph structure. More...

#include <structuralConstraintUndiGraph.h>

Inheritance diagram for gum::learning::StructuralConstraintUndiGraph:
Collaboration diagram for gum::learning::StructuralConstraintUndiGraph:

Public Types

using allConstraints = _ConstraintSet_< void >

Public Member Functions

Constructors / Destructors
 StructuralConstraintUndiGraph ()
 default constructor
 StructuralConstraintUndiGraph (Size nb_nodes)
 constructor starting with an empty graph with a given number of nodes
 StructuralConstraintUndiGraph (const UndiGraph &graph)
 constructor starting with a given graph
 StructuralConstraintUndiGraph (const StructuralConstraintUndiGraph &from)
 copy constructor
 StructuralConstraintUndiGraph (StructuralConstraintUndiGraph &&from)
 move constructor
virtual ~StructuralConstraintUndiGraph ()
 destructor
Operators
StructuralConstraintUndiGraphoperator= (const StructuralConstraintUndiGraph &from)
 copy operator
StructuralConstraintUndiGraphoperator= (StructuralConstraintUndiGraph &&from)
 move operator
Specific Accessors / Modifiers
void setGraph (Size nb_nodes)
 sets a new empty graph from which we will perform checkings
void setGraphAlone (const UndiGraph &graph)
 sets a new graph from which we will perform checkings
void modifyGraphAlone (const EdgeAddition &change)
 notify the constraint of a modification of the graph
void modifyGraphAlone (const EdgeDeletion &change)
 notify the constraint of a modification of the graph
void modifyGraphAlone (const GraphChange &change)
 notify the constraint of a modification of the graph
bool isAlwaysInvalidAlone (const GraphChange &change) const
 indicates whether a change will always violate the constraint
bool checkEdgeAdditionAlone (NodeId x, NodeId y) const
 checks whether the constraints enable to add edge (x,y)
bool checkEdgeDeletionAlone (NodeId x, NodeId y) const
 checks whether the constraints enable to remove edge (x,y)
bool checkModificationAlone (const GraphChange &change) const
 checks whether the constraints enable to perform a graph change
bool checkModificationAlone (const EdgeAddition &change) const
 checks whether the constraints enable to add an edge
bool checkModificationAlone (const EdgeDeletion &change) const
 checks whether the constraints enable to remove an edge

Protected Attributes

UndiGraph _UndiGraph_graph_
 the UndiGraph on which we perform checks

Detailed Description

The base class for structural constraints used by learning algorithms that learn an undirected graph structure.

This base should always be a virtual parent of the structural constraints classes. This will allow to combine different constraints into a single class

Definition at line 69 of file structuralConstraintUndiGraph.h.

Member Typedef Documentation

◆ allConstraints

using gum::learning::StructuralConstraintEmpty::allConstraints = _ConstraintSet_< void >
inherited

Definition at line 61 of file structuralConstraint.h.

Constructor & Destructor Documentation

◆ StructuralConstraintUndiGraph() [1/5]

gum::learning::StructuralConstraintUndiGraph::StructuralConstraintUndiGraph ( )

default constructor

Definition at line 61 of file structuralConstraintUndiGraph.cpp.

61 {
62 GUM_CONSTRUCTOR(StructuralConstraintUndiGraph);
63 }

References StructuralConstraintUndiGraph().

Referenced by StructuralConstraintUndiGraph(), StructuralConstraintUndiGraph(), StructuralConstraintUndiGraph(), StructuralConstraintUndiGraph(), StructuralConstraintUndiGraph(), ~StructuralConstraintUndiGraph(), operator=(), and operator=().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ StructuralConstraintUndiGraph() [2/5]

gum::learning::StructuralConstraintUndiGraph::StructuralConstraintUndiGraph ( Size nb_nodes)

constructor starting with an empty graph with a given number of nodes

Definition at line 66 of file structuralConstraintUndiGraph.cpp.

66 {
67 setGraph(nb_nodes);
68 GUM_CONSTRUCTOR(StructuralConstraintUndiGraph);
69 }
void setGraph(Size nb_nodes)
sets a new empty graph from which we will perform checkings

References StructuralConstraintUndiGraph(), and setGraph().

Here is the call graph for this function:

◆ StructuralConstraintUndiGraph() [3/5]

gum::learning::StructuralConstraintUndiGraph::StructuralConstraintUndiGraph ( const UndiGraph & graph)

constructor starting with a given graph

Definition at line 72 of file structuralConstraintUndiGraph.cpp.

72 {
73 setGraph(graph);
74 GUM_CONSTRUCTOR(StructuralConstraintUndiGraph);
75 }

References StructuralConstraintUndiGraph(), and setGraph().

Here is the call graph for this function:

◆ StructuralConstraintUndiGraph() [4/5]

gum::learning::StructuralConstraintUndiGraph::StructuralConstraintUndiGraph ( const StructuralConstraintUndiGraph & from)

copy constructor

Definition at line 78 of file structuralConstraintUndiGraph.cpp.

79 : _UndiGraph_graph_(from._UndiGraph_graph_) {
81 }
UndiGraph _UndiGraph_graph_
the UndiGraph on which we perform checks

References StructuralConstraintUndiGraph(), and _UndiGraph_graph_.

Here is the call graph for this function:

◆ StructuralConstraintUndiGraph() [5/5]

gum::learning::StructuralConstraintUndiGraph::StructuralConstraintUndiGraph ( StructuralConstraintUndiGraph && from)

move constructor

Definition at line 84 of file structuralConstraintUndiGraph.cpp.

85 :
86 _UndiGraph_graph_(std::move(from._UndiGraph_graph_)) {
88 }

References StructuralConstraintUndiGraph(), and _UndiGraph_graph_.

Here is the call graph for this function:

◆ ~StructuralConstraintUndiGraph()

gum::learning::StructuralConstraintUndiGraph::~StructuralConstraintUndiGraph ( )
virtual

destructor

Definition at line 91 of file structuralConstraintUndiGraph.cpp.

91 {
92 GUM_DESTRUCTOR(StructuralConstraintUndiGraph);
93 }

References StructuralConstraintUndiGraph().

Here is the call graph for this function:

Member Function Documentation

◆ checkEdgeAdditionAlone()

bool gum::learning::StructuralConstraintUndiGraph::checkEdgeAdditionAlone ( NodeId x,
NodeId y ) const

checks whether the constraints enable to add edge (x,y)

an arc can be added if and only if its extremal nodes belong to the graph and the edge does not already exist.

◆ checkEdgeDeletionAlone()

bool gum::learning::StructuralConstraintUndiGraph::checkEdgeDeletionAlone ( NodeId x,
NodeId y ) const

checks whether the constraints enable to remove edge (x,y)

an edge can be removed if and only if the edge exists.

◆ checkModificationAlone() [1/3]

bool gum::learning::StructuralConstraintUndiGraph::checkModificationAlone ( const EdgeAddition & change) const

checks whether the constraints enable to add an edge

an arc can be added if and only if its extremal nodes belong to the graph and the edge does not already exist.

◆ checkModificationAlone() [2/3]

bool gum::learning::StructuralConstraintUndiGraph::checkModificationAlone ( const EdgeDeletion & change) const

checks whether the constraints enable to remove an edge

an edge can be removed if and only if the edge exists.

◆ checkModificationAlone() [3/3]

bool gum::learning::StructuralConstraintUndiGraph::checkModificationAlone ( const GraphChange & change) const

checks whether the constraints enable to perform a graph change

An edge can be added if and only if its extremal nodes belong to the graph and the edge does not already exist. An edge can be removed if and only if the edge exists.

◆ isAlwaysInvalidAlone()

bool gum::learning::StructuralConstraintUndiGraph::isAlwaysInvalidAlone ( const GraphChange & change) const

indicates whether a change will always violate the constraint

Some learning algorithms need examine several times whether a given graph change can be applied. For instance, the first time edge (X,Y) addition is considered, the learning algorithm may discard this change because it violates the structural constraint, but, later on, other edge removals may induce that the edge addition is now possible. Such change is thus not always invalid. Conversely, there are changes that can be discarded once and for all. For instance, in a 2TBN structure, it is always impossible to add a backward-time arc. Such graph changes are always invalid and are therefore tagged as such by the isAlwaysInvalid method.

◆ modifyGraphAlone() [1/3]

void gum::learning::StructuralConstraintUndiGraph::modifyGraphAlone ( const EdgeAddition & change)

notify the constraint of a modification of the graph

Warning
If an already existing edge is added nothing is done. In particular, no exception is raised.
Exceptions
InvalidNodeexception is thrown if an edge (x,y) is added and x or y does not belong to the graph nodes

◆ modifyGraphAlone() [2/3]

void gum::learning::StructuralConstraintUndiGraph::modifyGraphAlone ( const EdgeDeletion & change)

notify the constraint of a modification of the graph

Warning
If a nonexisting edge is removed, nothing is done. In particular, no exception is raised.

◆ modifyGraphAlone() [3/3]

void gum::learning::StructuralConstraintUndiGraph::modifyGraphAlone ( const GraphChange & change)

notify the constraint of a modification of the graph

Warning
If an already existing edge is added, or if a nonexisting edge is removed, nothing is done. In particular, no exception is raised.
Exceptions
InvalidNodeexception is thrown if an edge (x,y) is added and x or y does not belong to the graph nodes

◆ operator=() [1/2]

StructuralConstraintUndiGraph & gum::learning::StructuralConstraintUndiGraph::operator= ( const StructuralConstraintUndiGraph & from)

copy operator

Definition at line 97 of file structuralConstraintUndiGraph.cpp.

97 {
98 if (this != &from) { _UndiGraph_graph_ = from._UndiGraph_graph_; }
99 return *this;
100 }

References StructuralConstraintUndiGraph(), and _UndiGraph_graph_.

Here is the call graph for this function:

◆ operator=() [2/2]

StructuralConstraintUndiGraph & gum::learning::StructuralConstraintUndiGraph::operator= ( StructuralConstraintUndiGraph && from)

move operator

Definition at line 104 of file structuralConstraintUndiGraph.cpp.

104 {
105 if (this != &from) { _UndiGraph_graph_ = std::move(from._UndiGraph_graph_); }
106 return *this;
107 }

References StructuralConstraintUndiGraph(), and _UndiGraph_graph_.

Here is the call graph for this function:

◆ setGraph()

void gum::learning::StructuralConstraintUndiGraph::setGraph ( Size nb_nodes)

sets a new empty graph from which we will perform checkings

Referenced by StructuralConstraintUndiGraph(), and StructuralConstraintUndiGraph().

Here is the caller graph for this function:

◆ setGraphAlone()

void gum::learning::StructuralConstraintUndiGraph::setGraphAlone ( const UndiGraph & graph)

sets a new graph from which we will perform checkings

Member Data Documentation

◆ _UndiGraph_graph_

UndiGraph gum::learning::StructuralConstraintUndiGraph::_UndiGraph_graph_
protected

the UndiGraph on which we perform checks

Definition at line 192 of file structuralConstraintUndiGraph.h.

Referenced by StructuralConstraintUndiGraph(), StructuralConstraintUndiGraph(), operator=(), and operator=().


The documentation for this class was generated from the following files: