Skip to content

Commit 58495b4

Browse files
🤖 Format .jl files (#46)
Co-authored-by: juliohm <[email protected]>
1 parent 35370f8 commit 58495b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/theoretical/transiogram/spherical.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function (t::SphericalTransiogram)(h)
2929
v = 3(h′ / r′) / 2 - (h′ / r′)^3 / 2
3030
T = typeof(p[1] * v)
3131
SMatrix{L,L}(
32-
i == j ? (h′ < r′) * T(1 - (1 - p[j]) * v) + (h′ r′) * T(p[j]) :
33-
(h′ < r′) * T((p[j] * v)) + (h′ r′) * T(p[j]) for i in 1:L, j in 1:L
32+
i == j ? (h′ < r′) * T(1 - (1 - p[j]) * v) + (h′ r′) * T(p[j]) : (h′ < r′) * T((p[j] * v)) + (h′ r′) * T(p[j])
33+
for i in 1:L, j in 1:L
3434
)
3535
end

0 commit comments

Comments
 (0)