aGrUM  0.16.0
dSeparation_inl.h
Go to the documentation of this file.
1 
30 namespace gum {
31 
32 
33  // default constructor
34  INLINE dSeparation::dSeparation() { GUM_CONSTRUCTOR(dSeparation); }
35 
36 
37  // copy constructor
38  INLINE dSeparation::dSeparation(const dSeparation& from) {
39  GUM_CONS_CPY(dSeparation);
40  }
41 
42 
43  // move constructor
45  GUM_CONS_MOV(dSeparation);
46  }
47 
48 
49  // destructor
50  INLINE dSeparation::~dSeparation() { GUM_DESTRUCTOR(dSeparation); }
51 
52 
53  // copy operator
55  return *this;
56  }
57 
58 
59  // move operator
60  INLINE dSeparation& dSeparation::operator=(dSeparation&& from) { return *this; }
61 
62 
63 } /* namespace gum */
~dSeparation()
destructor
the d-separation algorithm as described in Koller & Friedman (2009)
Definition: dSeparation.h:44
Copyright 2005-2019 Pierre-Henri WUILLEMIN et Christophe GONZALES (LIP6) {prenom.nom}_at_lip6.fr.
Definition: agrum.h:25
dSeparation & operator=(const dSeparation &from)
copy operator
dSeparation()
default constructor