Skip to content

Commit

Permalink
Fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
reinterpretcat committed May 11, 2024
1 parent 6759d4a commit 5b31a24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vrp-core/src/solver/heuristic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ mod dynamic {
let recreates = get_recreates(problem.as_ref(), random.clone());
let ruins = get_ruins(problem.clone(), environment.clone(), normal_limits.clone(), "normal")
.into_iter()
.chain(get_ruins(problem.clone(), environment.clone(), small_limits.clone(), "small").into_iter())
.chain(get_ruins(problem.clone(), environment.clone(), small_limits.clone(), "small"))
.collect::<Vec<_>>();

let extra_random_job = Arc::new(RandomJobRemoval::new(small_limits));
Expand Down

0 comments on commit 5b31a24

Please sign in to comment.