From fd2e2e013269d1b2f38b927cb7ef45a278c990a5 Mon Sep 17 00:00:00 2001 From: Stan Jenkins Date: Fri, 2 Aug 2024 00:32:12 -0400 Subject: [PATCH] [Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1 --- .../analyze/mcmc/compute_potential_scale_reduction_test.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/test/unit/analyze/mcmc/compute_potential_scale_reduction_test.cpp b/src/test/unit/analyze/mcmc/compute_potential_scale_reduction_test.cpp index 6eb8791919..65d5c15a81 100644 --- a/src/test/unit/analyze/mcmc/compute_potential_scale_reduction_test.cpp +++ b/src/test/unit/analyze/mcmc/compute_potential_scale_reduction_test.cpp @@ -132,7 +132,6 @@ TEST_F(ComputeRhat, chains_compute_split_potential_scale_reduction) { } } - TEST_F(ComputeRhat, compute_split_potential_scale_reduction) { std::stringstream out; stan::io::stan_csv blocker1 @@ -175,7 +174,6 @@ TEST_F(ComputeRhat, compute_split_potential_scale_reduction) { } } - TEST_F(ComputeRhat, compute_split_potential_scale_reduction_convenience) { std::stringstream out; stan::io::stan_csv blocker1 @@ -215,7 +213,6 @@ TEST_F(ComputeRhat, compute_split_potential_scale_reduction_convenience) { } } - TEST_F(ComputeRhat, compute_potential_scale_reduction_constant) { std::vector param_names{"a"}; stan::mcmc::chains<> chains(param_names); @@ -227,7 +224,6 @@ TEST_F(ComputeRhat, compute_potential_scale_reduction_constant) { << "rhat for index: " << 1 << ", parameter: " << chains.param_name(1); } - TEST_F(ComputeRhat, compute_potential_scale_reduction_nan) { std::vector param_names{"a"}; stan::mcmc::chains<> chains(param_names); @@ -238,4 +234,3 @@ TEST_F(ComputeRhat, compute_potential_scale_reduction_nan) { ASSERT_TRUE(std::isnan(chains.split_potential_scale_reduction(0))) << "rhat for index: " << 1 << ", parameter: " << chains.param_name(1); } -