Skip to content

Commit

Permalink
fix(jssp): run clippy... (#438)
Browse files Browse the repository at this point in the history
<!-- If applicable - remember to add the PR to the EA Rust project (ONLY
IF THERE IS NO LINKED ISSUE) -->

## Description

<!-- Please describe the motivation & changes introduced by this PR -->

## Linked issues

<!-- Please use "Resolves #<issue_no> syntax in case this PR should be
linked to an issue -->

## Important implementation details

<!-- if any, optional section -->
  • Loading branch information
kkafar authored Oct 19, 2023
1 parent eec2250 commit 93ab557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/jssp/problem/probe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl JsspProbe {
}
}

return (n_unique as f64) / (population.len() as f64);
(n_unique as f64) / (population.len() as f64)
}

// #[inline]
Expand Down

0 comments on commit 93ab557

Please sign in to comment.