562e30ae95af98b7489e85f3d20d63aec2914b03
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 Copyright (C) 2002 Martijn Leisink [martijn@mbfys.kun.nl]
6 Radboud University Nijmegen, The Netherlands
8 This file is part of libDAI.
10 libDAI is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 libDAI is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with libDAI; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27 /// \brief Defines the IndexFor, MultiFor, Permute and State classes
28 /// \todo Improve documentation
31 #ifndef __defined_libdai_index_h
32 #define __defined_libdai_index_h
39 #include <dai/varset.h>
45 /// Tool for looping over the states of several variables.
46 /** The class IndexFor is an important tool for indexing Factor entries.
47 * Its usage can best be explained by an example.
48 * Assume indexVars, forVars are both VarSets.
49 * Then the following code:
51 * IndexFor i( indexVars, forVars );
52 * for( ; i >= 0; ++i ) {
56 * loops over all joint states of the variables in forVars,
57 * and (long)i is equal to the linear index of the corresponding
58 * state of indexVars, where the variables in indexVars that are
59 * not in forVars assume their zero'th value.
63 /// The current linear index corresponding to the state of indexVars
66 /// For each variable in forVars, the amount of change in _index
67 std::vector
<long> _sum
;
69 /// For each variable in forVars, the current state
70 std::vector
<size_t> _count
;
72 /// For each variable in forVars, its number of possible values
73 std::vector
<size_t> _dims
;
76 /// Default constructor
82 IndexFor( const VarSet
& indexVars
, const VarSet
& forVars
) : _count( forVars
.size(), 0 ) {
85 _dims
.reserve( forVars
.size() );
86 _sum
.reserve( forVars
.size() );
88 VarSet::const_iterator j
= forVars
.begin();
89 for( VarSet::const_iterator i
= indexVars
.begin(); i
!= indexVars
.end(); ++i
) {
90 for( ; j
!= forVars
.end() && *j
<= *i
; ++j
) {
91 _dims
.push_back( j
->states() );
92 _sum
.push_back( (*i
== *j
) ? sum
: 0 );
96 for( ; j
!= forVars
.end(); ++j
) {
97 _dims
.push_back( j
->states() );
104 IndexFor( const IndexFor
& ind
) : _index(ind
._index
), _sum(ind
._sum
), _count(ind
._count
), _dims(ind
._dims
) {}
106 /// Assignment operator
107 IndexFor
& operator=( const IndexFor
&ind
) {
117 /// Sets the index back to zero
119 fill( _count
.begin(), _count
.end(), 0 );
124 /// Conversion to long
125 operator long () const {
129 /// Pre-increment operator
130 IndexFor
& operator++ () {
134 while( i
< _count
.size() ) {
136 if( ++_count
[i
] < _dims
[i
] )
138 _index
-= _sum
[i
] * _dims
[i
];
143 if( i
== _count
.size() )
151 /// MultiFor makes it easy to perform a dynamic number of nested for loops.
152 /** An example of the usage is as follows:
154 * std::vector<size_t> dims;
155 * dims.push_back( 3 );
156 * dims.push_back( 4 );
157 * dims.push_back( 5 );
158 * for( MultiFor s(dims); s.valid(); ++s )
159 * cout << "linear index: " << (size_t)s << " corresponds to indices " << s[0] << ", " << s[1] << ", " << s[2] << endl;
161 * which would be equivalent to:
164 * for( size_t s0 = 0; s0 < 3; s0++ )
165 * for( size_t s1 = 0; s1 < 4; s1++ )
166 * for( size_t s2 = 0; s2 < 5; s++, s2++ )
167 * cout << "linear index: " << (size_t)s << " corresponds to indices " << s0 << ", " << s1 << ", " << s2 << endl;
172 std::vector
<size_t> _dims
;
173 std::vector
<size_t> _states
;
177 /// Default constructor
178 MultiFor() : _dims(), _states(), _state(0) {}
180 /// Initialize from vector of index dimensions
181 MultiFor( const std::vector
<size_t> &d
) : _dims(d
), _states(d
.size(),0), _state(0) {}
184 MultiFor( const MultiFor
&x
) : _dims(x
._dims
), _states(x
._states
), _state(x
._state
) {}
186 /// Assignment operator
187 MultiFor
& operator=( const MultiFor
& x
) {
196 /// Return linear state
197 operator size_t() const {
202 /// Return k'th index
203 size_t operator[]( size_t k
) const {
205 assert( k
< _states
.size() );
209 /// Prefix increment operator
210 MultiFor
& operator++() {
214 for( i
= 0; i
!= _states
.size(); i
++ ) {
215 if( ++(_states
[i
]) < _dims
[i
] )
219 if( i
== _states
.size() )
225 /// Postfix increment operator
226 void operator++( int ) {
230 /// Returns true if the current state is valid
232 return( _state
>= 0 );
237 /// Tool for calculating permutations of multiple indices.
240 std::vector
<size_t> _dims
;
241 std::vector
<size_t> _sigma
;
244 /// Default constructor
245 Permute() : _dims(), _sigma() {}
247 /// Initialize from vector of index dimensions and permutation sigma
248 Permute( const std::vector
<size_t> &d
, const std::vector
<size_t> &sigma
) : _dims(d
), _sigma(sigma
) {
249 assert( _dims
.size() == _sigma
.size() );
253 Permute( const Permute
&x
) : _dims(x
._dims
), _sigma(x
._sigma
) {}
255 /// Assignment operator
256 Permute
& operator=( const Permute
&x
) {
264 /// Converts the linear index li to a vector index
265 /// corresponding with the dimensions in _dims,
266 /// permutes it according to sigma,
267 /// and converts it back to a linear index
268 /// according to the permuted dimensions.
269 size_t convert_linear_index( size_t li
) {
270 size_t N
= _dims
.size();
272 // calculate vector index corresponding to linear index
273 std::vector
<size_t> vi
;
276 for( size_t k
= 0; k
< N
; k
++ ) {
277 vi
.push_back( li
% _dims
[k
] );
282 // convert permuted vector index to corresponding linear index
285 for( size_t k
= 0; k
< N
; k
++ ) {
286 sigma_li
+= vi
[_sigma
[k
]] * prod
;
287 prod
*= _dims
[_sigma
[k
]];
295 /// Contains the joint state of variables within a VarSet and useful things to do with this information.
296 /** This is very similar to a MultiFor, but tailored for Vars and Varsets.
300 typedef std::map
<Var
, size_t> states_type
;
306 /// Default constructor
307 State() : state(0), states() {}
309 /// Initialize from VarSet
310 State( const VarSet
&vs
) : state(0) {
311 for( VarSet::const_iterator v
= vs
.begin(); v
!= vs
.end(); v
++ )
316 State( const State
& x
) : state(x
.state
), states(x
.states
) {}
318 /// Assignment operator
319 State
& operator=( const State
&x
) {
327 /// Return linear state
328 operator size_t() const {
333 /// Return state of variable n,
334 /// or zero if n is not in this State
335 size_t operator() ( const Var
&n
) const {
337 states_type::const_iterator entry
= states
.find( n
);
338 if( entry
== states
.end() )
341 return entry
->second
;
344 /// Return linear state of variables in varset,
345 /// setting them to zero if they are not in this State
346 size_t operator() ( const VarSet
&vs
) const {
350 for( VarSet::const_iterator v
= vs
.begin(); v
!= vs
.end(); v
++ ) {
351 states_type::const_iterator entry
= states
.find( *v
);
352 if( entry
!= states
.end() )
353 vs_state
+= entry
->second
* prod
;
359 /// Postfix increment operator
360 void operator++( int ) {
363 states_type::iterator entry
= states
.begin();
364 while( entry
!= states
.end() ) {
365 if( ++(entry
->second
) < entry
->first
.states() )
370 if( entry
== states
.end() )
375 /// Returns true if the current state is valid
377 return( state
>= 0 );
382 } // end of namespace dai