Skip to content

Commit 6498e65

Browse files
Fix format
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ade6a97 commit 6498e65

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/utilities.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ const AbstractScalarOrVec{T} = Union{T,AbstractVector{T}} where {T<:AbstractFloa
55
function _randn(rng::AbstractRNG, ::Type{T}, dim::Int, n_chains::Int) where {T}
66
return randn(rng, T, dim, n_chains)
77
end
8-
function _randn(rngs::AbstractVector{<:AbstractRNG}, ::Type{T}, dim::Int, n_chains::Int) where {T}
8+
function _randn(
9+
rngs::AbstractVector{<:AbstractRNG},
10+
::Type{T},
11+
dim::Int,
12+
n_chains::Int,
13+
) where {T}
914
@argcheck length(rngs) == n_chains
1015
out = similar(rngs, T, dim, n_chains)
1116
for (x, rng) in zip(eachcol(out), rngs)

0 commit comments

Comments
 (0)