1 #ifndef BALANCING_WORKHORSE_H_
2 #define BALANCING_WORKHORSE_H_
3 
4 #include "params.h"              // for param_list_ptr, param_list
5 #include "parallelizing_info.h"
6 #include "raw_matrix_u32.h"
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 void balancing_decl_usage(param_list_ptr pl);
13 void balancing_lookup_parameters(param_list_ptr pl);
14 
15 void balancing_get_matrix_u32(parallelizing_info_ptr pi, param_list pl, matrix_u32_ptr arg);
16 
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif	/* BALANCING_WORKHORSE_H_ */
23