Skip to content

Commit

Permalink
Merge branch 'refactor/simplify-depth'
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoupey committed Oct 10, 2024
2 parents 81b2a95 + 4801ec2 commit e731291
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 19 deletions.
41 changes: 22 additions & 19 deletions src/algorithms/local_search/local_search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1922,9 +1922,6 @@ void LocalSearch<Route,
PriorityReplace,
TSPFix>::run() {
bool try_ls_step = true;
bool first_step = true;

unsigned current_nb_removal = 1;

#ifdef LOG_LS
steps.push_back({utils::now(),
Expand Down Expand Up @@ -1953,34 +1950,42 @@ void LocalSearch<Route,
utils::format_solution(_input, _best_sol)});
#endif
} else {
if (!first_step) {
++current_nb_removal;
}
// No improvement so back to previous best known for further
// steps.
if (_best_sol_indicators < current_sol_indicators) {
// Back to best known solution for further steps.
_sol = _best_sol;
_sol_state.setup(_sol);
}
#ifdef LOG_LS
if (_best_sol_indicators < current_sol_indicators ||
_best_sol_indicators == current_sol_indicators) {
steps.push_back({utils::now(),
log::EVENT::ROLLBACK,
OperatorName::MAX,
_best_sol_indicators,
std::nullopt});
}
steps.push_back({utils::now(),
log::EVENT::ROLLBACK,
OperatorName::MAX,
_best_sol_indicators,
std::nullopt});
#endif

if (_completed_depth.has_value()) {
// Rule out situation with first descent not yielding a better
// solution.
++_completed_depth.value();
}
}

if (!_completed_depth.has_value()) {
// End of first descent.
_completed_depth = 0;
}

// Try again on each improvement until we reach last job removal
// level or deadline is met.
try_ls_step = (current_nb_removal <= _depth) &&
assert(_completed_depth.has_value());
auto nb_removal = _completed_depth.value() + 1;
try_ls_step = (nb_removal <= _depth) &&
(!_deadline.has_value() || utils::now() < _deadline.value());

if (try_ls_step) {
// Get a looser situation by removing jobs.
for (unsigned i = 0; i < current_nb_removal; ++i) {
for (unsigned i = 0; i < nb_removal; ++i) {
remove_from_routes();
for (std::size_t v = 0; v < _sol.size(); ++v) {
// Update what is required for consistency in
Expand Down Expand Up @@ -2029,8 +2034,6 @@ void LocalSearch<Route,
utils::format_solution(_input, _sol)});
#endif
}

first_step = false;
}
}

Expand Down
1 change: 1 addition & 0 deletions src/algorithms/local_search/local_search.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class LocalSearch {
const unsigned _depth;
const Deadline _deadline;

std::optional<unsigned> _completed_depth;
std::vector<Index> _all_routes;

utils::SolutionState _sol_state;
Expand Down

0 comments on commit e731291

Please sign in to comment.