Skip to content

Commit

Permalink
fix(jssp): typo in event data file name (#459)
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 Nov 8, 2023
1 parent 6ba731d commit 2298c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/jssp/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn print_slice<T: Display>(slc: &[T]) {
#[inline]
pub fn create_event_map(base_dir: &Path) -> HashMap<String, PathBuf> {
HashMap::from([
("popmetrics".to_owned(), base_dir.join("evet_popmetrics.csv")),
("popmetrics".to_owned(), base_dir.join("event_popmetrics.csv")),
("newbest".to_owned(), base_dir.join("event_newbest.csv")),
("bestingen".to_owned(), base_dir.join("event_bestingen.csv")),
("popgentime".to_owned(), base_dir.join("event_popgentime.csv")),
Expand Down

0 comments on commit 2298c3f

Please sign in to comment.