Skip to content

Commit

Permalink
fix(jssp): iterinfo event csv file had invalid schema (#435)
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 18, 2023
1 parent b4ac6fc commit ab6fb7a
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 @@ -44,7 +44,7 @@ impl Probe<JsspIndividual> for JsspProbe {
info!(target: "popgentime", "event_name,time");
info!(target: "newbest", "event_name,generation,total_duration,fitness");
info!(target: "bestingen", "event_name,generation,total_duration,fitness");
info!(target: "iterinfo", "event_name,eval_time,sel_time,cross_time,mut_time,repl_time,iter_time");
info!(target: "iterinfo", "event_name,generation,eval_time,sel_time,cross_time,mut_time,repl_time,iter_time");
}

fn on_initial_population_created(
Expand Down

0 comments on commit ab6fb7a

Please sign in to comment.