Skip to content

Commit d5fcbe6

Browse files
authored
fix DRLS display (#81)
1 parent 3de04a9 commit d5fcbe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/algorithms/drls.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ end
186186
default_stopping_criterion(tol, ::DRLSIteration, state::DRLSState) = norm(state.res, Inf) / state.gamma <= tol
187187
default_solution(::DRLSIteration, state::DRLSState) = state.v
188188
default_display(it, ::DRLSIteration, state::DRLSState) = @printf(
189-
"%5d | %.3e | %.3e | %.3e\n", it, state.gamma / state.gamma, norm(state.res, Inf), state.tau,
189+
"%5d | %.3e | %.3e | %.3e\n", it, state.gamma, norm(state.res, Inf) / state.gamma, state.tau,
190190
)
191191

192192
"""

0 commit comments

Comments
 (0)