Merge fixes

This commit is contained in:
Eddie Hung 2018-09-03 13:20:19 -07:00
parent 001806f317
commit 6d17810dde

View File

@ -648,18 +648,9 @@ bool Arch::getBudgetOverride(const NetInfo *net_info, const PortRef &sink, delay
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
bool Arch::place() bool Arch::place() { return placer1(getCtx(), Placer1Cfg(getCtx())); }
{
Placer1Cfg cfg;
cfg.constraintWeight = placer_constraintWeight;
return placer1(getCtx(), cfg);
}
bool Arch::route() bool Arch::route() { return router1(getCtx(), Router1Cfg(getCtx())); }
{
Router1Cfg cfg;
return router1(getCtx(), cfg);
}
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------