Skip to content

Commit 021bac4

Browse files
committed
fix cpplint
1 parent a8a0014 commit 021bac4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stan/math/rev/functor/solve_newton.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +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
303+
const int64_t max_num_steps
304304
= 200) { // NOLINT(runtime/int)
305305
return solve_newton_tol(algebra_solver_adapter<F>(f), x, scaling_step_size,
306306
function_tolerance, max_num_steps, msgs, y, dat,

0 commit comments

Comments
 (0)