Skip to content

Commit

Permalink
fix DRLS display (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
lostella authored Apr 9, 2022
1 parent 3de04a9 commit d5fcbe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithms/drls.jl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ end
default_stopping_criterion(tol, ::DRLSIteration, state::DRLSState) = norm(state.res, Inf) / state.gamma <= tol
default_solution(::DRLSIteration, state::DRLSState) = state.v
default_display(it, ::DRLSIteration, state::DRLSState) = @printf(
"%5d | %.3e | %.3e | %.3e\n", it, state.gamma / state.gamma, norm(state.res, Inf), state.tau,
"%5d | %.3e | %.3e | %.3e\n", it, state.gamma, norm(state.res, Inf) / state.gamma, state.tau,
)

"""
Expand Down

0 comments on commit d5fcbe6

Please sign in to comment.