ROFL-pipeline  v0.6.0dev
available_ma.h
1 
6 #ifndef MATCHING_ALGORITHMS_AVAILABLE_H_
7 #define MATCHING_ALGORITHMS_AVAILABLE_H_
8 
9 enum of1x_matching_algorithm_available{
10 of1x_loop_matching_algorithm,
11 of1x_l2hash_matching_algorithm,
12 //matching algorithm count
13 of1x_matching_algorithm_count
14 };
15 
16 #define OF1X_MATCHING_ALGORITHM_NAMES \
17 { \
18  "loop", \
19  "l2hash", \
20 }
21 
22 #endif /* MATCHING_ALGORITHMS_AVAILABLE_H_ */
23