22 lines
599 B
C++
22 lines
599 B
C++
#ifndef CHECK_LB_RR_GRAPH_H
|
|
#define CHECK_LB_RR_GRAPH_H
|
|
|
|
/********************************************************************
|
|
* Include header files that are required by function declaration
|
|
*******************************************************************/
|
|
#include "lb_rr_graph.h"
|
|
|
|
|
|
/********************************************************************
|
|
* Function declaration
|
|
*******************************************************************/
|
|
|
|
/* begin namespace openfpga */
|
|
namespace openfpga {
|
|
|
|
bool check_lb_rr_graph(const LbRRGraph& rr_graph);
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
#endif
|