Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove constexpr square root call in CDI #1069

Merged
merged 1 commit into from
Jun 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cdi/CDI.hh
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static inline double taylor_series_planck(double x) {
*/
static double polylog_series_minus_one_planck(double const x, double const eix) {
Require(x >= 0.0);
Require(x < rtt_dsxx::ce_sqrt(std::numeric_limits<double>::max()));
Require(x < 1.0e154); // value will be squared, make sure it's less than sqrt of max double
Require(rtt_dsxx::soft_equiv(std::exp(-x), eix));

double const xsqrd = x * x;
Expand Down