1 /* Copyright (C) 2006-2008 Joris Mooij [joris dot mooij at tuebingen dot mpg dot de]
2 Radboud University Nijmegen, The Netherlands /
3 Max Planck Institute for Biological Cybernetics, Germany
5 This file is part of libDAI.
7 libDAI is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 libDAI is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with libDAI; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 #ifndef __defined_libdai_jtree_h
24 #define __defined_libdai_jtree_h
29 #include <dai/daialg.h>
30 #include <dai/varset.h>
31 #include <dai/regiongraph.h>
32 #include <dai/factorgraph.h>
33 #include <dai/clustergraph.h>
34 #include <dai/weightedgraph.h>
36 #include <dai/properties.h>
42 class JTree
: public DAIAlgRG
{
44 std::vector
<std::vector
<Factor
> > _mes
;
48 DEdgeVec RTree
; // rooted tree
49 std::vector
<Factor
> Qa
;
50 std::vector
<Factor
> Qb
;
53 DAI_ENUM(UpdateType
,HUGIN
,SHSH
)
56 /// Name of this inference method
57 static const char *Name
;
60 /// Default constructor
61 JTree() : DAIAlgRG(), _mes(), _logZ(), RTree(), Qa(), Qb(), props() {}
63 /// Construct from FactorGraph fg and PropertySet opts
64 JTree( const FactorGraph
&fg
, const PropertySet
&opts
, bool automatic
=true );
67 JTree( const JTree
&x
) : DAIAlgRG(x
), _mes(x
._mes
), _logZ(x
._logZ
), RTree(x
.RTree
), Qa(x
.Qa
), Qb(x
.Qb
), props(x
.props
) {}
69 /// Clone *this (virtual copy constructor)
70 virtual JTree
* clone() const { return new JTree(*this); }
72 /// Create (virtual default constructor)
73 virtual JTree
* create() const { return new JTree(); }
75 /// Assignment operator
76 JTree
& operator=( const JTree
&x
) {
78 DAIAlgRG::operator=( x
);
89 /// Identifies itself for logging purposes
90 virtual std::string
identify() const;
92 /// Get single node belief
93 virtual Factor
belief( const Var
&n
) const;
95 /// Get general belief
96 virtual Factor
belief( const VarSet
&ns
) const;
99 virtual std::vector
<Factor
> beliefs() const;
101 /// Get log partition sum
102 virtual Real
logZ() const;
104 /// Clear messages and beliefs
105 virtual void init() {}
107 /// Clear messages and beliefs corresponding to the nodes in ns
108 virtual void init( const VarSet
&/*ns*/ ) {}
110 /// The actual approximate inference algorithm
111 virtual double run();
113 /// Return maximum difference between single node beliefs in the last pass
114 virtual double maxDiff() const { return 0.0; }
116 /// Return number of passes over the factorgraph
117 virtual size_t Iterations() const { return 1UL; }
120 void GenerateJT( const std::vector
<VarSet
> &Cliques
);
122 Factor
& message( size_t alpha
, size_t _beta
) { return _mes
[alpha
][_beta
]; }
123 const Factor
& message( size_t alpha
, size_t _beta
) const { return _mes
[alpha
][_beta
]; }
126 void runShaferShenoy();
127 size_t findEfficientTree( const VarSet
& ns
, DEdgeVec
&Tree
, size_t PreviousRoot
=(size_t)-1 ) const;
128 Factor
calcMarginal( const VarSet
& ns
);
130 void setProperties( const PropertySet
&opts
);
131 PropertySet
getProperties() const;
132 std::string
printProperties() const;
136 std::pair
<size_t,size_t> treewidth( const FactorGraph
& fg
);
139 } // end of namespace dai