Changeset 1589 for trunk/yat/classifier/MatrixLookupWeighted.h
- Timestamp:
- Oct 17, 2008, 6:10:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/classifier/MatrixLookupWeighted.h
r1588 r1589 28 28 #include "yat/utility/DataWeight.h" 29 29 #include "yat/utility/Index.h" 30 #include "yat/utility/MatrixWeighted.h" 30 31 #include "yat/utility/SmartPtr.h" 31 32 #include "yat/utility/StrideIterator.h" 33 34 #include <boost/iterator/permutation_iterator.hpp> 32 35 33 36 #include <iostream> … … 37 40 namespace theplu { 38 41 namespace yat { 39 40 namespace utility {41 class MatrixWeighted;42 }43 44 42 namespace classifier { 45 43 … … 88 86 'Read only' iterator used to iterate over a column 89 87 */ 90 typedef const_iterator const_column_iterator; 88 typedef boost::permutation_iterator< 89 utility::MatrixWeighted::const_column_iterator, 90 utility::Index::const_iterator> const_column_iterator; 91 91 92 92 /** 93 93 'Read only' iterator used to iterate over a row 94 94 */ 95 typedef const_iterator const_row_iterator; 95 typedef boost::permutation_iterator< 96 utility::MatrixWeighted::const_row_iterator, 97 utility::Index::const_iterator> const_row_iterator; 96 98 97 99 /**
Note: See TracChangeset
for help on using the changeset viewer.