Skip to content

Commit

Permalink
Remove dead error.
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed Aug 29, 2024
1 parent 1a93150 commit bcffce6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/solver/newton/newton.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ EIGEN_DEVICE_FUNC int newton_solver_small_N(Eigen::Matrix<double, N, 1>& X,
int iter = -1;
while (++iter < max_iter) {
functor(X, F, J);
double error = F.norm();
if (is_converged(X, J, F, eps)) {
return iter;
}
Expand Down

0 comments on commit bcffce6

Please sign in to comment.