Skip to content

Commit

Permalink
reduce precision
Browse files Browse the repository at this point in the history
  • Loading branch information
esseivaju committed Sep 30, 2024
1 parent df1b2c3 commit 9dcd4ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/corecel/math/detail/SoftEqualTraits.hh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct SoftEqualTraits<double>
{
using value_type = double;
static CELER_CONSTEXPR_FUNCTION value_type sqrt_prec() { return 1.0e-6; }
static CELER_CONSTEXPR_FUNCTION value_type rel_prec() { return 1.0e-12; }
static CELER_CONSTEXPR_FUNCTION value_type rel_prec() { return 1.0e-8; }
static CELER_CONSTEXPR_FUNCTION value_type abs_thresh() { return 1.0e-14; }
};

Expand Down

0 comments on commit 9dcd4ec

Please sign in to comment.