From 12811f2c355e41cf5b7e544f5b43b7e0cb378f59 Mon Sep 17 00:00:00 2001 From: Stan Jenkins Date: Fri, 11 Oct 2024 17:16:26 -0400 Subject: [PATCH] [Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1 --- src/stan/analyze/mcmc/split_rank_normalized_ess.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/stan/analyze/mcmc/split_rank_normalized_ess.hpp b/src/stan/analyze/mcmc/split_rank_normalized_ess.hpp index 4087e497f7..4954bc4580 100644 --- a/src/stan/analyze/mcmc/split_rank_normalized_ess.hpp +++ b/src/stan/analyze/mcmc/split_rank_normalized_ess.hpp @@ -144,7 +144,7 @@ inline std::pair split_rank_normalized_ess( } /** - * Computes the split effective sample size (split ESS) + * Computes the split effective sample size (split ESS) * diagnostic for a set of per-chain draws. * * When the number of total draws N is odd, the last draw is ignored. @@ -155,8 +155,7 @@ inline std::pair split_rank_normalized_ess( * @param chains matrix of per-chain draws, num_iters X chain * @return potential scale reduction */ -inline double split_basic_ess( - const Eigen::MatrixXd& chains) { +inline double split_basic_ess(const Eigen::MatrixXd& chains) { Eigen::MatrixXd split_draws_matrix = split_chains(chains); if (!is_finite_and_varies(split_draws_matrix) || split_draws_matrix.rows() < 4) { @@ -164,7 +163,7 @@ inline double split_basic_ess( } return ess(split_draws_matrix); } - + } // namespace analyze } // namespace stan