Skip to content

Commit

Permalink
Format .jl files (#448)
Browse files Browse the repository at this point in the history
Co-authored-by: prbzrg <79970151+prbzrg@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and prbzrg authored Oct 16, 2024
1 parent 9c40b2b commit b3e7920
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@ end

@inline function split_jac(x::AbstractMatrix{<:Real}, sz::Integer)
(
x[i:j, i:j] for (i, j) in zip(
firstindex(x, 1):sz:lastindex(x, 1),
(firstindex(x, 1) + sz - 1):sz:lastindex(x, 1),
)
x[i:j, i:j] for (i, j) in
zip(firstindex(x, 1):sz:lastindex(x, 1), (firstindex(x, 1)+sz-1):sz:lastindex(x, 1))
)
end

0 comments on commit b3e7920

Please sign in to comment.