Skip to content

Commit 6d5a301

Browse files
committed
resolved conflicts with master branch
2 parents 2d75180 + b86ab99 commit 6d5a301

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vpr/src/place/place.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1432,7 +1432,7 @@ static e_move_result try_swap(const t_annealing_state* state,
14321432
crit_params.crit_exponent = state->crit_exponent;
14331433
crit_params.crit_limit = placer_opts.place_crit_limit;
14341434

1435-
e_move_type move_type; //move type number
1435+
e_move_type move_type = e_move_type::UNIFORM; //move type number
14361436
t_logical_block_type move_blk_type; //blk type that is chosen to be moved by the agent
14371437

14381438
num_ts_called++;
@@ -1461,7 +1461,7 @@ static e_move_result try_swap(const t_annealing_state* state,
14611461
rlim = state->rlim;
14621462
}
14631463

1464-
e_create_move create_move_outcome;
1464+
e_create_move create_move_outcome = e_create_move::ABORT;
14651465

14661466
//When manual move toggle button is active, the manual move window asks the user for input.
14671467
if (manual_move_enabled) {
@@ -1482,7 +1482,7 @@ static e_move_result try_swap(const t_annealing_state* state,
14821482
}
14831483
LOG_MOVE_STATS_PROPOSED(t, blocks_affected);
14841484

1485-
e_move_result move_outcome = ABORTED;
1485+
e_move_result move_outcome = e_move_result::ABORTED;
14861486

14871487
if (create_move_outcome == e_create_move::ABORT) {
14881488
LOG_MOVE_STATS_OUTCOME(std::numeric_limits<float>::quiet_NaN(),

0 commit comments

Comments
 (0)