Skip to content

Commit

Permalink
Merge pull request #358 from JuliaOpt/chriscoey-patch-1
Browse files Browse the repository at this point in the history
decrease gap and prim cut tols on D opt SOC cuts test
  • Loading branch information
chriscoey authored Apr 6, 2017
2 parents 05e1b64 + 9d7e752 commit 29a5397
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/conictest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,8 @@ function run_sdpexp_misocp(mip_solver_drives, mip_solver, cont_solver, log_level
probname = "expsdp_optimalD"
@testset "$testname" begin
solver = PajaritoSolver(mip_solver=mip_solver, cont_solver=cont_solver, log_level=log_level,
sdp_eig=true, sdp_soc=true)
sdp_eig=true, sdp_soc=true,
rel_gap=1e-6, prim_cut_feas_tol=1e-7)

(status, time, objval, objbound, sol) = solve_cbf(testname, probname, solver, redirect)

Expand All @@ -1040,7 +1041,8 @@ function run_sdpexp_misocp(mip_solver_drives, mip_solver, cont_solver, log_level
probname = "expsdp_optimalD"
@testset "$testname" begin
solver = PajaritoSolver(mip_solver=mip_solver, cont_solver=cont_solver, log_level=log_level,
sdp_eig=false, sdp_soc=true, init_sdp_soc=true)
sdp_eig=false, sdp_soc=true, init_sdp_soc=true,
rel_gap=1e-6, prim_cut_feas_tol=1e-7)

(status, time, objval, objbound, sol) = solve_cbf(testname, probname, solver, redirect)

Expand Down

0 comments on commit 29a5397

Please sign in to comment.