Skip to content

Commit 920fd13

Browse files
committed
Update optimization.jl
recomment out rethrow statements
1 parent 83b07f0 commit 920fd13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/optimization.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function optimization_engine(
8989
# save empty dd and error to directory
9090
save(savedir, nothing, ini, act; error=e, timer=true, freeze=false, overwrite_files=true)
9191

92-
rethrow(e) # uncomment for debugging purposes
92+
#rethrow(e) # uncomment for debugging purposes
9393

9494
ff = Float64[Inf for f in objective_functions]
9595
gg = Float64[Inf for g in constraint_functions]
@@ -265,7 +265,7 @@ function optimization_engine(
265265
CSV.write(csv_filepath, df)
266266
end
267267

268-
rethrow(e) # uncomment for debugging purposes
268+
#rethrow(e) # uncomment for debugging purposes
269269

270270
ff = Float64[Inf for f in objective_functions]
271271
gg = Float64[Inf for g in constraint_functions]

0 commit comments

Comments
 (0)