Changeset 377 for trunk/lib/svm/SVM.cc
- Timestamp:
- Aug 8, 2005, 1:33:13 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/svm/SVM.cc
r330 r377 8 8 #include <c++_tools/gslapi/vector.h> 9 9 #include <c++_tools/statistics/Averager.h> 10 #include <c++_tools/ utility/random_singleton.h>10 #include <c++_tools/random/random.h> 11 11 12 12 #include <iostream> … … 119 119 void Index::shuffle(void) 120 120 { 121 utility::my_uniform_rnga;121 random::DiscreteUniform a; 122 122 random_shuffle(vec_.begin()+nof_sv_, vec_.end(), a); 123 123 }
Note: See TracChangeset
for help on using the changeset viewer.