1 /* Copyright (C) 2006-2008 Joris Mooij [j dot mooij at science dot ru dot nl]
2 Radboud University Nijmegen, The Netherlands
4 This file is part of libDAI.
6 libDAI is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 libDAI is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with libDAI; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #ifndef __defined_libdai_jtree_h
23 #define __defined_libdai_jtree_h
28 #include <dai/daialg.h>
29 #include <dai/varset.h>
30 #include <dai/regiongraph.h>
31 #include <dai/factorgraph.h>
32 #include <dai/clustergraph.h>
33 #include <dai/weightedgraph.h>
35 #include <dai/properties.h>
41 class JTree
: public DAIAlgRG
{
43 DEdgeVec _RTree
; // rooted tree
44 std::vector
<Factor
> _Qa
;
45 std::vector
<Factor
> _Qb
;
46 std::vector
<std::vector
<Factor
> > _mes
;
52 ENUM2(UpdateType
,HUGIN
,SHSH
)
57 JTree() : DAIAlgRG(), _RTree(), _Qa(), _Qb(), _mes(), _logZ(), props() {}
58 JTree( const JTree
& x
) : DAIAlgRG(x
), _RTree(x
._RTree
), _Qa(x
._Qa
), _Qb(x
._Qb
), _mes(x
._mes
), _logZ(x
._logZ
), props(x
.props
) {}
59 JTree
* clone() const { return new JTree(*this); }
60 JTree
& operator=( const JTree
& x
) {
62 DAIAlgRG::operator=(x
);
72 JTree( const FactorGraph
&fg
, const PropertySet
&opts
, bool automatic
=true );
73 void GenerateJT( const std::vector
<VarSet
> &Cliques
);
75 Factor
& message( size_t alpha
, size_t _beta
) { return _mes
[alpha
][_beta
]; }
76 const Factor
& message( size_t alpha
, size_t _beta
) const { return _mes
[alpha
][_beta
]; }
78 static const char *Name
;
79 std::string
identify() const;
82 void runShaferShenoy();
84 Factor
belief( const Var
&n
) const;
85 Factor
belief( const VarSet
&ns
) const;
86 std::vector
<Factor
> beliefs() const;
89 void init( const VarSet
&/*ns*/ ) {}
90 void undoProbs( const VarSet
&ns
) { RegionGraph::undoProbs( ns
); init( ns
); }
92 size_t findEfficientTree( const VarSet
& ns
, DEdgeVec
&Tree
, size_t PreviousRoot
=(size_t)-1 ) const;
93 Factor
calcMarginal( const VarSet
& ns
);
94 void setProperties( const PropertySet
&opts
);
95 PropertySet
getProperties() const;
96 double maxDiff() const { return 0.0; }
100 } // end of namespace dai