Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
chore: format suggestion
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
avik-pal and github-actions[bot] authored Jul 3, 2024
1 parent 6ff185f commit de63b49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ end
imag_part = __rand(rng, T, args...)
return Complex.(real_part, imag_part)
end
@inline function __randn(rng::AbstractRNG, ::Type{<:Complex{T}}, args...) where {T <: Number}
@inline function __randn(
rng::AbstractRNG, ::Type{<:Complex{T}}, args...) where {T <: Number}
real_part = __randn(rng, T, args...)
imag_part = __randn(rng, T, args...)
return Complex.(real_part, imag_part)
Expand Down

0 comments on commit de63b49

Please sign in to comment.