Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-lara committed Jul 10, 2024
1 parent d84d886 commit ad23fc2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/algorithms/sequential_algorithm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,11 @@ function solve_impl!(
# Solve main problem
status = ISSIM.RunStatus.RUNNING
for (index, subproblem) in container.subproblems
@info "Solving problem $index"
@show status = PSI.solve_impl!(subproblem, sys)
@show status != ISSIM.RunStatus.SUCCESSFULLY_FINALIZED
@debug "Solving problem $index"
status = PSI.solve_impl!(subproblem, sys)
if status != ISSIM.RunStatus.SUCCESSFULLY_FINALIZED
return status
end
error()
end

write_results_to_main_container(container)
Expand Down

0 comments on commit ad23fc2

Please sign in to comment.