Skip to content

Commit a1f99a0

Browse files
committed
Version submitted to CRAN 0.5-1
1 parent d134670 commit a1f99a0

File tree

3 files changed

+25
-6
lines changed

3 files changed

+25
-6
lines changed

NEWS.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
* Fixed issue #21: Restricting search scope in MCMC temp environment data.
44

5+
* Removed annoying warning when using convergence checker.
6+
57

68
# fmcmc 0.5-0
79

R/convergence.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ convergence_auto <- function(freq = 1000L) {
373373
structure(function(x) {
374374

375375
who <- as.character(sys.call(-1L)[[1]])
376-
if (!length(who) || (who != "with_autostop"))
376+
if (!length(who) || (who != "MCMC_CALL"))
377377
warning("This function should not be used in a context other than ",
378378
"the argument `conv_checker` in `MCMC`.")
379379

inst/NEWS

+22-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
1-
fmcmc 0.5-1
1+
2+
3+
FMCMC 0.5-1
4+
25

36
- Fixed issue #21: Restricting search scope in MCMC temp environment
47
data.
58

6-
fmcmc 0.5-0
9+
- Removed annoying warning when using convergence checker.
10+
11+
12+
13+
FMCMC 0.5-0
14+
715

816
- The function fun passed to MCMC is now called two times less. It
917
shouldn’t significantly affect any previous results.
@@ -42,7 +50,10 @@ fmcmc 0.5-0
4250
This simulates 1,000 observations of age at death using US’s
4351
statistics.
4452

45-
fmcmc 0.4-0
53+
54+
55+
FMCMC 0.4-0
56+
4657

4758
- kernel_am and kernel_ram no longer fail when at least one parameter
4859
is an offset (fixed = TRUE for some parameter).
@@ -65,7 +76,10 @@ fmcmc 0.4-0
6576
- The functions to compute mean and variance recursively now allow us
6677
to do so using windows.
6778

68-
fmcmc 0.3-0
79+
80+
81+
FMCMC 0.3-0
82+
6983

7084
- Adding Vihola (2012)’s Robust Adaptive Metropolis, Haario et
7185
al. (2001)’s Adaptive Metropolis, and Thawornwattana et al. (2018)’s
@@ -80,6 +94,9 @@ fmcmc 0.3-0
8094
tagged in the fmcmc_kernel object will be excluded from the call to
8195
conv_checker.
8296

83-
fmcmc 0.2-0
97+
98+
99+
FMCMC 0.2-0
100+
84101

85102
- Added a NEWS.md file to track changes to the package.

0 commit comments

Comments
 (0)