[dfe06d]: / src / priors.h

Download this file

24 lines (13 with data), 569 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef OUTBREAKER2_PRIORS_H
#define OUTBREAKER2_PRIORS_H
double cpp_prior_mu(Rcpp::List param, Rcpp::List config,
Rcpp::RObject custom_function);
double cpp_prior_pi(Rcpp::List param, Rcpp::List config,
Rcpp::RObject custom_function);
double cpp_prior_eps(Rcpp::List param, Rcpp::List config,
Rcpp::RObject custom_function);
double cpp_prior_lambda(Rcpp::List param, Rcpp::List config,
Rcpp::RObject custom_function);
double cpp_prior_all(Rcpp::List param, Rcpp::List config,
Rcpp::RObject custom_functions = R_NilValue);
#endif