File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,8 @@ apt install -y \
69
69
default-jdk \
70
70
g++-9 \
71
71
gcc-9 \
72
- wget
72
+ wget \
73
+ libtbb-dev
73
74
74
75
# installing the latest version of cmake
75
76
apt install -y apt-transport-https ca-certificates gnupg
Original file line number Diff line number Diff line change @@ -1840,8 +1840,8 @@ size_t dynamic_update_bounding_boxes(const std::vector<ParentNetId>& updated_net
1840
1840
// Walk through each net, calculating the bounding box of its current routing,
1841
1841
// and then increase the router's bounding box if the two are close together
1842
1842
1843
- size_t grid_xmax = grid.width () - 1 ;
1844
- size_t grid_ymax = grid.height () - 1 ;
1843
+ int grid_xmax = grid.width () - 1 ;
1844
+ int grid_ymax = grid.height () - 1 ;
1845
1845
1846
1846
size_t num_bb_updated = 0 ;
1847
1847
You can’t perform that action at this time.
0 commit comments