Changeset 181
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Pearson.cc
r179 r181 16 16 namespace cpptools { 17 17 18 Pearson::Pearson( )19 : Score( ), r_(0), nof_samples_(0), weighted_(true)18 Pearson::Pearson(bool b) 19 : Score(b), r_(0), nof_samples_(0), weighted_(true) 20 20 { 21 21 } -
trunk/src/Pearson.h
r179 r181 30 30 /// Default Constructor. 31 31 /// 32 Pearson( );32 Pearson(bool absolute=true); 33 33 34 34 /// -
trunk/src/ROC.cc
r179 r181 17 17 namespace cpptools { 18 18 19 ROC::ROC( )20 : Score( ), area_(-1), minimum_size_(10), nof_pos_(0),19 ROC::ROC(bool b) 20 : Score(b), area_(-1), minimum_size_(10), nof_pos_(0), 21 21 train_set_(std::vector<size_t>()), 22 22 value_(std::vector<std::pair<double, double> >()), -
trunk/src/ROC.h
r179 r181 27 27 /// Default constructor 28 28 /// 29 ROC( );29 ROC(bool absolute=true); 30 30 31 31 /// -
trunk/src/tScore.cc
r179 r181 13 13 namespace cpptools { 14 14 15 tScore::tScore( )16 : Score( ), t_(0), train_set_(), weight_()15 tScore::tScore(bool b) 16 : Score(b), t_(0), train_set_(), weight_() 17 17 { 18 18 } -
trunk/src/tScore.h
r179 r181 28 28 /// Default Constructor. 29 29 /// 30 tScore( );30 tScore(bool absolute=true); 31 31 32 32 ///
Note: See TracChangeset
for help on using the changeset viewer.