File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 35
35
include (" deprecations.jl" )
36
36
37
37
@testset " SCS with warmstarts" begin
38
- # We exclude `sdp_matrix_frac_atom` due to the bug https://github.com/JuliaOpt/SCS.jl/issues/153
39
- # Likewise, `sdp_sdp_constraints` hits a bug https://github.com/JuliaOpt/SCS.jl/issues/167
40
- run_tests (; exclude= [r" mip" , r" sdp_matrix_frac_atom" , r" sdp_sdp_constraints" ]) do p
38
+ # We exclude `sdp_sdp_constraints` since it seems to hit a bug https://github.com/JuliaOpt/SCS.jl/issues/167
39
+ run_tests (; exclude= [r" mip" , r" sdp_sdp_constraints" ]) do p
41
40
solve! (p, () -> SCS. Optimizer (verbose= 0 , eps= 1e-6 ); warmstart = true )
42
41
end
43
42
end
44
43
45
44
@testset " SCS" begin
46
45
# Exclusions same as for "SCS with warmstarts"
47
- run_tests (; exclude= [r" mip" , r" sdp_matrix_frac_atom " , r" sdp_sdp_constraints" ]) do p
46
+ run_tests (; exclude= [r" mip" , r" sdp_sdp_constraints" ]) do p
48
47
solve! (p, () -> SCS. Optimizer (verbose= 0 , eps= 1e-6 ))
49
48
end
50
49
end
You can’t perform that action at this time.
0 commit comments