We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98e73d0 commit ac4313fCopy full SHA for ac4313f
1 file changed
slurm/merge.jl
@@ -70,7 +70,7 @@ function main(config::Dict)
70
n_samples = length(read(f["termination_status"]))
71
feasible = trues(n_samples)
72
end
73
- feasible .&= (read(f["termination_status"]) .== "OPTIMAL") .| (read(f["termination_status"]) .== "LOCALLY_SOLVED")
+ feasible .&= (read(f["termination_status"]) .== "OPTIMAL") .| (read(f["termination_status"]) .== "LOCALLY_SOLVED") .| (read(f["termination_status"]) .== "SLOW_PROGRESS")
74
feasible .&= (read(f["primal_status"]) .== "FEASIBLE_POINT")
75
feasible .&= (read(f["dual_status"]) .== "FEASIBLE_POINT")
76
0 commit comments