aboutsummaryrefslogtreecommitdiff
path: root/libc/utils/MPFRWrapper
diff options
context:
space:
mode:
Diffstat (limited to 'libc/utils/MPFRWrapper')
-rw-r--r--libc/utils/MPFRWrapper/MPCommon.cpp6
-rw-r--r--libc/utils/MPFRWrapper/MPCommon.h1
-rw-r--r--libc/utils/MPFRWrapper/MPFRUtils.cpp2
-rw-r--r--libc/utils/MPFRWrapper/MPFRUtils.h1
4 files changed, 0 insertions, 10 deletions
diff --git a/libc/utils/MPFRWrapper/MPCommon.cpp b/libc/utils/MPFRWrapper/MPCommon.cpp
index fb6e6e8..07339a0 100644
--- a/libc/utils/MPFRWrapper/MPCommon.cpp
+++ b/libc/utils/MPFRWrapper/MPCommon.cpp
@@ -105,12 +105,6 @@ MPFRNumber MPFRNumber::asinh() const {
return result;
}
-MPFRNumber MPFRNumber::asinpi() const {
- MPFRNumber result(*this);
- mpfr_asinpi(result.value, value, mpfr_rounding);
- return result;
-}
-
MPFRNumber MPFRNumber::atan() const {
MPFRNumber result(*this);
mpfr_atan(result.value, value, mpfr_rounding);
diff --git a/libc/utils/MPFRWrapper/MPCommon.h b/libc/utils/MPFRWrapper/MPCommon.h
index 47d6293..8bcc69c2 100644
--- a/libc/utils/MPFRWrapper/MPCommon.h
+++ b/libc/utils/MPFRWrapper/MPCommon.h
@@ -189,7 +189,6 @@ public:
MPFRNumber add(const MPFRNumber &b) const;
MPFRNumber asin() const;
MPFRNumber asinh() const;
- MPFRNumber asinpi() const;
MPFRNumber atan() const;
MPFRNumber atan2(const MPFRNumber &b);
MPFRNumber atanh() const;
diff --git a/libc/utils/MPFRWrapper/MPFRUtils.cpp b/libc/utils/MPFRWrapper/MPFRUtils.cpp
index c58aae7..8853f96 100644
--- a/libc/utils/MPFRWrapper/MPFRUtils.cpp
+++ b/libc/utils/MPFRWrapper/MPFRUtils.cpp
@@ -38,8 +38,6 @@ unary_operation(Operation op, InputType input, unsigned int precision,
return mpfrInput.asin();
case Operation::Asinh:
return mpfrInput.asinh();
- case Operation::Asinpi:
- return mpfrInput.asinpi();
case Operation::Atan:
return mpfrInput.atan();
case Operation::Atanh:
diff --git a/libc/utils/MPFRWrapper/MPFRUtils.h b/libc/utils/MPFRWrapper/MPFRUtils.h
index e8056073..45468c6 100644
--- a/libc/utils/MPFRWrapper/MPFRUtils.h
+++ b/libc/utils/MPFRWrapper/MPFRUtils.h
@@ -30,7 +30,6 @@ enum class Operation : int {
Acospi,
Asin,
Asinh,
- Asinpi,
Atan,
Atanh,
Cbrt,