Skip to content

Commit

Permalink
use Int not Int64
Browse files Browse the repository at this point in the history
  • Loading branch information
scheidan committed Oct 3, 2024
1 parent f30fbaa commit cb08d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SimulatedAnnealingABC.jl
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ function update_population!(population_state::SABCresult, f_dist, prior, args...
# ----------------------------------------------------------
# update particles

n_accept_tmp = Threads.Atomic{Int64}(0)
n_accept_tmp = Threads.Atomic{Int}(0)

Threads.@threads for i in eachindex(population)

Expand Down

0 comments on commit cb08d0f

Please sign in to comment.