From b3e7920c467068bf4f4716a3d8c4b0e46b484b0a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:50:46 +0330 Subject: [PATCH] Format .jl files (#448) Co-authored-by: prbzrg <79970151+prbzrg@users.noreply.github.com> --- src/utils.jl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/utils.jl b/src/utils.jl index 30d8bc45..ac567256 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -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