Skip to content

Commit d4c03d8

Browse files
committed
fix cpplint
1 parent fd75aaf commit d4c03d8

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

stan/math/rev/functor/solve_newton.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,7 @@ algebra_solver_newton(const F& f, const T1& x, const T2& y,
300300
std::ostream* const msgs = nullptr,
301301
const double scaling_step_size = 1e-3,
302302
const double function_tolerance = 1e-6,
303-
const long int max_num_steps
304-
= 200) { // NOLINT(runtime/int)
303+
const long int max_num_steps = 200) { // NOLINT(runtime/int)
305304
return solve_newton_tol(algebra_solver_adapter<F>(f), x, scaling_step_size,
306305
function_tolerance, max_num_steps, msgs, y, dat,
307306
dat_int);

0 commit comments

Comments
 (0)