Skip to content

Commit

Permalink
add plot for MINIMAX objective
Browse files Browse the repository at this point in the history
  • Loading branch information
giadasp committed Nov 15, 2020
1 parent 2379229 commit 075588d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function plot_results(ATAmodel; group_by_fs = false, results_folder = "PLOTS")
ICF_CC = copy(ICF)
end

if ATAmodel.obj.type == "MAXIMIN" || ATAmodel.obj.type == "CC"
if ATAmodel.obj.type == "MAXIMIN" || ATAmodel.obj.type == "CC" || ATAmodel.obj.type == "MINIMAX"
JLD2.@load "OPT/IIF.jld2" IIF
JLD2.@load "OPT/ICF.jld2" ICF
end
Expand All @@ -65,7 +65,7 @@ function plot_results(ATAmodel; group_by_fs = false, results_folder = "PLOTS")
end

#TIF e ICF
if ATAmodel.obj.type == "MAXIMIN" || ATAmodel.obj.type == "CC"
if ATAmodel.obj.type == "MAXIMIN" || ATAmodel.obj.type == "CC" || ATAmodel.obj.type == "MINIMAX"
if isfile("simPool.csv")
simPool = CSV.read("simPool.csv", DataFrames.DataFrame)
else
Expand Down

0 comments on commit 075588d

Please sign in to comment.