File tree 3 files changed +25
-6
lines changed
3 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
* Fixed issue #21 : Restricting search scope in MCMC temp environment data.
4
4
5
+ * Removed annoying warning when using convergence checker.
6
+
5
7
6
8
# fmcmc 0.5-0
7
9
Original file line number Diff line number Diff line change @@ -373,7 +373,7 @@ convergence_auto <- function(freq = 1000L) {
373
373
structure(function (x ) {
374
374
375
375
who <- as.character(sys.call(- 1L )[[1 ]])
376
- if (! length(who ) || (who != " with_autostop " ))
376
+ if (! length(who ) || (who != " MCMC_CALL " ))
377
377
warning(" This function should not be used in a context other than " ,
378
378
" the argument `conv_checker` in `MCMC`." )
379
379
Original file line number Diff line number Diff line change 1
- fmcmc 0.5-1
1
+
2
+
3
+ FMCMC 0.5-1
4
+
2
5
3
6
- Fixed issue #21: Restricting search scope in MCMC temp environment
4
7
data.
5
8
6
- fmcmc 0.5-0
9
+ - Removed annoying warning when using convergence checker.
10
+
11
+
12
+
13
+ FMCMC 0.5-0
14
+
7
15
8
16
- The function fun passed to MCMC is now called two times less. It
9
17
shouldn’t significantly affect any previous results.
@@ -42,7 +50,10 @@ fmcmc 0.5-0
42
50
This simulates 1,000 observations of age at death using US’s
43
51
statistics.
44
52
45
- fmcmc 0.4-0
53
+
54
+
55
+ FMCMC 0.4-0
56
+
46
57
47
58
- kernel_am and kernel_ram no longer fail when at least one parameter
48
59
is an offset (fixed = TRUE for some parameter).
@@ -65,7 +76,10 @@ fmcmc 0.4-0
65
76
- The functions to compute mean and variance recursively now allow us
66
77
to do so using windows.
67
78
68
- fmcmc 0.3-0
79
+
80
+
81
+ FMCMC 0.3-0
82
+
69
83
70
84
- Adding Vihola (2012)’s Robust Adaptive Metropolis, Haario et
71
85
al. (2001)’s Adaptive Metropolis, and Thawornwattana et al. (2018)’s
@@ -80,6 +94,9 @@ fmcmc 0.3-0
80
94
tagged in the fmcmc_kernel object will be excluded from the call to
81
95
conv_checker.
82
96
83
- fmcmc 0.2-0
97
+
98
+
99
+ FMCMC 0.2-0
100
+
84
101
85
102
- Added a NEWS.md file to track changes to the package.
You can’t perform that action at this time.
0 commit comments