mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-11-23 16:20:28 +01:00
parent
a827f8c425
commit
b20cd02d5b
@ -126,11 +126,13 @@ function compute_κandA(sdp_constraints, Δ::GroupAlgebraElement, solver::Abstra
|
|||||||
t = @timed SDP_problem = create_SDP_problem(sdp_constraints, Δ; upper_bound=upper_bound)
|
t = @timed SDP_problem = create_SDP_problem(sdp_constraints, Δ; upper_bound=upper_bound)
|
||||||
info(logger, timed_msg(t))
|
info(logger, timed_msg(t))
|
||||||
|
|
||||||
|
κ = 0.0
|
||||||
|
A = nothing
|
||||||
while κ == 0.0
|
while κ == 0.0
|
||||||
κ, A = try
|
try
|
||||||
solve_SDP(SDP_problem, solver)
|
κ, A = solve_SDP(SDP_problem, solver)
|
||||||
catch y
|
catch y
|
||||||
warn(logger, y)
|
warn(solver_logger, y)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return κ, A
|
return κ, A
|
||||||
|
Loading…
Reference in New Issue
Block a user