hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
SphinxResultNullSorter.cpp
Go to the documentation of this file.
2 #include <algorithm>
3 
4 namespace HCE
5 {
6 namespace sphinx
7 {
8 namespace reduce_task
9 {
10 
11 using namespace std;
12 using namespace HCE::sphinx;
13 using namespace Poco;
14 
15 
17 }
18 
20 }
21 
22 void SphinxResultNullSorter::sortByWeight(std::vector<std::pair<std::string,
23  unsigned long long> > &weightDocIds)
24 {
25  sort(weightDocIds);
26 }
27 
28 
29 }
30 }
31 }