2020-01-28 22:59:10 -06:00
|
|
|
#ifndef PB_GRAPH_UTILS_H
|
|
|
|
#define PB_GRAPH_UTILS_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include "physical_types.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
|
|
|
std::vector<t_pb_graph_pin*> pb_graph_pin_inputs(t_pb_graph_pin* pb_graph_pin,
|
|
|
|
t_interconnect* selected_interconnect);
|
|
|
|
|
2020-02-12 15:58:23 -06:00
|
|
|
t_interconnect* pb_graph_pin_interc(t_pb_graph_pin* pb_graph_pin,
|
|
|
|
t_mode* selected_mode);
|
|
|
|
|
2020-01-28 22:59:10 -06:00
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|