Skip to content

Commit

Permalink
Adjust tolerance.
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed Aug 23, 2024
1 parent 2808ec5 commit cfd32e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solver/newton/newton.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ namespace newton {
*/

static constexpr int MAX_ITER = 50;
static constexpr double EPS = 1e-12;
static constexpr double EPS = 1e-13;

template <int N>
bool is_converged(const Eigen::Matrix<double, N, 1>& X,
Expand Down

0 comments on commit cfd32e9

Please sign in to comment.