Skip to content

Commit 39afba3

Browse files
committed
Name change to ReversibleJumpMCMC.jl
1 parent 38e31a9 commit 39afba3

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "RJMCMC"
1+
name = "ReversibleJumpMCMC"
22
uuid = "4e599b9b-5231-4225-b353-2dfd54e54db8"
33
authors = ["Keith Lidke <klidke@unm.edu> and contributors"]
44
version = "0.1.0"

docs/make.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
push!(LOAD_PATH,"../src/")
22

33
using Documenter
4-
using RJMCMC
4+
using ReversibleJumpMCMC
55

66
makedocs(
7-
sitename = "RJMCMC",
7+
sitename = "ReversibleJumpMCMC",
88
format = Documenter.HTML(),
9-
modules = [RJMCMC]
9+
modules = [ReversibleJumpMCMC]
1010
)
1111

1212
# Documenter can also automatically deploy documentation to gh-pages.
1313
# See "Hosting Documentation" and deploydocs() in the Documenter manual
1414
# for more information.
1515

1616
deploydocs(;
17-
repo="github.com/LidkeLab/RJMCMC.jl.git",
17+
repo="github.com/LidkeLab/ReversibleJumpMCMC.jl.git",
1818
devbranch = "main"
1919
)

docs/src/RJMCMCLibrary.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# RJMCMC.jl Library
1+
# Library
22

3-
Documentation for RJMCMC.jl
3+
Documentation for ReversibleJumpMCMC.jl
44

55
```@autodocs
6-
Modules = [RJMCMC]
6+
Modules = [ReversibleJumpMCMC]
77
```

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# RJMCMC.jl
1+
# Overview
22

3-
RJMCMC.jl provides a lightweight framework for Reversible Jump Markov Chain Monte Carlo.
3+
ReversibleJumpMCMC.jl provides a lightweight framework for Reversible Jump Markov Chain Monte Carlo.
44

55
The framework is based around the following code block.
66

examples/gaussPDFmcmc.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Explore a 1D Gaussian PDF using a basic MCMC chain
2-
using RJMCMC
2+
using ReversibleJumpMCMC
33
using Distributions
44
using Plots
55

@@ -33,13 +33,13 @@ njumptypes = 1 # number of jump types for RJMCMC
3333
jumpprobability = [1] # vector
3434
proposalfuns = [mypropose] # vector
3535
acceptfuns = [myaccept] # vector
36-
rjs = RJMCMC.RJMCMCStruct(burnin, iterations, njumptypes, jumpprobability, proposalfuns, acceptfuns)
36+
rjs = ReversibleJumpMCMC.RJMCMCStruct(burnin, iterations, njumptypes, jumpprobability, proposalfuns, acceptfuns)
3737

3838
# initial state
3939
state0 = state1D(0f0)
4040

4141
# run chain
42-
rjc = RJMCMC.buildchain(rjs, mhs, state0)
42+
rjc = ReversibleJumpMCMC.buildchain(rjs, mhs, state0)
4343

4444
# extract states
4545
xchain = zeros(Float32, iterations)

src/RJMCMC.jl renamed to src/ReversibleJumpMCMC.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module RJMCMC
1+
module ReversibleJumpMCMC
22

33
using Plots
44

0 commit comments

Comments
 (0)