Skip to content

Commit 96c6336

Browse files
committed
grt: fix wrong used_ggrid insertion
Signed-off-by: Jonas Gava <[email protected]>
1 parent 995b629 commit 96c6336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/grt/src/fastroute/src/graph2d.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ void Graph2D::updateEstUsageH(const int x,
214214
+= getCostNDRAware(net, x, y, usage, EdgeDirection::Horizontal);
215215

216216
if (usage > 0) {
217-
v_used_ggrid_.insert({x, y});
217+
h_used_ggrid_.insert({x, y});
218218
}
219219
}
220220

0 commit comments

Comments
 (0)