Skip to content

Commit

Permalink
clean trailing white space
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Nov 23, 2022
1 parent eed27aa commit 88645c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ortools/constraint_solver/samples/vrp_initial_routes.cc
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void VrpInitialRoutes() {
searchParameters.set_first_solution_strategy(FirstSolutionStrategy_Value_PATH_CHEAPEST_ARC);
searchParameters.set_local_search_metaheuristic(LocalSearchMetaheuristic::GUIDED_LOCAL_SEARCH);
searchParameters.mutable_time_limit()->set_seconds(5);
// When an initial solution is given for search, the model will be closed with the default
// When an initial solution is given for search, the model will be closed with the default
// search parameters unless it is explicitly closed with the custom search parameters.
routing.CloseModelWithParameters(searchParameters);
// [END parameters]
Expand Down
2 changes: 1 addition & 1 deletion ortools/constraint_solver/samples/vrp_initial_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def distance_callback(from_index, to_index):
search_parameters.local_search_metaheuristic = (
routing_enums_pb2.LocalSearchMetaheuristic.GUIDED_LOCAL_SEARCH)
search_parameters.time_limit.FromSeconds(5)
# When an initial solution is given for search, the model will be closed with the default
# When an initial solution is given for search, the model will be closed with the default
# search parameters unless it is explicitly closed with the custom search parameters.
routing.CloseModelWithParameters(search_parameters)
# [END parameters]
Expand Down

0 comments on commit 88645c3

Please sign in to comment.