Skip to content

Commit

Permalink
delay at final dest more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
vitelot committed Jul 12, 2023
1 parent 62ba05a commit 453583a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions postprocessing/delays_at_final_dest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ function main(dir1="/Users/servedio/prgs/training/simulation/data/rotations",

delayList_rot = Int[];
for file in files_rot
# file = "timetable_simulation_0001.csv";

@info "Processing file $dir1/$file";

df = CSV.read("$dir1/$file", DataFrame);

Expand All @@ -45,9 +46,8 @@ function main(dir1="/Users/servedio/prgs/training/simulation/data/rotations",

delayList_norot = Int[];
for file in files_norot
# file = "timetable_simulation_0001.csv";


@info "Processing file $dir2/$file";

df = CSV.read("$dir2/$file", DataFrame);

Expand All @@ -59,6 +59,8 @@ function main(dir1="/Users/servedio/prgs/training/simulation/data/rotations",
push!(delayList_norot, delay);
end
end

@info "Building the cumulative distribution";

(del_rot, r_rot) = cumul!(delayList_rot);
(del_norot, r_norot) = cumul!(delayList_norot);
Expand Down

0 comments on commit 453583a

Please sign in to comment.