Skip to content

Commit

Permalink
Use AbstractMvNormal (#124)
Browse files Browse the repository at this point in the history
* Use AbstractMvNormal

* Bump patch

Co-authored-by: Will Tebbutt <[email protected]>
  • Loading branch information
willtebbutt and Will Tebbutt authored Aug 14, 2020
1 parent f0f78aa commit d304046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Stheno"
uuid = "8188c328-b5d6-583d-959b-9690869a5511"
version = "0.6.7"
version = "0.6.8"

[deps]
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
Expand Down
4 changes: 2 additions & 2 deletions src/abstract_gp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ next_index(gpc::GPC) = gpc.n + 1
#

import Base: rand, length
import Distributions: logpdf, ContinuousMultivariateDistribution
import Distributions: logpdf, AbstractMvNormal

export mean, std, cov, marginals, rand, logpdf, elbo, dtc

Expand All @@ -26,7 +26,7 @@ export mean, std, cov, marginals, rand, logpdf, elbo, dtc
The finite-dimensional projection of the AbstractGP `f` at `x`.
"""
struct FiniteGP{Tf<:AbstractGP, Tx<:AV, TΣy} <: ContinuousMultivariateDistribution
struct FiniteGP{Tf<:AbstractGP, Tx<:AV, TΣy} <: AbstractMvNormal
f::Tf
x::Tx
Σy::TΣy
Expand Down

2 comments on commit d304046

@willtebbutt
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/19504

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.6.8 -m "<description of version>" d3040465c69e3eca7196368c4915708fc5b35f5e
git push origin v0.6.8

Please sign in to comment.