Skip to content

Commit 2fd1be9

Browse files
committed
Updating fixed size arrays to NdMatrix
1 parent 73f9a79 commit 2fd1be9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/place/net_cost_handler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ enum class NetUpdateState {
5454

5555
const int MAX_FANOUT_CROSSING_COUNT = 50;
5656

57-
double cong_matrix[400][400];
58-
double cong_matrix_new[400][400];
57+
vtr::NdMatrix<double, 2> cong_matrix;
58+
vtr::NdMatrix<double, 2> cong_matrix_new;
5959

6060
/**
6161
* @brief Crossing counts for nets with different #'s of pins. From

0 commit comments

Comments
 (0)