2020-11-11 13:03:13 -06:00
|
|
|
#ifndef CHECK_TILE_ANNOTATION_H
|
|
|
|
#define CHECK_TILE_ANNOTATION_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <vector>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
2020-11-11 13:03:13 -06:00
|
|
|
#include "circuit_library.h"
|
|
|
|
#include "physical_types.h"
|
2022-10-06 19:08:50 -05:00
|
|
|
#include "tile_annotation.h"
|
2020-11-11 13:03:13 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
bool check_tile_annotation(
|
|
|
|
const TileAnnotation& tile_annotations, const CircuitLibrary& circuit_lib,
|
|
|
|
const std::vector<t_physical_tile_type>& physical_tile_types);
|
2020-11-11 13:03:13 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|