aboutsummaryrefslogtreecommitdiff
path: root/pl/math/tools/asinhf.sollya
diff options
context:
space:
mode:
Diffstat (limited to 'pl/math/tools/asinhf.sollya')
-rw-r--r--pl/math/tools/asinhf.sollya29
1 files changed, 0 insertions, 29 deletions
diff --git a/pl/math/tools/asinhf.sollya b/pl/math/tools/asinhf.sollya
deleted file mode 100644
index ab115b53b8dc..000000000000
--- a/pl/math/tools/asinhf.sollya
+++ /dev/null
@@ -1,29 +0,0 @@
-// polynomial for approximating asinh(x)
-//
-// Copyright (c) 2022-2023, Arm Limited.
-// SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
-
-deg = 9;
-
-a = 0x1.0p-12;
-b = 1.0;
-
-f = proc(y) {
- return asinh(x);
-};
-
-approx = proc(poly, d) {
- return remez(1 - poly(x)/f(x), deg-d, [a;b], x^d/f(x), 1e-10);
-};
-
-poly = x;
-for i from 2 to deg do {
- p = roundcoefficients(approx(poly,i), [|SG ...|]);
- poly = poly + x^i*coeff(p,0);
-};
-
-display = hexadecimal;
-print("rel error:", accurateinfnorm(1-poly(x)/f(x), [a;b], 30));
-print("in [",a,b,"]");
-print("coeffs:");
-for i from 2 to deg do coeff(poly,i);