Skip to content

Commit

Permalink
Merge pull request #3 from mhauru/patch-1
Browse files Browse the repository at this point in the history
Fix a typo in output prints.
  • Loading branch information
Jutho authored Mar 16, 2020
2 parents e951ad7 + 5bfc6a2 commit 9a8ec5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lbfgs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function optimize(fg, x, alg::LBFGS; retract = _retract, inner = _inner,
@info @sprintf("LBFGS: converged after %d iterations: f = %.12f, ‖∇f‖ = %.4e",
numiter, f, normgrad)
else
@warn @sprintf("LBGFS: not converged to requested tol: f = %.12f, ‖∇f‖ = %.4e",
@warn @sprintf("LBFGS: not converged to requested tol: f = %.12f, ‖∇f‖ = %.4e",
f, normgrad)
end
end
Expand Down

0 comments on commit 9a8ec5f

Please sign in to comment.