@@ -82,8 +82,8 @@ template <bool propto = false, typename Eta, typename Mean, typename CovarFun,
8282 typename CovarArgs, typename OpsTuple>
8383inline auto laplace_marginal_tol_neg_binomial_2_log_lpmf (
8484 const std::vector<int >& y, const std::vector<int >& y_index, const Eta& eta,
85- Mean&& mean, CovarFun&& covariance_function, CovarArgs && covar_args ,
86- int hessian_block_size , OpsTuple&& ops, std::ostream* msgs) {
85+ Mean&& mean, int hessian_block_size, CovarFun && covariance_function ,
86+ CovarArgs&& covar_args , OpsTuple&& ops, std::ostream* msgs) {
8787 auto options
8888 = internal::tuple_to_laplace_options (std::forward<OpsTuple>(ops));
8989 options.hessian_block_size = hessian_block_size;
@@ -118,8 +118,8 @@ template <bool propto = false, typename Eta, typename Mean, typename CovarFun,
118118 typename CovarArgs>
119119inline auto laplace_marginal_neg_binomial_2_log_lpmf (
120120 const std::vector<int >& y, const std::vector<int >& y_index, const Eta& eta,
121- Mean&& mean, CovarFun&& covariance_function, CovarArgs && covar_args ,
122- int hessian_block_size , std::ostream* msgs) {
121+ Mean&& mean, int hessian_block_size, CovarFun && covariance_function ,
122+ CovarArgs&& covar_args , std::ostream* msgs) {
123123 auto options = laplace_options_default{hessian_block_size};
124124 return laplace_marginal_density (
125125 neg_binomial_2_log_likelihood{},
@@ -184,8 +184,8 @@ template <bool propto = false, typename Eta, typename Mean, typename CovarFun,
184184inline auto laplace_marginal_tol_neg_binomial_2_log_summary_lpmf (
185185 const std::vector<int >& y, const std::vector<int >& n_per_group,
186186 const std::vector<int >& counts_per_group, const Eta& eta, Mean&& mean,
187- CovarFun&& covariance_function, CovarArgs && covar_args ,
188- int hessian_block_size , OpsTuple&& ops, std::ostream* msgs) {
187+ int hessian_block_size, CovarFun && covariance_function ,
188+ CovarArgs&& covar_args , OpsTuple&& ops, std::ostream* msgs) {
189189 auto options
190190 = internal::tuple_to_laplace_options (std::forward<OpsTuple>(ops));
191191 options.hessian_block_size = hessian_block_size;
@@ -222,8 +222,8 @@ template <bool propto = false, typename Eta, typename Mean, typename CovarFun,
222222inline auto laplace_marginal_neg_binomial_2_log_summary_lpmf (
223223 const std::vector<int >& y, const std::vector<int >& n_per_group,
224224 const std::vector<int >& counts_per_group, const Eta& eta, Mean&& mean,
225- CovarFun&& covariance_function, CovarArgs && covar_args ,
226- int hessian_block_size , std::ostream* msgs) {
225+ int hessian_block_size, CovarFun && covariance_function ,
226+ CovarArgs&& covar_args , std::ostream* msgs) {
227227 auto options = laplace_options_default{hessian_block_size};
228228 return laplace_marginal_density (
229229 neg_binomial_2_log_likelihood_summary{},
0 commit comments