diff options
author | mattip <matti.picus@gmail.com> | 2022-08-22 10:25:28 +0300 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2022-09-27 18:11:07 +0200 |
commit | c6366c16844b162749dca5aab5f8541b319d99c9 (patch) | |
tree | 0203bdf67d4696dd23f005fcffa20742c06d04f4 /numpy/core/setup_common.py | |
parent | 9c5a2b41cc0ade160a01b7423630f7ee1b8e63dc (diff) | |
download | numpy-c6366c16844b162749dca5aab5f8541b319d99c9.tar.gz |
BUILD: move some never-blocked complex math functions to 'mandatory'
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index 0100906d0..0c727a913 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -128,6 +128,8 @@ MANDATORY_FUNCS = [ "rint", "trunc", "exp2", "copysign", "nextafter", "strtoll", "strtoull", "cbrt", "log2", "pow", "hypot", "atan2", + "csin", "csinh", "ccos", "ccosh", "ctan", "ctanh", + "creal", "cimag", "conj" ] OPTIONAL_LOCALE_FUNCS = ["strtold_l"] @@ -147,8 +149,7 @@ C99_COMPLEX_TYPES = [ ] C99_COMPLEX_FUNCS = [ "cabs", "cacos", "cacosh", "carg", "casin", "casinh", "catan", - "catanh", "ccos", "ccosh", "cexp", "cimag", "clog", "conj", "cpow", - "cproj", "creal", "csin", "csinh", "csqrt", "ctan", "ctanh" + "catanh", "cexp", "clog", "cpow", "csqrt", ] OPTIONAL_HEADERS = [ |