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
Approx().epsilon(e) from Catch interprets e differently from the tolerance T in BOOST_CHECK_CLOSE(...). In particular, e is interpreted as maximum relative difference, whereas T is interpreted as relative error. e effectively tolerances the number of significant digits, and therefore tests must be updated to use a smaller value, in general.
The text was updated successfully, but these errors were encountered:
Approx().epsilon(e)
from Catch interpretse
differently from the toleranceT
inBOOST_CHECK_CLOSE(...)
. In particular,e
is interpreted as maximum relative difference, whereasT
is interpreted as relative error.e
effectively tolerances the number of significant digits, and therefore tests must be updated to use a smaller value, in general.The text was updated successfully, but these errors were encountered: