Last change
on this file since 115 was
115,
checked in by Peter, 19 years ago
|
added
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
716 bytes
|
Line | |
---|
1 | // $Id: ConsensusInputRanker.h 115 2004-07-19 14:38:43Z peter $ |
---|
2 | |
---|
3 | #ifndef _theplu_cpptools_consensusinputranker_ |
---|
4 | #define _theplu_cpptools_consensusinputranker_ |
---|
5 | |
---|
6 | // C++ tools include |
---|
7 | ///////////////////// |
---|
8 | |
---|
9 | // Standard C++ includes |
---|
10 | //////////////////////// |
---|
11 | |
---|
12 | |
---|
13 | namespace theplu { |
---|
14 | namespace cpptools { |
---|
15 | |
---|
16 | /// |
---|
17 | /// Class for |
---|
18 | /// |
---|
19 | class ConsensusInputRanker |
---|
20 | { |
---|
21 | |
---|
22 | public: |
---|
23 | /// |
---|
24 | /// Constructor taking data, target, Score object |
---|
25 | /// |
---|
26 | ConsensusInputRanker(const gslapi::matrix&, |
---|
27 | const gslapi::vector&, |
---|
28 | Score&, |
---|
29 | const size_t = 1, |
---|
30 | const size_t = 3); |
---|
31 | |
---|
32 | |
---|
33 | |
---|
34 | private: |
---|
35 | std::vector<InputRanker> input_rankers_; |
---|
36 | size_t k_; |
---|
37 | size_t nof_rankers_; |
---|
38 | }; |
---|
39 | |
---|
40 | }} // of namespace cpptools and namespace theplu |
---|
41 | |
---|
42 | #endif |
---|
43 | |
---|
Note: See
TracBrowser
for help on using the repository browser.