2018-07-26 12:28:21 -05:00
|
|
|
#ifndef CHECK_RR_GRAPH_H
|
|
|
|
#define CHECK_RR_GRAPH_H
|
|
|
|
|
2019-06-20 19:17:07 -05:00
|
|
|
void check_rr_graph(INP const t_graph_type graph_type,
|
2019-06-23 17:40:13 -05:00
|
|
|
INP const int L_nx, INP const int L_ny,
|
|
|
|
INP const int num_switches,
|
|
|
|
int **Fc_in);
|
2018-07-26 12:28:21 -05:00
|
|
|
|
|
|
|
void check_node(int inode, enum e_route_type route_type);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|