Changeset 241
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/NNI.h
r228 r241 72 72 73 73 /// 74 /// Function doing the imputation. @return number of rows not imputed74 /// Function doing the imputation. 75 75 /// 76 virtual size_t estimate(void)=0; 76 /// @return number of rows not imputed 77 /// 78 virtual u_int estimate(void)=0; 77 79 78 80 /// … … 94 96 gslapi::matrix imputed_data_; 95 97 u_int neighbours_; 96 vector< u_int> not_imputed_;98 vector<size_t> not_imputed_; 97 99 const gslapi::matrix& weight_; 98 100 }; -
trunk/src/kNNI.h
r228 r241 36 36 /// value. 37 37 /// 38 size_t estimate(void);38 u_int estimate(void); 39 39 40 40 private:
Note: See TracChangeset
for help on using the changeset viewer.