Skip to content

Commit e5573f7

Browse files
committed
[Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1
1 parent a182957 commit e5573f7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

stan/math/prim/prob/multi_student_t_cholesky_lpdf.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ return_type_t<T_y, T_dof, T_loc, T_scale> multi_student_t_cholesky_lpdf(
6868
T_y_ref y_ref = y;
6969
T_mu_ref mu_ref = mu;
7070
T_L_ref L_ref = L;
71-
71+
7272
vector_seq_view<T_y_ref> y_vec(y_ref);
7373
vector_seq_view<T_mu_ref> mu_vec(mu_ref);
7474
size_t size_vec = max_size_mvt(y_ref, mu_ref);
75-
75+
7676
if (size_vec == 0) {
7777
return lp_type(0);
7878
}
@@ -133,7 +133,7 @@ return_type_t<T_y, T_dof, T_loc, T_scale> multi_student_t_cholesky_lpdf(
133133

134134
if (include_summand<propto, T_y, T_dof, T_loc, T_scale_elem>::value) {
135135
lp_type sum_lp_vec(0.0);
136-
136+
137137
for (size_t i = 0; i < size_vec; i++) {
138138
const auto& y_col = as_column_vector_or_scalar(y_vec[i]);
139139
const auto& mu_col = as_column_vector_or_scalar(mu_vec[i]);

test/unit/math/rev/prob/multi_student_t_cholesky_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ TEST(ProbDistributionsMultiStudentTCholesky, MultiStudentTGradientUnivariate) {
158158
- multi_student_t_cholesky_lpdf(y, nu, mu_m, L))
159159
/ (2 * epsilon);
160160
EXPECT_FLOAT_EQ(grad_diff, grad[1]);
161-
161+
162162
Matrix<double, Dynamic, Dynamic> L_m(1, 1);
163163
Matrix<double, Dynamic, Dynamic> L_p(1, 1);
164164
L_p(0) = L(0) + epsilon;

0 commit comments

Comments
 (0)