Skip to content

Commit 649946e

Browse files
committed
fix type abstract type of multivariate samplers
1 parent 3543cde commit 649946e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SliceSampling"
22
uuid = "43f4d3e8-9711-4a8c-bd1b-03ac73a255cf"
3-
version = "0.4.0"
3+
version = "0.4.1"
44

55
[deps]
66
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"

src/gibbspolar.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Gibbsian polar slice sampling algorithm by P. Schär, M. Habeck, and D. Rudolf [
1111
- `w::Real`: Initial window size for the radius shrinkage procedure
1212
- `max_proposals::Int`: Maximum number of proposals allowed until throwing an error (default: `typemax(Int)`).
1313
"""
14-
struct GibbsPolarSlice{W <: Real} <: AbstractSliceSampling
14+
struct GibbsPolarSlice{W <: Real} <: AbstractMultivariateSliceSampling
1515
w::W
1616
max_proposals::Int
1717
end

src/latent.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Latent slice sampling algorithm by Li and Walker[^LW2023].
1010
# Keyword Arguments
1111
- `max_proposals::Int`: Maximum number of proposals allowed until throwing an error (default: `typemax(Int)`).
1212
"""
13-
struct LatentSlice{B <: Real} <: AbstractSliceSampling
13+
struct LatentSlice{B <: Real} <: AbstractMultivariateSliceSampling
1414
beta ::B
1515
max_proposals::Int
1616
end

0 commit comments

Comments
 (0)