Skip to content

Commit ac4313f

Browse files
Add SLOW_PROGRESS as a feasible termination status in merge.jl
1 parent 98e73d0 commit ac4313f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

slurm/merge.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function main(config::Dict)
7070
n_samples = length(read(f["termination_status"]))
7171
feasible = trues(n_samples)
7272
end
73-
feasible .&= (read(f["termination_status"]) .== "OPTIMAL") .| (read(f["termination_status"]) .== "LOCALLY_SOLVED")
73+
feasible .&= (read(f["termination_status"]) .== "OPTIMAL") .| (read(f["termination_status"]) .== "LOCALLY_SOLVED") .| (read(f["termination_status"]) .== "SLOW_PROGRESS")
7474
feasible .&= (read(f["primal_status"]) .== "FEASIBLE_POINT")
7575
feasible .&= (read(f["dual_status"]) .== "FEASIBLE_POINT")
7676
end

0 commit comments

Comments
 (0)