27 lines
838 B
C++
27 lines
838 B
C++
|
/******************************************************************************
|
||
|
* Memember functions for data structure FlowManager
|
||
|
******************************************************************************/
|
||
|
#include "vtr_assert.h"
|
||
|
|
||
|
#include "openfpga_flow_manager.h"
|
||
|
|
||
|
/* begin namespace openfpga */
|
||
|
namespace openfpga {
|
||
|
|
||
|
/**************************************************
|
||
|
* Public Accessors
|
||
|
*************************************************/
|
||
|
bool FlowManager::compress_routing() const {
|
||
|
return compress_routing_;
|
||
|
}
|
||
|
|
||
|
/******************************************************************************
|
||
|
* Private Mutators
|
||
|
******************************************************************************/
|
||
|
void FlowManager::set_compress_routing(const bool& enabled) {
|
||
|
compress_routing_ = enabled;
|
||
|
}
|
||
|
|
||
|
|
||
|
} /* end namespace openfpga */
|