Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed May 27, 2024
1 parent 85c84ff commit 2046363
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/models/UnivariateNormalDistribution.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@ struct UnivariateNormalDistribution{F,G}
mean::F
std_dev::G

function UnivariateNormalDistribution(;
mean::Function,
std_dev::Function,
)
function UnivariateNormalDistribution(; mean::Function, std_dev::Function)
return new{typeof(mean),typeof(std_dev)}(mean, std_dev)
end
end
Expand Down

0 comments on commit 2046363

Please sign in to comment.