Skip to content

Commit

Permalink
gg
Browse files Browse the repository at this point in the history
  • Loading branch information
JaimeRZP committed Jan 15, 2024
1 parent 848526b commit 380fcf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/targets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function CustomTarget(nlogp, grad_nlogp, θ_start::Vector{Float64};
inv_transform=NoTransform)
d = length(θ_start)
if θ_names==nothing
θ_names = [String("θ_", i) for i=1:d]
θ_names = [string("θ_", i) for i=1:d]
end
return Target(d, Hamiltonian(nlogp, grad_nlogp), transform, inv_transform, θ_start, θ_names)
end
Expand Down

0 comments on commit 380fcf2

Please sign in to comment.