We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fba750 commit 48ba9b0Copy full SHA for 48ba9b0
src/AbstractMCMC.jl
@@ -55,9 +55,6 @@ in parallel.
55
"""
56
abstract type AbstractMCMCEnsemble end
57
58
-# Deprecate the old name AbstractMCMCParallel in favor of AbstractMCMCEnsemble
59
-Base.@deprecate_binding AbstractMCMCParallel AbstractMCMCEnsemble false
60
-
61
62
MCMCThreads
63
@@ -88,5 +85,6 @@ include("interface.jl")
88
85
include("sample.jl")
89
86
include("stepper.jl")
90
87
include("transducer.jl")
+include("deprecations.jl")
91
92
end # module AbstractMCMC
src/deprecations.jl
@@ -0,0 +1,2 @@
1
+# Deprecate the old name AbstractMCMCParallel in favor of AbstractMCMCEnsemble
2
+Base.@deprecate_binding AbstractMCMCParallel AbstractMCMCEnsemble false
0 commit comments