diff --git a/src/algorithms/sequential_algorithm.jl b/src/algorithms/sequential_algorithm.jl index 231db2c..c0c6747 100644 --- a/src/algorithms/sequential_algorithm.jl +++ b/src/algorithms/sequential_algorithm.jl @@ -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)