From 46d7230b424d88275251a2c02ac08a07ec871aa0 Mon Sep 17 00:00:00 2001 From: Stan Jenkins Date: Fri, 22 May 2020 19:19:08 +0000 Subject: [PATCH] [Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.04.1 (tags/RELEASE_600/final) --- stan/math/rev/functor/ode_bdf.hpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/stan/math/rev/functor/ode_bdf.hpp b/stan/math/rev/functor/ode_bdf.hpp index e8ac6e58077..f0021dcb358 100644 --- a/stan/math/rev/functor/ode_bdf.hpp +++ b/stan/math/rev/functor/ode_bdf.hpp @@ -50,11 +50,9 @@ ode_bdf_tol(const F& f, const Eigen::Matrix& y0, const T_t0& t0, const std::vector& ts, double relative_tolerance, double absolute_tolerance, long int max_num_steps, std::ostream* msgs, const T_Args&... args) { - cvodes_integrator integrator(f, y0, t0, ts, - relative_tolerance, absolute_tolerance, - max_num_steps, - msgs, args...); + cvodes_integrator integrator( + f, y0, t0, ts, relative_tolerance, absolute_tolerance, max_num_steps, + msgs, args...); return integrator(); }