Skip to content

Commit 834e589

Browse files
add separators to annelaer.cpp
1 parent f7c239f commit 834e589

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

vpr/src/place/annealer.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
#include "placer_breakpoint.h"
1818
#include "RL_agent_util.h"
1919

20+
/**************************************************************************/
21+
/*************** Static Function Declarations *****************************/
22+
/**************************************************************************/
23+
2024
/**
2125
* @brief Check if the setup slack has gotten better or worse due to block swap.
2226
*
@@ -38,6 +42,9 @@
3842
static float analyze_setup_slack_cost(const PlacerSetupSlacks* setup_slacks,
3943
const PlacerState& placer_state);
4044

45+
/*************************************************************************/
46+
/*************** Static Function Definitions *****************************/
47+
/*************************************************************************/
4148

4249
static float analyze_setup_slack_cost(const PlacerSetupSlacks* setup_slacks,
4350
const PlacerState& placer_state) {
@@ -78,6 +85,10 @@ static float analyze_setup_slack_cost(const PlacerSetupSlacks* setup_slacks,
7885
return 1;
7986
}
8087

88+
/**************************************************************************************/
89+
/*************** Member Function Definitions for t_annealing_state ********************/
90+
/**************************************************************************************/
91+
8192
///@brief Constructor: Initialize all annealing state variables and macros.
8293
t_annealing_state::t_annealing_state(float first_t,
8394
float first_rlim,
@@ -170,6 +181,10 @@ void t_annealing_state::update_crit_exponent(const t_placer_opts& placer_opts) {
170181
+ placer_opts.td_place_exp_first;
171182
}
172183

184+
/**************************************************************************************/
185+
/*************** Member Function Definitions for PlacementAnnealer ********************/
186+
/**************************************************************************************/
187+
173188
PlacementAnnealer::PlacementAnnealer(const t_placer_opts& placer_opts,
174189
PlacerState& placer_state,
175190
t_placer_costs& costs,

0 commit comments

Comments
 (0)