1 /* This file is part of libDAI - http://www.libdai.org/
3 * libDAI is licensed under the terms of the GNU General Public License version
4 * 2, or (at your option) any later version. libDAI is distributed without any
5 * warranty. See the file COPYING for more details.
7 * Copyright (C) 2006-2009 Joris Mooij [joris dot mooij at libdai dot org]
8 * Copyright (C) 2006-2007 Radboud University Nijmegen, The Netherlands
13 /// \brief Defines ExactInf class, which can be used for exact inference on small factor graphs.
16 #ifndef __defined_libdai_exactinf_h
17 #define __defined_libdai_exactinf_h
20 #include <dai/daialg.h>
21 #include <dai/properties.h>
22 #include <dai/factorgraph.h>
29 /// Exact inference algorithm using brute force enumeration (mainly useful for testing purposes)
30 /** Inference is done simply by multiplying all factors together into one large factor,
31 * and then calculating marginals and partition sum from the product.
32 * \note This inference method can easily exhaust all available memory; in that case, one
33 * may try the JTree class instead.
35 class ExactInf
: public DAIAlgFG
{
37 /// Parameters of this inference algorithm
43 /// Name of this inference algorithm
44 static const char *Name
;
47 /// All single variable marginals
48 std::vector
<Factor
> _beliefsV
;
49 /// All factor variable marginals
50 std::vector
<Factor
> _beliefsF
;
51 /// Logarithm of partition sum
55 /// \name Constructors/destructors
57 /// Default constructor
58 ExactInf() : DAIAlgFG(), props(), _beliefsV(), _beliefsF(), _logZ(0) {}
60 /// Construct from FactorGraph \a fg and PropertySet \a opts
61 ExactInf( const FactorGraph
&fg
, const PropertySet
&opts
) : DAIAlgFG(fg
), props(), _beliefsV(), _beliefsF(), _logZ() {
62 setProperties( opts
);
67 /// \name General InfAlg interface
69 virtual ExactInf
* clone() const { return new ExactInf(*this); }
70 virtual std::string
identify() const;
71 virtual Factor
belief( const Var
&n
) const { return beliefV( findVar( n
) ); }
72 virtual Factor
belief( const VarSet
&ns
) const;
73 virtual Factor
beliefV( size_t i
) const { return _beliefsV
[i
]; }
74 virtual Factor
beliefF( size_t I
) const { return _beliefsF
[I
]; }
75 virtual std::vector
<Factor
> beliefs() const;
76 virtual Real
logZ() const { return _logZ
; }
78 virtual void init( const VarSet
&/*ns*/ ) { DAI_THROW(NOT_IMPLEMENTED
); }
80 virtual Real
maxDiff() const { DAI_THROW(NOT_IMPLEMENTED
); return 0.0; }
81 virtual size_t Iterations() const { DAI_THROW(NOT_IMPLEMENTED
); return 0; }
82 virtual void setProperties( const PropertySet
&opts
);
83 virtual PropertySet
getProperties() const;
84 virtual std::string
printProperties() const;
87 /// \name Additional interface specific for JTree
89 /// Calculates marginal probability distribution for variables \a vs
90 /** \note The complexity of this calculation is exponential in the number of variables.
92 Factor
calcMarginal( const VarSet
&vs
) const;
97 /// Helper function for constructors
102 } // end of namespace dai