mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-11-13 22:05:27 +01:00
tad better try...catch syntax
This commit is contained in:
parent
837988c381
commit
69e74190af
@ -124,13 +124,11 @@ function compute_κandA(sdp_constraints, Δ::GroupAlgebraElement, solver::Abstra
|
||||
t = @timed SDP_problem = create_SDP_problem(sdp_constraints, Δ; upper_bound=upper_bound)
|
||||
info(logger, timed_msg(t))
|
||||
|
||||
κ = 0.0
|
||||
A = nothing
|
||||
while κ == 0.0
|
||||
try
|
||||
κ, A = solve_SDP(SDP_problem, solver)
|
||||
κ, A = try
|
||||
solve_SDP(SDP_problem, solver)
|
||||
catch y
|
||||
warn(solver_logger, y)
|
||||
warn(logger, y)
|
||||
end
|
||||
end
|
||||
return κ, A
|
||||
|
Loading…
Reference in New Issue
Block a user