Skip to content

Commit 520d494

Browse files
committed
[Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1
1 parent 5425e6b commit 520d494

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

stan/math/mix/functor/laplace_marginal_density_estimator.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,8 @@ struct NewtonState {
369369
* theta_init must be provided to maintain the invariant theta = Sigma * a.
370370
* @tparam ObjFun A callable type for the objective function
371371
* @tparam ThetaGradFun A callable type for the theta gradient function
372-
* @tparam CovarianceT A matrix type for the covariance (must support LLT solve)
372+
* @tparam CovarianceT A matrix type for the covariance (must support LLT
373+
* solve)
373374
* @tparam ThetaInitializer A type for the initial theta (e.g., Eigen vector)
374375
* @param theta_size Dimension of the latent space
375376
* @param obj_fun Objective function: (a, theta) -> double

test/unit/math/laplace/laplace_marginal_density_estimator_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ struct QuarticLikelihood {
2828
struct TinyQuarticLikelihood {
2929
template <typename Theta>
3030
auto operator()(const Theta& theta, std::ostream* /*msgs*/) const {
31-
return 1e-8 * QuarticLikelihood{}(theta, nullptr); // NOLINT
31+
return 1e-8 * QuarticLikelihood{}(theta, nullptr); // NOLINT
3232
}
3333
};
3434

0 commit comments

Comments
 (0)