Skip to content

Commit 7110636

Browse files
committed
[vpr][place] fix estimated_wl var name
1 parent d848230 commit 7110636

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/place/placement_log_printer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ void PlacementLogPrinter::print_post_placement_stats() const {
237237
placer_.annealer_->get_move_abortion_logger().report_aborted_moves();
238238

239239
VTR_LOG("\n");
240-
double expected_wirelength = placer_.net_cost_handler_.get_total_wirelength_estimate();
241-
VTR_LOG("BB estimate of min-dist (placement) wire length: %.0f\n", expected_wirelength);
240+
double estimated_wirelength = placer_.net_cost_handler_.get_total_wirelength_estimate();
241+
VTR_LOG("BB estimate of min-dist (placement) wire length: %.0f\n", estimated_wirelength);
242242

243243
if (placer_.placer_opts_.place_algorithm.is_timing_driven()) {
244244
//Final timing estimate

0 commit comments

Comments
 (0)