Skip to content

Commit

Permalink
increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdfish committed Aug 30, 2020
1 parent f27f4df commit 5d83809
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DifferentialEvolutionMCMC"
uuid = "607db5a9-722a-4af8-9a06-1810c0fe385b"
authors = ["itsdfish <[email protected]> and contributors"]
version = "0.3.0"
version = "0.3.1"

[deps]
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
Expand Down
2 changes: 1 addition & 1 deletion src/structs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function num_parms(priors)
end
n = 0
for p in priors
length(p) == 1 ? n += 1 : (n += sum(p[2]))
n += length(p) == 1 ? 1 : prod(p[2])
end
return n
end
Expand Down

0 comments on commit 5d83809

Please sign in to comment.