We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9c3074 commit ea52b13Copy full SHA for ea52b13
vpr/src/place/median_move_generator.cpp
@@ -101,8 +101,10 @@ e_create_move MedianMoveGenerator::propose_move(t_pl_blocks_to_be_moved& blocks_
101
place_move_ctx.Y_coord.push_back(coords.ymax);
102
}
103
104
- if ((place_move_ctx.X_coord.empty()) || (place_move_ctx.Y_coord.empty()))
+ if ((place_move_ctx.X_coord.empty()) || (place_move_ctx.Y_coord.empty())) {
105
+ VTR_LOGV_DEBUG(g_vpr_ctx.placement().f_placer_debug, "\tMove aborted - X_coord and y_coord are empty\n");
106
return e_create_move::ABORT;
107
+ }
108
109
//calculate the median region
110
std::sort(place_move_ctx.X_coord.begin(), place_move_ctx.X_coord.end());
0 commit comments