9193d5ba2b42257f9c6d2473cd58eb3bda538390
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
26 #ifndef __defined_libdai_index_h
27 #define __defined_libdai_index_h
34 #include <dai/varset.h>
40 /// Tool for looping over the states of several variables.
41 /** The class IndexFor is an important tool for indexing of Factors.
42 * Its usage can best be explained by an example.
43 * Assume indexVars, forVars are two VarSets.
44 * Then the following code:
46 * IndexFor i( indexVars, forVars );
47 * for( ; i >= 0; ++i ) {
51 * loops over all joint states of the variables in forVars,
52 * and (long)i is equal to the linear index of the corresponding
53 * state of indexVars, where the variables in indexVars that are
54 * not in forVars assume their zero'th value.
58 /// The current linear index corresponding to the state of indexVars
61 /// For each variable in forVars, the amount of change in _index
62 std::vector
<long> _sum
;
64 /// For each variable in forVars, the current state
65 std::vector
<size_t> _count
;
67 /// For each variable in forVars, its number of possible values
68 std::vector
<size_t> _dims
;
71 /// Default constructor
77 IndexFor( const VarSet
& indexVars
, const VarSet
& forVars
) : _count( forVars
.size(), 0 ) {
80 _dims
.reserve( forVars
.size() );
81 _sum
.reserve( forVars
.size() );
83 VarSet::const_iterator j
= forVars
.begin();
84 for( VarSet::const_iterator i
= indexVars
.begin(); i
!= indexVars
.end(); ++i
) {
85 for( ; j
!= forVars
.end() && *j
<= *i
; ++j
) {
86 _dims
.push_back( j
->states() );
87 _sum
.push_back( (*i
== *j
) ? sum
: 0 );
91 for( ; j
!= forVars
.end(); ++j
) {
92 _dims
.push_back( j
->states() );
99 IndexFor( const IndexFor
& ind
) : _index(ind
._index
), _sum(ind
._sum
), _count(ind
._count
), _dims(ind
._dims
) {}
101 /// Assignment operator
102 IndexFor
& operator=( const IndexFor
&ind
) {
112 /// Sets the index back to zero
114 fill( _count
.begin(), _count
.end(), 0 );
119 /// Conversion to long
120 operator long () const {
124 /// Pre-increment operator
125 IndexFor
& operator++ () {
129 while( i
< _count
.size() ) {
131 if( ++_count
[i
] < _dims
[i
] )
133 _index
-= _sum
[i
] * _dims
[i
];
138 if( i
== _count
.size() )
146 /// MultiFor makes it easy to perform a dynamic number of nested for loops.
147 /** An example of the usage is as follows:
149 * std::vector<size_t> dims;
150 * dims.push_back( 3 );
151 * dims.push_back( 4 );
152 * dims.push_back( 5 );
153 * for( MultiFor s(dims); s.valid(); ++s )
154 * cout << "linear index: " << (size_t)s << " corresponds with indices " << s[0] << ", " << s[1] << ", " << s[2] << endl;
156 * which would be equivalent to:
159 * for( size_t s0 = 0; s0 < 3; s0++ )
160 * for( size_t s1 = 0; s1 < 4; s1++ )
161 * for( size_t s2 = 0; s2 < 5; s++, s2++ )
162 * cout << "linear index: " << (size_t)s << " corresponds with indices " << s0 << ", " << s1 << ", " << s2 << endl;
167 std::vector
<size_t> _dims
;
168 std::vector
<size_t> _states
;
172 /// Default constructor
173 MultiFor() : _dims(), _states(), _state(0) {}
175 /// Initialize from vector of index dimensions
176 MultiFor( const std::vector
<size_t> &d
) : _dims(d
), _states(d
.size(),0), _state(0) {}
179 MultiFor( const MultiFor
&x
) : _dims(x
._dims
), _states(x
._states
), _state(x
._state
) {}
181 /// Assignment operator
182 MultiFor
& operator=( const MultiFor
& x
) {
191 /// Return linear state
192 operator size_t() const {
197 /// Return k'th index
198 size_t operator[]( size_t k
) const {
200 assert( k
< _states
.size() );
204 /// Prefix increment operator
205 MultiFor
& operator++() {
209 for( i
= 0; i
!= _states
.size(); i
++ ) {
210 if( ++(_states
[i
]) < _dims
[i
] )
214 if( i
== _states
.size() )
220 /// Postfix increment operator
221 void operator++( int ) {
225 /// Returns true if the current state is valid
227 return( _state
>= 0 );
232 /// Tool for calculating permutations of multiple indices.
235 std::vector
<size_t> _dims
;
236 std::vector
<size_t> _sigma
;
239 /// Default constructor
240 Permute() : _dims(), _sigma() {}
242 /// Initialize from vector of index dimensions and permutation sigma
243 Permute( const std::vector
<size_t> &d
, const std::vector
<size_t> &sigma
) : _dims(d
), _sigma(sigma
) {
244 assert( _dims
.size() == _sigma
.size() );
248 Permute( const Permute
&x
) : _dims(x
._dims
), _sigma(x
._sigma
) {}
250 /// Assignment operator
251 Permute
& operator=( const Permute
&x
) {
259 /// Converts the linear index li to a vector index
260 /// corresponding with the dimensions in _dims,
261 /// permutes it according to sigma,
262 /// and converts it back to a linear index
263 /// according to the permuted dimensions.
264 size_t convert_linear_index( size_t li
) {
265 size_t N
= _dims
.size();
267 // calculate vector index corresponding to linear index
268 std::vector
<size_t> vi
;
271 for( size_t k
= 0; k
< N
; k
++ ) {
272 vi
.push_back( li
% _dims
[k
] );
277 // convert permuted vector index to corresponding linear index
280 for( size_t k
= 0; k
< N
; k
++ ) {
281 sigma_li
+= vi
[_sigma
[k
]] * prod
;
282 prod
*= _dims
[_sigma
[k
]];
290 /// Contains the state of variables within a VarSet and useful things to do with this information.
291 /// This is very similar to a MultiFor, but tailored for Vars and Varsets.
294 typedef std::map
<Var
, size_t> states_type
;
300 /// Default constructor
301 State() : state(0), states() {}
303 /// Initialize from VarSet
304 State( const VarSet
&vs
) : state(0) {
305 for( VarSet::const_iterator v
= vs
.begin(); v
!= vs
.end(); v
++ )
310 State( const State
& x
) : state(x
.state
), states(x
.states
) {}
312 /// Assignment operator
313 State
& operator=( const State
&x
) {
321 /// Return linear state
322 operator size_t() const {
327 /// Return state of variable n,
328 /// or zero if n is not in this State
329 size_t operator() ( const Var
&n
) const {
331 states_type::const_iterator entry
= states
.find( n
);
332 if( entry
== states
.end() )
335 return entry
->second
;
338 /// Return linear state of variables in varset,
339 /// setting them to zero if they are not in this State
340 size_t operator() ( const VarSet
&vs
) const {
344 for( VarSet::const_iterator v
= vs
.begin(); v
!= vs
.end(); v
++ ) {
345 states_type::const_iterator entry
= states
.find( *v
);
346 if( entry
!= states
.end() )
347 vs_state
+= entry
->second
* prod
;
353 /// Postfix increment operator
354 void operator++( int ) {
357 states_type::iterator entry
= states
.begin();
358 while( entry
!= states
.end() ) {
359 if( ++(entry
->second
) < entry
->first
.states() )
364 if( entry
== states
.end() )
369 /// Returns true if the current state is valid
371 return( state
>= 0 );
376 } // end of namespace dai