File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
# ' Likelihood-Free Markhov Chain Monte Carlo (LFMCMC)
2
2
# '
3
3
# '
4
- # ' @returns The model of class `epiworld_lfmcmc`
4
+ # ' @aliases epiworld_lfmcmc
5
+ # ' @details
6
+ # ' TODO: Detail LFMCMC
7
+ # ' @returns
8
+ # ' - The `LFMCMC`function returns a model of class [epiworld_lfmcmc].
9
+ # ' @examples
10
+ # ' model_lfmcmc <- LFMCMC()
5
11
# ' @export
6
12
LFMCMC <- function () {
7
13
structure(
@@ -11,14 +17,14 @@ LFMCMC <- function() {
11
17
}
12
18
13
19
# ' @rdname LFMCMC
14
- # ' @param lfmcmc LFMCMC model
20
+ # ' @param model LFMCMC model
15
21
# ' @param params_init_ Initial model parameters
16
22
# ' @param n_samples_ Number of samples
17
23
# ' @param epsilon_ Epsilon parameter
18
24
# ' @returns The simulated model of class `epiworld_lfmcmc`.
19
25
# ' @export
20
- run.epiworld_lfmcmc <- function (lfmcmc , params_init_ , n_samples_ , epsilon_ ) {
21
- run_lfmcmc_cpp(lfmcmc , params_init_ , n_samples_ , epsilon_ )
26
+ run.epiworld_lfmcmc <- function (model , params_init_ , n_samples_ , epsilon_ ) {
27
+ run_lfmcmc_cpp(model , params_init_ , n_samples_ , epsilon_ )
22
28
invisible (lfmcmc )
23
29
}
24
30
You can’t perform that action at this time.
0 commit comments