Skip to content

Commit 97cb3ef

Browse files
committed
[Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1
1 parent b37a958 commit 97cb3ef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

stan/math/prim/prob/geometric_lccdf.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ inline return_type_t<T_prob> geometric_lccdf(const T_n& n,
8585
// for any n_i below the support), so they are no-ops in the sum.
8686
// n_i >= 0 contributes (n_i + 1) * log1m(theta).
8787
const auto& log1m_theta = log1m(theta_arr);
88-
const auto& term = select(n_arr < 0, T_partials_return(0),
89-
(n_arr + 1.0) * log1m_theta);
88+
const auto& term
89+
= select(n_arr < 0, T_partials_return(0), (n_arr + 1.0) * log1m_theta);
9090
T_partials_return logP = sum(term);
9191

9292
if constexpr (is_autodiff_v<T_prob>) {

0 commit comments

Comments
 (0)