GENIE
validation.h
Go to the documentation of this file.
1 #ifndef GENIE_EXECUTION_POLICY_VALIDATION_H_
2 #define GENIE_EXECUTION_POLICY_VALIDATION_H_
3 
4 #include <cstdint>
5 
6 namespace genie {
7 namespace execution_policy {
8 namespace validation {
9 
10 void ValidateK(uint32_t k);
11 void ValidateNumOfQueries(uint32_t num_of_queries);
12 void ValidateQueryRange(uint32_t query_range);
13 
14 }
15 }
16 }
17 
18 #endif
This is the top-level namespace of the project.
void ValidateNumOfQueries(uint32_t num_of_queries)
Definition: validation.cc:13
void ValidateQueryRange(uint32_t query_range)
Definition: validation.cc:19