Skip to content

Commit

Permalink
JuliaFormatter.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Jun 9, 2024
1 parent e092525 commit c42ac64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/derivative_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function calc_H!(H, integ, cache)
topleft = view(ddu, 1:d, 1:d)
topright = view(ddu, 1:d, d+1:2d)
collect(zip(diag(topleft), diag(topright)))
c = [[a b;] for (a,b) in zip(diag(topleft), diag(topright))]
c = [[a b;] for (a, b) in zip(diag(topleft), diag(topright))]
BlocksOfDiagonals(c)
end
_matmul!(H, ddu_diag, cache.SolProj, -1.0, 1.0)
Expand Down

0 comments on commit c42ac64

Please sign in to comment.