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
27 #include <dai/diffs.h>
37 const char *MF::Name
= "MF";
40 bool MF::checkProperties() {
41 if( !HasProperty("tol") )
43 if (!HasProperty("maxiter") )
45 if (!HasProperty("verbose") )
48 ConvertPropertyTo
<double>("tol");
49 ConvertPropertyTo
<size_t>("maxiter");
50 ConvertPropertyTo
<size_t>("verbose");
56 void MF::Regenerate() {
57 // DAIAlgFG::Regenerate();
61 _beliefs
.reserve( nrVars() );
64 for( size_t i
= 0; i
< nrVars(); ++i
)
65 _beliefs
.push_back(Factor(var(i
)));
69 string
MF::identify() const {
70 stringstream
result (stringstream::out
);
71 result
<< Name
<< GetProperties();
77 assert( checkProperties() );
79 for( vector
<Factor
>::iterator qi
= _beliefs
.begin(); qi
!= _beliefs
.end(); qi
++ )
88 cout
<< "Starting " << identify() << "...";
90 size_t pass_size
= _beliefs
.size();
91 Diffs
diffs(pass_size
* 3, 1.0);
94 for( t
=0; t
< (MaxIter()*pass_size
) && diffs
.max() > Tol(); t
++ ) {
95 // choose random Var i
96 size_t i
= (size_t) (nrVars() * rnd_uniform());
100 foreach( const Neighbor
&I
, nbV(i
) ) {
102 foreach( const Neighbor
&j
, nbF(I
) ) // for all j in I \ i
105 piet
= factor(I
).log0();
107 piet
= piet
.part_sum(var(i
));
112 jan
.normalize( _normtype
);
114 if( jan
.hasNaNs() ) {
115 cout
<< "MF::run(): ERROR: jan has NaNs!" << endl
;
119 diffs
.push( dist( jan
, _beliefs
[i
], Prob::DISTLINF
) );
124 updateMaxDiff( diffs
.max() );
126 if( Verbose() >= 1 ) {
127 if( diffs
.max() > Tol() ) {
130 cout
<< "MF::run: WARNING: not converged within " << MaxIter() << " passes (" << toc() - tic
<< " clocks)...final maxdiff:" << diffs
.max() << endl
;
134 cout
<< "converged in " << t
/ pass_size
<< " passes (" << toc() - tic
<< " clocks)." << endl
;
142 Factor
MF::beliefV (size_t i
) const {
145 piet
.normalize( Prob::NORMPROB
);
150 Factor
MF::belief (const VarSet
&ns
) const {
152 return belief( *(ns
.begin()) );
154 assert( ns
.size() == 1 );
160 Factor
MF::belief (const Var
&n
) const {
161 return( beliefV( findVar( n
) ) );
165 vector
<Factor
> MF::beliefs() const {
166 vector
<Factor
> result
;
167 for( size_t i
= 0; i
< nrVars(); i
++ )
168 result
.push_back( beliefV(i
) );
173 Complex
MF::logZ() const {
176 for(size_t i
=0; i
< nrVars(); i
++ )
177 sum
-= beliefV(i
).entropy();
178 for(size_t I
=0; I
< nrFactors(); I
++ ) {
180 foreach( const Neighbor
&j
, nbF(I
) ) // for all j in I
182 henk
.normalize( Prob::NORMPROB
);
184 piet
= factor(I
).log0();
186 sum
-= Complex( piet
.totalSum() );
193 void MF::init( const VarSet
&ns
) {
194 for( size_t i
= 0; i
< nrVars(); i
++ ) {
196 _beliefs
[i
].fill( 1.0 );
201 } // end of namespace dai