Skip to content

Commit

Permalink
Add CDCS
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat committed Apr 14, 2019
1 parent ce6edd7 commit e806358
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/cdcs_tests.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
include("solver_preamble.jl")
import CDCS
# Iterations:
# dsos_concave_then_convex_cubic : > 2000, < 3000
factory = with_optimizer(CDCS.Optimizer, verbose=0, maxIter=3000)
config = MOI.Test.TestConfig(atol=1e-3, rtol=1e-3, query=false)
@testset "Linear" begin
Tests.linear_test(factory, config)
end
@testset "SOC" begin
Tests.soc_test(factory, config)
end
@testset "SDP" begin
Tests.sd_test(factory, config)
end
1 change: 1 addition & 0 deletions test/solver_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ solver_test(:CSDP)
solver_test(:SDPA)

# SDP+SOC solvers
solver_test(:CDCS)
solver_test(:COSMO)
solver_test(:Mosek)
solver_test(:SeDuMi)
Expand Down

0 comments on commit e806358

Please sign in to comment.