-
Notifications
You must be signed in to change notification settings - Fork 226
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
Complex number functions #911
Comments
Since we are moving to C++14 in the next release we could add the |
I'm cool with that. |
Are we sure that 1) these don't work with multiprecision, and 2) they aren't used by some standard library implementation? |
|
When I was recently writing my new I'll try to take a look before the trail runs cold, since I was recently just snoping around these areas. |
We don't use Boost.Math for |
Cool |
No, personally I'm really unsure of that. Just about every floating-point backend includes the headers when Boost.Math is available. If this is absolutely necessary, I'm not sure. Wouldn't we need to modify these backends in Multiprecision if deprecation ensues? or did i miss the obvious, as I may have and sometimes do? |
No std::complex can not be used for multiprecision types. But... the scalar versions for float/double/long double could well be deprecated I guess. Does that make things worse/less generic though? |
Are these still needed?
https://www.boost.org/doc/libs/1_81_0/libs/math/doc/html/inverse_complex.html
I see that all six of these functions are in std::complex as of C++11.
The text was updated successfully, but these errors were encountered: