Changeset 666 for trunk/c++_tools/classifier/ConsensusInputRanker.cc
- Timestamp:
- Oct 6, 2006, 6:07:54 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/c++_tools/classifier/ConsensusInputRanker.cc
r616 r666 21 21 namespace classifier { 22 22 23 ConsensusInputRanker::ConsensusInputRanker(const IRRetrieve& retriever) 24 : retriever_(retriever) 25 { 26 } 27 28 23 29 ConsensusInputRanker::ConsensusInputRanker(const Sampler& sampler, 24 30 const MatrixLookup& data, 25 statistics::Score& score) 31 statistics::Score& score, 32 const IRRetrieve& retriever) 33 : retriever_(retriever) 26 34 { 27 35 assert(sampler.size()); … … 38 46 ConsensusInputRanker::ConsensusInputRanker(const Sampler& sampler, 39 47 const MatrixLookupWeighted& data, 40 statistics::Score& score) 48 statistics::Score& score, 49 const IRRetrieve& retriever) 50 : retriever_(retriever) 41 51 { 42 52 assert(sampler.size());
Note: See TracChangeset
for help on using the changeset viewer.