From cfd32e9b1751266bd6551223308f90d8910b4c69 Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Tue, 20 Aug 2024 14:00:41 +0200 Subject: [PATCH] Adjust tolerance. --- src/solver/newton/newton.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/solver/newton/newton.hpp b/src/solver/newton/newton.hpp index c0fedd3af..8cff8bd3d 100644 --- a/src/solver/newton/newton.hpp +++ b/src/solver/newton/newton.hpp @@ -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 bool is_converged(const Eigen::Matrix& X,