Skip to content

Commit 59ed7d1

Browse files
committed
🤖 Format .jl files
1 parent f1e5ee9 commit 59ed7d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lbfgs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ function diag!(op::LBFGSOperator{T}, d) where {T}
378378
@inbounds for i = 1:(data.mem)
379379
k = mod(data.insert + i - 2, data.mem) + 1
380380
if data.ys[k] != 0
381-
@. d += data.b[k].^2 - data.a[k].^2
381+
@. d += data.b[k] .^ 2 - data.a[k] .^ 2
382382
end
383383
end
384384
return d

0 commit comments

Comments
 (0)