You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some logic mismatch was introduced in #278
so effectively testNumericalDerivatives check that uses checkRelativeErrorFormat and condition inside: if (delta > absTol && delta > relTol * value)
is not triggered because default absTol = std::numeric_limits<real64>::max()
Current version of GEOS produces huge diffs that are hidden.
The text was updated successfully, but these errors were encountered:
Some logic mismatch was introduced in
#278
so effectively
testNumericalDerivatives
check that usescheckRelativeErrorFormat
and condition inside:if (delta > absTol && delta > relTol * value)
is not triggered because default
absTol = std::numeric_limits<real64>::max()
Current version of GEOS produces huge diffs that are hidden.
The text was updated successfully, but these errors were encountered: