Skip to content

Commit

Permalink
xform(::MvNormal) (#225)
Browse files Browse the repository at this point in the history
* xform(::MvNormal)

* version
  • Loading branch information
cscherrer authored Nov 29, 2020
1 parent c4d37db commit 353c30d
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 = "Soss"
uuid = "8ce77f84-9b61-11e8-39ff-d17a774bf41c"
author = ["Chad Scherrer <chad.scherrer@gmail.com>"]
version = "0.16.1"
version = "0.16.2"

[deps]
AdvancedHMC = "0bf59076-c3b1-5ca4-86bd-e02cd72cde3d"
Expand Down
2 changes: 1 addition & 1 deletion src/primitives/xform.jl
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ function xform(d::iid, _data)
as(Array, xform(d.dist, _data), d.size...)
end

xform(d::MvNormal) = as(Vector, length(d))
xform(d::MvNormal, _data=NamedTuple()) = as(Array, size(d))

2 comments on commit 353c30d

@cscherrer
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/25511

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.16.2 -m "<description of version>" 353c30d6fe3ca9a6f336a2d968766957645fc0de
git push origin v0.16.2

Please sign in to comment.