Skip to content

Commit 018dcc4

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/adaptation/stepsize.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ NesterovDualAveraging(
115115
NesterovDualAveraging(γ, t_0, κ, δ, DAState(ϵ))
116116

117117
NesterovDualAveraging::T, ϵ::VT) where {T<:AbstractFloat,VT<:AbstractScalarOrVec{T}} =
118-
NesterovDualAveraging(T(1//20), T(10), T(3//4), δ, ϵ)
118+
NesterovDualAveraging(T(1 // 20), T(10), T(3 // 4), δ, ϵ)
119119

120120
# Ref: https://github.com/stan-dev/stan/blob/develop/src/stan/mcmc/stepsize_adaptation.hpp
121121
# Note: This function is not merged with `adapt!` to empahsize the fact that

0 commit comments

Comments
 (0)