We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hi,
See below an example of difference in behaviour between std::pow and gcem::pow, this behaviour seems to continue for all pow(10, exponents <= -306
std::pow
gcem::pow
pow(10,
#include <gcem.hpp> #include <cmath> #include "fmt/format.h" int main() { fmt::print("{}\n{}\n", gcem::pow(10.0, -306), std::pow(10.0, -306)); }
Program stdout 9.999999999999994e-307 1e-306
https://godbolt.org/z/PsK4E1eMT
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
See below an example of difference in behaviour between
std::pow
andgcem::pow
, this behaviour seems to continue for allpow(10,
exponents <= -306https://godbolt.org/z/PsK4E1eMT
The text was updated successfully, but these errors were encountered: