From 6d17810ddeb42a871fce077d7feba5cbc94405f3 Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Mon, 3 Sep 2018 13:20:19 -0700 Subject: [PATCH] Merge fixes --- xc7/arch.cc | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/xc7/arch.cc b/xc7/arch.cc index 1d0ead8c..d17bde6d 100644 --- a/xc7/arch.cc +++ b/xc7/arch.cc @@ -648,18 +648,9 @@ bool Arch::getBudgetOverride(const NetInfo *net_info, const PortRef &sink, delay // ----------------------------------------------------------------------- -bool Arch::place() -{ - Placer1Cfg cfg; - cfg.constraintWeight = placer_constraintWeight; - return placer1(getCtx(), cfg); -} +bool Arch::place() { return placer1(getCtx(), Placer1Cfg(getCtx())); } -bool Arch::route() -{ - Router1Cfg cfg; - return router1(getCtx(), cfg); -} +bool Arch::route() { return router1(getCtx(), Router1Cfg(getCtx())); } // -----------------------------------------------------------------------