diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-13 16:52:21 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-13 16:52:21 +0200 |
commit | aa4fedfd54c111383608857e4c5ba30330bdfbbe (patch) | |
tree | 1d5fe66a6594d003874a648c644723b486462d2f /common/route.h | |
parent | 4a85cd57c0fabfba5b3851361c000ae801cb43f7 (diff) | |
download | nextpnr-aa4fedfd54c111383608857e4c5ba30330bdfbbe.tar.gz nextpnr-aa4fedfd54c111383608857e4c5ba30330bdfbbe.tar.bz2 nextpnr-aa4fedfd54c111383608857e4c5ba30330bdfbbe.zip |
Add A*-like optimizations to router
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common/route.h')
-rw-r--r-- | common/route.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/route.h b/common/route.h index d9c240b3..edb9a53e 100644 --- a/common/route.h +++ b/common/route.h @@ -24,7 +24,7 @@ NEXTPNR_NAMESPACE_BEGIN -extern void route_design(Design *design); +extern void route_design(Design *design, bool verbose = false); NEXTPNR_NAMESPACE_END |