GENIE
types.h
Go to the documentation of this file.
1 #ifndef GENIE_INTERFACE_TYPES_H_
2 #define GENIE_INTERFACE_TYPES_H_
3 
4 #include <vector>
5 #include <utility>
6 
7 namespace genie {
8 
12 typedef std::vector<std::vector<int> > TableData;
16 typedef std::vector<std::vector<int> > QueryData;
20 typedef std::pair<std::vector<int>, std::vector<int> > SearchResult;
21 
22 }
23 
24 #endif
This is the top-level namespace of the project.
std::vector< std::vector< int > > QueryData
Raw query data format used for building the queries.
Definition: types.h:16
std::vector< std::vector< int > > TableData
Raw table data format used for building the table.
Definition: types.h:12
std::pair< std::vector< int >, std::vector< int > > SearchResult
Matching result (top K&#39;s ID and count).
Definition: types.h:20