Skip to content

Commit 46d7230

Browse files
committed
[Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.04.1 (tags/RELEASE_600/final)
1 parent e6d7dcf commit 46d7230

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

stan/math/rev/functor/ode_bdf.hpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,9 @@ ode_bdf_tol(const F& f, const Eigen::Matrix<T_initial, Eigen::Dynamic, 1>& y0,
5050
const T_t0& t0, const std::vector<T_ts>& ts,
5151
double relative_tolerance, double absolute_tolerance,
5252
long int max_num_steps, std::ostream* msgs, const T_Args&... args) {
53-
cvodes_integrator<CV_BDF, F, T_initial, T_t0, T_ts,
54-
T_Args...> integrator(f, y0, t0, ts,
55-
relative_tolerance, absolute_tolerance,
56-
max_num_steps,
57-
msgs, args...);
53+
cvodes_integrator<CV_BDF, F, T_initial, T_t0, T_ts, T_Args...> integrator(
54+
f, y0, t0, ts, relative_tolerance, absolute_tolerance, max_num_steps,
55+
msgs, args...);
5856

5957
return integrator();
6058
}

0 commit comments

Comments
 (0)