Skip to content

Commit

Permalink
[Jenkins] auto-formatting by clang-format version 6.0.0-1ubuntu2~16.0…
Browse files Browse the repository at this point in the history
…4.1 (tags/RELEASE_600/final)
  • Loading branch information
stan-buildbot committed May 22, 2020
1 parent e6d7dcf commit 46d7230
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions stan/math/rev/functor/ode_bdf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,9 @@ ode_bdf_tol(const F& f, const Eigen::Matrix<T_initial, Eigen::Dynamic, 1>& y0,
const T_t0& t0, const std::vector<T_ts>& ts,
double relative_tolerance, double absolute_tolerance,
long int max_num_steps, std::ostream* msgs, const T_Args&... args) {
cvodes_integrator<CV_BDF, F, T_initial, T_t0, T_ts,
T_Args...> integrator(f, y0, t0, ts,
relative_tolerance, absolute_tolerance,
max_num_steps,
msgs, args...);
cvodes_integrator<CV_BDF, F, T_initial, T_t0, T_ts, T_Args...> integrator(
f, y0, t0, ts, relative_tolerance, absolute_tolerance, max_num_steps,
msgs, args...);

return integrator();
}
Expand Down

0 comments on commit 46d7230

Please sign in to comment.