From b67e47bb24b73e20432a695ff9954272fa222a9c Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Sun, 8 Feb 2026 22:25:42 +0530 Subject: [PATCH 1/8] feat: add math/base/special/acschf --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: missing_dependencies - task: lint_c_examples status: missing_dependencies - task: lint_c_benchmarks status: missing_dependencies - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../math/base/special/acschf/README.md | 214 +++++++++ .../special/acschf/benchmark/benchmark.js | 55 +++ .../acschf/benchmark/benchmark.native.js | 65 +++ .../acschf/benchmark/c/native/Makefile | 146 ++++++ .../acschf/benchmark/c/native/benchmark.c | 137 ++++++ .../special/acschf/benchmark/julia/REQUIRE | 2 + .../acschf/benchmark/julia/benchmark.jl | 103 +++++ .../math/base/special/acschf/binding.gyp | 170 +++++++ .../math/base/special/acschf/docs/repl.txt | 39 ++ .../base/special/acschf/docs/types/index.d.ts | 44 ++ .../base/special/acschf/docs/types/test.ts | 44 ++ .../base/special/acschf/examples/c/Makefile | 146 ++++++ .../base/special/acschf/examples/c/example.c | 31 ++ .../base/special/acschf/examples/index.js | 29 ++ .../math/base/special/acschf/include.gypi | 53 +++ .../include/stdlib/math/base/special/acschf.h | 38 ++ .../math/base/special/acschf/lib/index.js | 46 ++ .../math/base/special/acschf/lib/main.js | 59 +++ .../math/base/special/acschf/lib/native.js | 58 +++ .../math/base/special/acschf/manifest.json | 72 +++ .../math/base/special/acschf/package.json | 151 +++++++ .../math/base/special/acschf/src/Makefile | 70 +++ .../math/base/special/acschf/src/addon.c | 22 + .../math/base/special/acschf/src/main.c | 34 ++ .../acschf/test/fixtures/julia/REQUIRE | 2 + .../test/fixtures/julia/huge_negative.json | 1 + .../test/fixtures/julia/huge_positive.json | 1 + .../test/fixtures/julia/large_negative.json | 1 + .../test/fixtures/julia/large_positive.json | 1 + .../test/fixtures/julia/larger_negative.json | 1 + .../test/fixtures/julia/larger_positive.json | 1 + .../test/fixtures/julia/medium_negative.json | 1 + .../test/fixtures/julia/medium_positive.json | 1 + .../acschf/test/fixtures/julia/runner.jl | 114 +++++ .../test/fixtures/julia/small_negative.json | 1 + .../test/fixtures/julia/small_positive.json | 1 + .../acschf/test/fixtures/julia/smaller.json | 1 + .../test/fixtures/julia/tiny_negative.json | 1 + .../test/fixtures/julia/tiny_positive.json | 1 + .../math/base/special/acschf/test/test.js | 406 +++++++++++++++++ .../base/special/acschf/test/test.native.js | 425 ++++++++++++++++++ 41 files changed, 2788 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/README.md create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/REQUIRE create mode 100755 lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/include.gypi create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/include/stdlib/math/base/special/acschf.h create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/lib/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/lib/main.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/lib/native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/manifest.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/package.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/src/main.c create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json create mode 100755 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/test.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/README.md b/lib/node_modules/@stdlib/math/base/special/acschf/README.md new file mode 100644 index 000000000000..5398de54da07 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/README.md @@ -0,0 +1,214 @@ + + +# acschf + +> Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number. + +
+ +## Usage + +```javascript +var acschf = require( '@stdlib/math/base/special/acschf' ); +``` + +#### acschf( x ) + +Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of `x`. + +```javascript +var v = acschf( 0.0 ); +// returns Infinity + +v = acschf( -0.0 ); +// returns -Infinity + +v = acschf( 1.0 ); +// returns ~0.881 + +v = acschf( -1.0 ); +// returns ~-0.881 + +v = acschf( NaN ); +// returns NaN + +v = acschf( -Infinity ); +// returns -0.0 + +v = acschf( Infinity ); +// returns 0.0 +``` + +
+ + + +
+ +## Examples + + + +```javascript +var uniform = require( '@stdlib/random/array/uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); +var acschf = require( '@stdlib/math/base/special/acschf' ); + +var x = uniform( 100, 1.0, 5.0, { + 'dtype': 'float32' +}); + +logEachMap( 'acschf(%0.4f) = %0.4f', x, acschf ); +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/acschf.h" +``` + +#### stdlib_base_acschf( x ) + +> Compute the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number. + +```c +float out = stdlib_base_acschf( 1.0 ); +// returns ~0.881 +``` + +The function accepts the following arguments: + +- **x**: `[in] float` input value. + +```c +float stdlib_base_acschf( const float x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/acschf.h" +#include + +int main( void ) { + const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.55f, 0.55f, 1.67f, 2.78f, 3.89f, 5.0f }; + + float v; + int i; + for ( i = 0; i < 10; i++ ) { + v = stdlib_base_acschf( x[ i ] ); + printf( "acsch(%f) = %f\n", x[ i ], v ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js new file mode 100644 index 000000000000..d86396a9d8f0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js @@ -0,0 +1,55 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var bench = require( '@stdlib/bench' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var pkg = require( './../package.json' ).name; +var acschf = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, -50.0, 50.0, { + 'dtype': 'float32' + }); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = acschf( x[ i % x.length ] ); + if ( isnanf( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + + if ( isnanf( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js new file mode 100644 index 000000000000..679d9180d013 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js @@ -0,0 +1,65 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var bench = require( '@stdlib/bench' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var acschf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( acschf instanceof Error ) +}; + + +// MAIN // + +bench( pkg+'::native', opts, function benchmark( b ) { + var x; + var y; + var i; + + // Generate input data once (valid domain: |x| >= 1) + x = uniform( 100, 1.0, 50.0, { + 'dtype': 'float32' + }); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = acschf( x[ i % x.length ] ); + if ( isnanf( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + + if ( isnanf( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile new file mode 100644 index 000000000000..979768abbcec --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..c2b49c072830 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/c/native/benchmark.c @@ -0,0 +1,137 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/acschf.h" +#include +#include +#include +#include +#include + +#define NAME "acschf" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmark results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec / 1.0e6; +} + +/** +* Generates a random float on the interval [0,1). +* +* @return random float +*/ +static float rand_float( void ) { + int r = rand(); + return (float)r / ( (float)RAND_MAX + 1.0f ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + float x[ 100 ]; + double elapsed; + float y; + double t; + int i; + + for ( i = 0; i < 100; i++ ) { + x[ i ] = ( 200.0f * rand_float() ) - 100.0f; + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + y = stdlib_base_acschf( x[ i % 100 ] ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::native::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/REQUIRE new file mode 100644 index 000000000000..98645e192e41 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +BenchmarkTools 0.5.0 diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl new file mode 100755 index 000000000000..977fc32c9cba --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/julia/benchmark.jl @@ -0,0 +1,103 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import BenchmarkTools +using Printf +using SpecialFunctions: acsch + +# Float32 version (matches stdlib acschf semantics): +acschf(x::Float32) = Float32( acsch( Float64(x) ) ) + +# Benchmark variables: +name = "acschf"; +repeats = 3; + +""" + print_version() + +Prints the TAP version. +""" +function print_version() + @printf( "TAP version 13\n" ); +end + +""" + print_summary( total, passing ) + +Print the benchmark summary. +""" +function print_summary( total, passing ) + @printf( "#\n" ); + @printf( "1..%d\n", total ); + @printf( "# total %d\n", total ); + @printf( "# pass %d\n", passing ); + @printf( "#\n" ); + @printf( "# ok\n" ); +end + +""" + print_results( iterations, elapsed ) + +Print benchmark results. +""" +function print_results( iterations, elapsed ) + rate = iterations / elapsed + + @printf( " ---\n" ); + @printf( " iterations: %d\n", iterations ); + @printf( " elapsed: %0.9f\n", elapsed ); + @printf( " rate: %0.9f\n", rate ); + @printf( " ...\n" ); +end + +""" + benchmark() + +Run a benchmark. +""" +function benchmark() + t = BenchmarkTools.@benchmark acschf( + Float32( (200.0*rand()) - 100.0 ) + ) samples=1e6 + + # Total elapsed time (seconds): + s = sum( t.times ) / 1.0e9; + + # Number of iterations: + iter = length( t.times ); + + [ iter, s ]; +end + +""" + main() + +Run benchmarks. +""" +function main() + print_version(); + for i in 1:repeats + @printf( "# julia::%s\n", name ); + results = benchmark(); + print_results( results[1], results[2] ); + @printf( "ok %d benchmark finished\n", i ); + end + print_summary( repeats, repeats ); +end + +main(); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp b/lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp new file mode 100644 index 000000000000..0d6508a12e99 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/binding.gyp @@ -0,0 +1,170 @@ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A `.gyp` file for building a Node.js native add-on. +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # List of files to include in this file: + 'includes': [ + './include.gypi', + ], + + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Target name should match the add-on export name: + 'addon_target_name%': 'addon', + + # Set variables based on the host OS: + 'conditions': [ + [ + 'OS=="win"', + { + # Define the object file suffix: + 'obj': 'obj', + }, + { + # Define the object file suffix: + 'obj': 'o', + } + ], # end condition (OS=="win") + ], # end conditions + }, # end variables + + # Define compile targets: + 'targets': [ + + # Target to generate an add-on: + { + # The target name should match the add-on export name: + 'target_name': '<(addon_target_name)', + + # Define dependencies: + 'dependencies': [], + + # Define directories which contain relevant include headers: + 'include_dirs': [ + # Local include directory: + '<@(include_dirs)', + ], + + # List of source files: + 'sources': [ + '<@(src_files)', + ], + + # Settings which should be applied when a target's object files are used as linker input: + 'link_settings': { + # Define libraries: + 'libraries': [ + '<@(libraries)', + ], + + # Define library directories: + 'library_dirs': [ + '<@(library_dirs)', + ], + }, + + # C/C++ compiler flags: + 'cflags': [ + # Enable commonly used warning options: + '-Wall', + + # Aggressive optimization: + '-O3', + ], + + # C specific compiler flags: + 'cflags_c': [ + # Specify the C standard to which a program is expected to conform: + '-std=c99', + ], + + # C++ specific compiler flags: + 'cflags_cpp': [ + # Specify the C++ standard to which a program is expected to conform: + '-std=c++11', + ], + + # Linker flags: + 'ldflags': [], + + # Apply conditions based on the host OS: + 'conditions': [ + [ + 'OS=="mac"', + { + # Linker flags: + 'ldflags': [ + '-undefined dynamic_lookup', + '-Wl,-no-pie', + '-Wl,-search_paths_first', + ], + }, + ], # end condition (OS=="mac") + [ + 'OS!="win"', + { + # C/C++ flags: + 'cflags': [ + # Generate platform-independent code: + '-fPIC', + ], + }, + ], # end condition (OS!="win") + ], # end conditions + }, # end target <(addon_target_name) + + # Target to copy a generated add-on to a standard location: + { + 'target_name': 'copy_addon', + + # Declare that the output of this target is not linked: + 'type': 'none', + + # Define dependencies: + 'dependencies': [ + # Require that the add-on be generated before building this target: + '<(addon_target_name)', + ], + + # Define a list of actions: + 'actions': [ + { + 'action_name': 'copy_addon', + 'message': 'Copying addon...', + + # Explicitly list the inputs in the command-line invocation below: + 'inputs': [], + + # Declare the expected outputs: + 'outputs': [ + '<(addon_output_dir)/<(addon_target_name).node', + ], + + # Define the command-line invocation: + 'action': [ + 'cp', + '<(PRODUCT_DIR)/<(addon_target_name).node', + '<(addon_output_dir)/<(addon_target_name).node', + ], + }, + ], # end actions + }, # end target copy_addon + ], # end targets +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt new file mode 100644 index 000000000000..7029c60efb70 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/docs/repl.txt @@ -0,0 +1,39 @@ + +{{alias}}( x ) + Computes the hyperbolic arccosecant of a single-precision floating-point + number. + + The hyperbolic arccosecant is defined as + + acsch(x) = asinh(1/x) + + If `x` is zero, the function returns positive or negative infinity, + depending on the sign of `x`. + + Parameters + ---------- + x: number + Input value. + + Returns + ------- + y: number + Hyperbolic arccosecant. + + Examples + -------- + > var y = {{alias}}( 1.0 ) + ~0.8814 + + > y = {{alias}}( -1.0 ) + ~-0.8814 + + > y = {{alias}}( 0.0 ) + Infinity + + > y = {{alias}}( NaN ) + NaN + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts new file mode 100644 index 000000000000..ad6c82dffe2e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/index.d.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/** +* Computes the hyperbolic arccosecant of a single-precision floating-point number. +* +* @param x - input value +* @returns hyperbolic arccosecant +* +* @example +* var v = acschf( 0.0 ); +* // returns Infinity +* +* @example +* var v = acschf( -1.0 ); +* // returns ~-0.881 +* +* @example +* var v = acschf( 1.0 ); +* // returns ~0.881 +*/ +declare function acschf( x: number ): number; + + +// EXPORTS // + +export = acschf; diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts new file mode 100644 index 000000000000..a992e632e03c --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/docs/types/test.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import acschf = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + acschf( 8 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + acschf( true ); // $ExpectError + acschf( false ); // $ExpectError + acschf( null ); // $ExpectError + acschf( undefined ); // $ExpectError + acschf( '5' ); // $ExpectError + acschf( [] ); // $ExpectError + acschf( {} ); // $ExpectError + acschf( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + acschf(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile new file mode 100644 index 000000000000..c8f8e9a1517b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := example.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled examples. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c new file mode 100644 index 000000000000..0123240e585a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c @@ -0,0 +1,31 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/acschf.h" +#include + +int main( void ) { + const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.55f, 0.55f, 1.67f, 2.78f, 3.89f, 5.0f }; + + float v; + int i; + for ( i = 0; i < 10; i++ ) { + v = stdlib_base_acschf( x[ i ] ); + printf( "acschf(%f) = %f\n", x[ i ], v ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js b/lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js new file mode 100644 index 000000000000..7af70e55ff60 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/examples/index.js @@ -0,0 +1,29 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var uniform = require( '@stdlib/random/array/uniform' ); +var logEachMap = require( '@stdlib/console/log-each-map' ); +var acschf = require( './../lib' ); + +var x = uniform( 100, 1.0, 5.0, { + 'dtype': 'float32' +}); + +logEachMap( 'acschf(%0.4f) = %0.4f', x, acschf ); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/include.gypi b/lib/node_modules/@stdlib/math/base/special/acschf/include.gypi new file mode 100644 index 000000000000..bee8d41a2caf --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/include.gypi @@ -0,0 +1,53 @@ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A GYP include file for building a Node.js native add-on. +# +# Main documentation: +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Source directory: + 'src_dir': './src', + + # Include directories: + 'include_dirs': [ + '=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "acschf", + "hyperbolic", + "inverse", + "cosecant", + "csc", + "arc", + "arccosecant", + "trig", + "trigonometry", + "angle" + ], + "__stdlib__": { + "scaffold": { + "$schema": "math/base@v1.0", + "base_alias": "acsch", + "alias": "acschf", + "pkg_desc": "compute the hyperbolic arccosecant of a single-precision floating-point number", + "desc": "computes the hyperbolic arccosecant of a single-precision floating-point number", + "short_desc": "hyperbolic arccosecant", + "parameters": [ + { + "name": "x", + "desc": "input value", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + }, + "domain": [ + { + "min": "-infinity", + "max": "infinity" + } + ], + "rand": { + "prng": "random/base/uniform", + "parameters": [ + 0.5, + 5 + ] + }, + "example_values": [ + -5, + -3.7, + -2.9, + -2.1, + -1.7, + -1.3, + -1.1, + -0.7, + -0.51, + -0.25, + 0.25, + 0.51, + 0.7, + 1.1, + 1.3, + 1.7, + 2.1, + 2.9, + 3.7, + 5 + ] + } + ], + "output_policy": "real_floating_point_and_generic", + "returns": { + "desc": "hyperbolic arccosecant", + "type": { + "javascript": "number", + "jsdoc": "number", + "c": "float", + "dtype": "float32" + } + }, + "keywords": [ + "acsch", + "hyperbolic", + "inverse", + "cosecant", + "csc", + "arc", + "arccosecant", + "angle", + "asinh" + ], + "extra_keywords": [ + "math.asinh" + ] + } + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile b/lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile new file mode 100644 index 000000000000..2caf905cedbe --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/src/Makefile @@ -0,0 +1,70 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + + +# RULES # + +#/ +# Removes generated files for building an add-on. +# +# @example +# make clean-addon +#/ +clean-addon: + $(QUIET) -rm -f *.o *.node + +.PHONY: clean-addon + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: clean-addon + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c b/lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c new file mode 100644 index 000000000000..b88ead99283d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/src/addon.c @@ -0,0 +1,22 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/acschf.h" +#include "stdlib/math/base/napi/unary.h" + +STDLIB_MATH_BASE_NAPI_MODULE_F_F( stdlib_base_acschf ) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/src/main.c b/lib/node_modules/@stdlib/math/base/special/acschf/src/main.c new file mode 100644 index 000000000000..021666610d4a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/src/main.c @@ -0,0 +1,34 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/acschf.h" +#include "stdlib/math/base/special/asinhf.h" + +/** +* Computes the hyperbolic arccosecant of a single-precision floating-point number. +* +* @param x input value +* @return output value +* +* @example +* float out = stdlib_base_acschf( 1.0f ); +* // returns ~0.881f +*/ +float stdlib_base_acschf( const float x ) { + return stdlib_base_asinhf( 1.0f / x ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json new file mode 100644 index 000000000000..ada599e16e22 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json @@ -0,0 +1 @@ +{"expected":[-1.0e-200,-5.019974849926002e-206,-2.509993725015688e-206,-1.6733305500268516e-206,-1.2549984375269452e-206,-1.003999002024992e-206,-8.36665975022794e-207,-7.171423500207668e-207,-6.274996125189893e-207,-5.5777747223967364e-207,-5.0199975301612156e-207,-4.563634326595951e-207,-4.1833316251395865e-207,-3.8615370090064635e-207,-3.58571303583717e-207,-3.3466655801159086e-207,-3.1374990469846644e-207,-2.9529403340140812e-207,-2.7888881389878562e-207,-2.642104591507096e-207,-2.5099993950901458e-207,-2.3904756429434362e-207,-2.281817683967051e-207,-2.1826082411002838e-207,-2.091666250076472e-207,-2.0079996168736732e-207,-1.9307688772900055e-207,-1.85925893216741e-207,-1.7928568393520922e-207,-1.7310342004209735e-207,-1.6733330700622636e-207,-1.619354592672254e-207,-1.5687497695898776e-207,-1.5212119050156414e-207,-1.4764703850034883e-207,-1.4342855229110461e-207,-1.3944442639413815e-207,-1.3567565862454559e-207,-1.3210524702714879e-207,-1.287179334368197e-207,-1.2549998550475168e-207,-1.2243901062332101e-207,-1.1952379643310801e-207,-1.1674417358474984e-207,-1.1409089721508387e-207,-1.1155554422647029e-207,-1.0913042396446232e-207,-1.0680850029832605e-207,-1.04583323441494e-207,-1.0244897012053398e-207,-1.0039999092384082e-207,-9.8431363844599e-208,-9.653845318417232e-208,-9.471697310793945e-208,-9.296295525048076e-208,-9.127271985474441e-208,-8.964285000344445e-208,-8.807016856294298e-208,-8.655171751224783e-208,-8.508473937414584e-208,-8.366666050322268e-208,-8.229507601768385e-208,-8.096773618938647e-208,-7.968253413005834e-208,-7.843749463193396e-208,-7.723076403848556e-208,-7.606060103599666e-208,-7.492536826977087e-208,-7.382352470008681e-208,-7.275361862285264e-208,-7.171428128849008e-208,-7.07042210600677e-208,-6.972221805825642e-208,-6.876711924642546e-208,-6.7837833914244195e-208,-6.693332952259577e-208,-6.605262787652375e-208,-6.519480159639082e-208,-6.435897086048672e-208,-6.354430039503303e-208,-6.274999668993768e-208,-6.197530542078969e-208,-6.1219509059488565e-208,-6.048192465759923e-208,-5.976190178803869e-208,-5.90588206320555e-208,-5.837209019967563e-208,-5.770114667287634e-208,-5.704545186172533e-208,-5.640449176460055e-208,-5.577777522439518e-208,-5.516483267332459e-208,-5.456521495959368e-208,-5.397849224976309e-208,-5.340425300117711e-208,-5.284210299929096e-208,-5.229166445516502e-208,-5.175257515878423e-208,-5.122448768421499e-208,-5.070706864293447e-208,-5.019999798196008e-208,-4.970296832367423e-208,-4.921568434448297e-208,-4.8737862189669224e-208,-4.826922892200451e-208,-4.780952200186855e-208,-4.7358488796796086e-208,-4.691588611852571e-208,-4.648147978576824e-208,-4.60550442110429e-208,-4.563636201004964e-208,-4.522522363215654e-208,-4.482142701068245e-208,-4.442477723174882e-208,-4.403508622056022e-208,-4.365217244405298e-208,-4.3275860628923946e-208,-4.290598149411941e-208,-4.254237149692622e-208,-4.218487259186503e-208,-4.183333200163893e-208,-4.1487601999439965e-208,-4.114753970196188e-208,-4.0813006872509785e-208,-4.048386973363687e-208,-4.015999878877444e-208,-3.9841268652355795e-208,-3.952755788796581e-208,-3.921874885407718e-208,-3.8914727556961756e-208,-3.8615383510390566e-208,-3.832060960175984e-208,-3.8030301964302143e-208,-3.77443598550625e-208,-3.746268553833819e-208,-3.718518417429907e-208,-3.6911763712521655e-208,-3.6642334790185974e-208,-3.637681063469862e-208,-3.6115106970519154e-208,-3.5857141929979613e-208,-3.560283596789902e-208,-3.5352111779805616e-208,-3.5104894223590417e-208,-3.4861110244425173e-208,-3.462068880278718e-208,-3.438356080544194e-208,-3.4149659039242926e-208,-3.3918918107615066e-208,-3.3691274369595984e-208,-3.3466665881315573e-208,-3.3245032339800905e-208,-3.3026315028999326e-208,-3.281045676791834e-208,-3.2597401860785986e-208,-3.2387096049140495e-208,-3.2179486465762673e-208,-3.1974521590368795e-208,-3.1772151206986077e-208,-3.157232636293661e-208,-3.1374999329359393e-208,-3.1180123563203596e-208,-3.0987653670629493e-208,-3.0797545371756573e-208,-3.0609755466701383e-208,-3.0424241802850332e-208,-3.024096324331544e-208,-3.005987963652337e-208,-2.98809517868906e-208,-2.9704141426539696e-208,-2.952941118801385e-208,-2.9356724577948783e-208,-2.918604595166307e-208,-2.9017340488629767e-208,-2.8850574168793775e-208,-2.8685713749701234e-208,-2.8522726744408582e-208,-2.8361581400140456e-208,-2.820224667766697e-208,-2.8044692231372315e-208,-2.7888888389987665e-208,-2.7734806137962833e-208,-2.7582417097452006e-208,-2.7431693510890154e-208,-2.7282608224137533e-208,-2.7135134670170936e-208,-2.698924685330097e-208,-2.6844919333895745e-208,-2.6702127213592132e-208,-2.6560846120976465e-208,-2.6421052197717457e-208,-2.6282722085134735e-208,-2.614583291118707e-208,-2.6010362277865185e-208,-2.587628824897439e-208,-2.5743589338293235e-208,-2.561224449809455e-208,-2.5482233108016187e-208,-2.5353534964268957e-208,-2.5226130269169975e-208,-2.5099999620990004e-208,-2.4975124004103865e-208,-2.4851484779433395e-208,-2.4729063675172906e-208,-2.4607842777787394e-208,-2.4487804523274247e-208,-2.436893168867943e-208,-2.425120738385961e-208,-2.4134615043481884e-208,-2.4019138419253227e-208,-2.3904761572371887e-208,-2.379146886619349e-208,-2.367924495910467e-208,-2.3568074797597483e-208,-2.3457943609537956e-208,-2.33488368976225e-208,-2.324074043301612e-208,-2.3133640249166475e-208,-2.3027522635788237e-208,-2.2922374133012244e-208,-2.2818181525694216e-208,-2.2714931837878014e-208,-2.261261232740849e-208,-2.2511210480689338e-208,-2.2410714007581317e-208,-2.2311110836436547e-208,-2.221238910926463e-208,-2.2114537177026534e-208,-2.2017543595052328e-208,-2.192139711857898e-208,-2.182608669840454e-208,-2.173160147665524e-208,-2.1637930782662015e-208,-2.1545064128943253e-208,-2.1452991207290528e-208,-2.1361701884954283e-208,-2.1271186200926463e-208,-2.1181434362317296e-208,-2.1092436740823393e-208,-2.1004183869284506e-208,-2.091666643832639e-208,-2.0829875293087243e-208,-2.0743801430025273e-208,-2.0658435993805146e-208,-2.0573770274260955e-208,-2.048979570343357e-208,-2.0406503852680287e-208,-2.0323886429854614e-208,-2.0241935276554375e-208,-2.0160642365436046e-208,-2.00799997975936e-208,-1.99999998e-208,-1.9920634723009578e-208,-1.984189703791967e-208,-1.976377933458987e-208,-1.9686274319117264e-208,-1.9609374811566166e-208,-1.9533073743750855e-208,-1.945736415706989e-208,-1.9382239200390575e-208,-1.9307692127982252e-208,-1.9233716297497104e-208,-1.9160305167997206e-208,-1.9087452298026575e-208,-1.9015151343727046e-208,-1.8943396056996799e-208,-1.8872180283690431e-208,-1.8801497961859477e-208,-1.8731343120032303e-208,-1.8661709875532403e-208,-1.8592592432834023e-208,-1.8523985081954225e-208,-1.845588219688041e-208,-1.8388278234032393e-208,-1.8321167730758168e-208,-1.8254545303862484e-208,-1.8188405648167406e-208,-1.8122743535104067e-208,-1.8057553811334816e-208,-1.7992831397404967e-208,-1.7928571286423468e-208,-1.7864768542771747e-208,-1.7801418300839998e-208,-1.7738515763790282e-208,-1.7676056202345766e-208,-1.7614034953605416e-208,-1.7552447419883613e-208,-1.7491289067573966e-208,-1.7430555426036844e-208,-1.737024208650998e-208,-1.7310344701041617e-208,-1.7250858981445661e-208,-1.719178069827829e-208,-1.7133105679835526e-208,-1.7074829811171271e-208,-1.7016949033135306e-208,-1.695945934143079e-208,-1.6902356785690802e-208,-1.6845637468573488e-208,-1.6789297544875337e-208,-1.6733333220662223e-208,-1.6677740752417744e-208,-1.66225164462085e-208,-1.6567656656865886e-208,-1.651315778718404e-208,-1.6459016287133568e-208,-1.6405228653090692e-208,-1.6351791427081457e-208,-1.6298701196040649e-208,-1.6245954591085138e-208,-1.619354828680125e-208,-1.6141479000545902e-208,-1.6089743491761178e-208,-1.6038338561302046e-208,-1.5987261050776909e-208,-1.5936507841900732e-208,-1.5886075855860441e-208,-1.5835962052692336e-208,-1.5786163430671257e-208,-1.5736677025711226e-208,-1.5687499910777346e-208,-1.5638629195308666e-208,-1.5590062024651828e-208,-1.554179557950522e-208,-1.549382707537342e-208,-1.5446153762031718e-208,-1.539877292300049e-208,-1.5351681875029224e-208,-1.5304877967589976e-208,-1.5258358582380058e-208,-1.5212121132833792e-208,-1.5166163063643084e-208,-1.5120481850286688e-208,-1.5075074998567936e-208,-1.502994004416078e-208,-1.4985074552163957e-208,-1.4940476116663124e-208,-1.4896142360300787e-208,-1.4852070933853856e-208,-1.4808259515818692e-208,-1.4764705812003461e-208,-1.4721407555127666e-208,-1.4678362504428714e-208,-1.4635568445275353e-208,-1.459302318878786e-208,-1.455072457146482e-208,-1.4508670454816398e-208,-1.4466858725003944e-208,-1.4425287292485799e-208,-1.43839540916692e-208,-1.4342857080568164e-208,-1.4301994240467204e-208,-1.426136357559078e-208,-1.4220963112778372e-208,-1.4180790901165055e-208,-1.4140845011867488e-208,-1.4101123537675169e-208,-1.4061624592746903e-208,-1.4022346312312351e-208,-1.3983286852378551e-208,-1.3944444389441359e-208,-1.3905817120201658e-208,-1.3867403261286286e-208,-1.3829201048973583e-208,-1.379120873892344e-208,-1.3753424605911804e-208,-1.371584694356953e-208,-1.3678474064125506e-208,-1.3641304298153947e-208,-1.3604335994325837e-208,-1.3567567519164355e-208,-1.3530997256804297e-208,-1.3494623608755348e-208,-1.3458444993669186e-208,-1.34224598471103e-208,-1.338666662133049e-208,-1.335106378504697e-208,-1.331564982322397e-208,-1.328042323685787e-208,-1.3245382542765644e-208,-1.3210526273376732e-208,-1.317585297652813e-208,-1.314136121526274e-208,-1.3107049567630839e-208,-1.3072916626494683e-208,-1.3038960999336144e-208,-1.300518130806733e-208,-1.2971576188844153e-208,-1.2938144291882772e-208,-1.290488428127887e-208,-1.2871794834829718e-208,-1.2838874643858948e-208,-1.2806122413044044e-208,-1.2773536860246424e-208,-1.2741116716344147e-208,-1.2708860725067136e-208,-1.2676767642834915e-208,-1.264483623859678e-208,-1.2613065293674402e-208,-1.2581453601606774e-208,-1.25499999679975e-208,-1.2518703210364363e-208,-1.248756215799114e-208,-1.2456575651781613e-208,-1.2425742544115774e-208,-1.2395061698708123e-208,-1.2364531990468102e-208,-1.2334152305362544e-208,-1.230392154028018e-208,-1.2273838602898118e-208,-1.2243902411550268e-208,-1.221411189509771e-208,-1.2184465992800925e-208,-1.2154963654193905e-208,-1.212560383896007e-208,-1.2096385516809988e-208,-1.2067307667360855e-208,-1.2038369280017714e-208,-1.2009569353856369e-208,-1.198090689750799e-208,-1.1952380929045352e-208,-1.1923990475870708e-208,-1.1895734574605244e-208,-1.186761227098011e-208,-1.1839622619728996e-208,-1.1811764684482216e-208,-1.1784037537662282e-208,-1.175644026038096e-208,-1.1728971942337758e-208,-1.1701631681719833e-208,-1.16744185851033e-208,-1.1647331767355904e-208,-1.1620370351541067e-208,-1.1593533468823236e-208,-1.1566820258374567e-208,-1.1540229867282864e-208,-1.151376145046082e-208,-1.1487414170556478e-208,-1.1461187197864932e-208,-1.143507971024123e-208,-1.1409090893014463e-208,-1.1383219938903028e-208,-1.1357466047931041e-208,-1.1331828427345871e-208,-1.1306306291536808e-208,-1.1280898861954804e-208,-1.125560536703332e-208,-1.1230425042110215e-208,-1.1205357129350686e-208,-1.1180400877671242e-208,-1.1155555542664692e-208,-1.1130820386526123e-208,-1.1106194677979874e-208,-1.1081677692207456e-208,-1.1057268710776457e-208,-1.1032967021570342e-208,-1.100877191871922e-208,-1.0984682702531494e-208,-1.0960698679426404e-208,-1.0936819161867468e-208,-1.0913043468296786e-208,-1.088937092307019e-208,-1.0865800856393246e-208,-1.084233260425808e-208,-1.081896550838102e-208,-1.0795698916141057e-208,-1.0772532180519074e-208,-1.0749464660037874e-208,-1.0726495718702974e-208,-1.0703624725944146e-208,-1.0680851056557719e-208,-1.065817409064961e-208,-1.0635593213579073e-208,-1.061310781590317e-208,-1.059071729332194e-208,-1.0568421046624266e-208,-1.0546218481634418e-208,-1.0524109009159271e-208,-1.0502092044936188e-208,-1.0480167009581548e-208,-1.045833332853993e-208,-1.043659043203392e-208,-1.0414937755014549e-208,-1.0393374737112336e-208,-1.0371900822588962e-208,-1.035051546028951e-208,-1.032921810359532e-208,-1.030800821037741e-208,-1.0286885242950484e-208,-1.0265848668027484e-208,-1.0244897956674718e-208,-1.0224032584267528e-208,-1.0203252030446493e-208,-1.0182555779074177e-208,-1.0161943318192398e-208,-1.0141414139980003e-208,-1.0120967740711173e-208,-1.0100603620714225e-208,-1.0080321284330898e-208,-1.0060120239876146e-208,-1.00399999995984e-208,-1.001996007964032e-208,-1.0e-208],"x":[-1.0e200,-1.9920418525896414e205,-3.9840737051792828e205,-5.9761055577689245e205,-7.9681374103585654e205,-9.960169262948207e205,-1.1952201115537848e206,-1.3944232968127489e206,-1.5936264820717132e206,-1.792829667330677e206,-1.9920328525896414e206,-2.1912360378486056e206,-2.3904392231075695e206,-2.5896424083665338e206,-2.788845593625498e206,-2.988048778884462e206,-3.1872519641434262e206,-3.3864551494023905e206,-3.5856583346613544e206,-3.784861519920318e206,-3.984064705179283e206,-4.183267890438247e206,-4.382471075697211e206,-4.5816742609561754e206,-4.780877446215139e206,-4.980080631474103e206,-5.179283816733068e206,-5.378487001992032e206,-5.577690187250996e206,-5.77689337250996e206,-5.976096557768924e206,-6.175299743027888e206,-6.374502928286853e206,-6.573706113545817e206,-6.77290929880478e206,-6.972112484063744e206,-7.171315669322708e206,-7.370518854581674e206,-7.569722039840638e206,-7.768925225099602e206,-7.968128410358565e206,-8.16733159561753e206,-8.366534780876493e206,-8.565737966135459e206,-8.764941151394423e206,-8.964144336653386e206,-9.16334752191235e206,-9.362550707171314e206,-9.561753892430278e206,-9.760957077689244e206,-9.960160262948207e206,-1.0159363448207171e207,-1.0358566633466135e207,-1.0557769818725099e207,-1.0756973003984063e207,-1.0956176189243027e207,-1.1155379374501992e207,-1.1354582559760956e207,-1.155378574501992e207,-1.1752988930278884e207,-1.1952192115537848e207,-1.2151395300796812e207,-1.2350598486055777e207,-1.2549801671314741e207,-1.2749004856573705e207,-1.294820804183267e207,-1.3147411227091633e207,-1.3346614412350597e207,-1.354581759760956e207,-1.3745020782868525e207,-1.3944223968127489e207,-1.4143427153386455e207,-1.434263033864542e207,-1.4541833523904383e207,-1.4741036709163347e207,-1.494023989442231e207,-1.5139443079681275e207,-1.533864626494024e207,-1.5537849450199203e207,-1.5737052635458167e207,-1.593625582071713e207,-1.6135459005976094e207,-1.6334662191235058e207,-1.6533865376494022e207,-1.673306856175299e207,-1.6932271747011953e207,-1.7131474932270917e207,-1.733067811752988e207,-1.7529881302788845e207,-1.7729084488047809e207,-1.7928287673306772e207,-1.8127490858565736e207,-1.83266940438247e207,-1.8525897229083664e207,-1.8725100414342628e207,-1.8924303599601592e207,-1.912350678486056e207,-1.9322709970119523e207,-1.9521913155378487e207,-1.972111634063745e207,-1.9920319525896414e207,-2.0119522711155378e207,-2.0318725896414342e207,-2.0517929081673306e207,-2.071713226693227e207,-2.0916335452191234e207,-2.1115538637450198e207,-2.1314741822709162e207,-2.1513945007968126e207,-2.1713148193227092e207,-2.1912351378486056e207,-2.211155456374502e207,-2.2310757749003984e207,-2.2509960934262948e207,-2.2709164119521912e207,-2.2908367304780876e207,-2.310757049003984e207,-2.3306773675298804e207,-2.3505976860557768e207,-2.3705180045816732e207,-2.3904383231075696e207,-2.4103586416334662e207,-2.4302789601593626e207,-2.450199278685259e207,-2.4701195972111554e207,-2.4900399157370518e207,-2.5099602342629482e207,-2.5298805527888446e207,-2.549800871314741e207,-2.5697211898406374e207,-2.589641508366534e207,-2.60956182689243e207,-2.6294821454183265e207,-2.649402463944223e207,-2.6693227824701193e207,-2.6892431009960157e207,-2.709163419521912e207,-2.7290837380478085e207,-2.749004056573705e207,-2.768924375099601e207,-2.788844693625498e207,-2.8087650121513946e207,-2.828685330677291e207,-2.8486056492031874e207,-2.868525967729084e207,-2.88844628625498e207,-2.9083666047808766e207,-2.928286923306773e207,-2.9482072418326694e207,-2.968127560358566e207,-2.988047878884462e207,-3.0079681974103585e207,-3.027888515936255e207,-3.0478088344621513e207,-3.0677291529880477e207,-3.087649471513944e207,-3.1075697900398405e207,-3.127490108565737e207,-3.147410427091633e207,-3.1673307456175297e207,-3.187251064143426e207,-3.2071713826693224e207,-3.227091701195219e207,-3.247012019721115e207,-3.2669323382470116e207,-3.2868526567729086e207,-3.306772975298805e207,-3.3266932938247014e207,-3.346613612350598e207,-3.366533930876494e207,-3.3864542494023905e207,-3.406374567928287e207,-3.4262948864541833e207,-3.4462152049800797e207,-3.466135523505976e207,-3.4860558420318725e207,-3.505976160557769e207,-3.525896479083665e207,-3.5458167976095617e207,-3.565737116135458e207,-3.5856574346613544e207,-3.605577753187251e207,-3.625498071713147e207,-3.6454183902390436e207,-3.66533870876494e207,-3.6852590272908364e207,-3.705179345816733e207,-3.725099664342629e207,-3.7450199828685256e207,-3.764940301394422e207,-3.784860619920319e207,-3.8047809384462153e207,-3.8247012569721117e207,-3.844621575498008e207,-3.8645418940239045e207,-3.884462212549801e207,-3.904382531075697e207,-3.9243028496015937e207,-3.94422316812749e207,-3.9641434866533865e207,-3.984063805179283e207,-4.003984123705179e207,-4.0239044422310756e207,-4.043824760756972e207,-4.0637450792828684e207,-4.083665397808765e207,-4.103585716334661e207,-4.1235060348605576e207,-4.143426353386454e207,-4.1633466719123504e207,-4.183266990438247e207,-4.203187308964143e207,-4.2231076274900395e207,-4.243027946015936e207,-4.2629482645418323e207,-4.282868583067729e207,-4.3027889015936257e207,-4.322709220119522e207,-4.3426295386454185e207,-4.362549857171315e207,-4.382470175697211e207,-4.4023904942231076e207,-4.422310812749004e207,-4.4422311312749004e207,-4.462151449800797e207,-4.482071768326693e207,-4.5019920868525896e207,-4.521912405378486e207,-4.5418327239043824e207,-4.561753042430279e207,-4.581673360956175e207,-4.6015936794820715e207,-4.621513998007968e207,-4.6414343165338643e207,-4.6613546350597607e207,-4.681274953585657e207,-4.7011952721115535e207,-4.72111559063745e207,-4.741035909163346e207,-4.7609562276892427e207,-4.7808765462151396e207,-4.800796864741036e207,-4.8207171832669324e207,-4.840637501792829e207,-4.860557820318725e207,-4.8804781388446216e207,-4.900398457370518e207,-4.9203187758964144e207,-4.940239094422311e207,-4.960159412948207e207,-4.9800797314741035e207,-5.00000005e207,-5.0199203685258963e207,-5.0398406870517927e207,-5.059761005577689e207,-5.0796813241035855e207,-5.099601642629482e207,-5.119521961155378e207,-5.139442279681275e207,-5.159362598207171e207,-5.179282916733067e207,-5.199203235258964e207,-5.21912355378486e207,-5.239043872310757e207,-5.258964190836653e207,-5.278884509362549e207,-5.298804827888446e207,-5.318725146414342e207,-5.338645464940239e207,-5.358565783466135e207,-5.378486101992031e207,-5.398406420517928e207,-5.418326739043824e207,-5.43824705756972e207,-5.458167376095617e207,-5.478087694621513e207,-5.49800801314741e207,-5.517928331673307e207,-5.537848650199204e207,-5.5577689687251e207,-5.577689287250996e207,-5.597609605776893e207,-5.617529924302789e207,-5.637450242828686e207,-5.657370561354582e207,-5.677290879880478e207,-5.697211198406375e207,-5.717131516932271e207,-5.737051835458168e207,-5.756972153984064e207,-5.77689247250996e207,-5.796812791035857e207,-5.816733109561753e207,-5.83665342808765e207,-5.856573746613546e207,-5.876494065139442e207,-5.896414383665339e207,-5.916334702191235e207,-5.936255020717131e207,-5.956175339243028e207,-5.976095657768924e207,-5.996015976294821e207,-6.015936294820717e207,-6.035856613346613e207,-6.05577693187251e207,-6.075697250398406e207,-6.095617568924303e207,-6.115537887450199e207,-6.135458205976095e207,-6.155378524501992e207,-6.175298843027888e207,-6.195219161553785e207,-6.215139480079681e207,-6.235059798605577e207,-6.254980117131474e207,-6.27490043565737e207,-6.294820754183266e207,-6.314741072709163e207,-6.334661391235059e207,-6.354581709760956e207,-6.374502028286852e207,-6.394422346812748e207,-6.414342665338645e207,-6.434262983864541e207,-6.454183302390438e207,-6.474103620916334e207,-6.49402393944223e207,-6.513944257968128e207,-6.533864576494024e207,-6.553784895019921e207,-6.573705213545817e207,-6.593625532071714e207,-6.61354585059761e207,-6.633466169123506e207,-6.653386487649403e207,-6.673306806175299e207,-6.693227124701195e207,-6.713147443227092e207,-6.733067761752988e207,-6.752988080278885e207,-6.772908398804781e207,-6.792828717330677e207,-6.812749035856574e207,-6.83266935438247e207,-6.852589672908367e207,-6.872509991434263e207,-6.892430309960159e207,-6.912350628486056e207,-6.932270947011952e207,-6.952191265537849e207,-6.972111584063745e207,-6.992031902589641e207,-7.011952221115538e207,-7.031872539641434e207,-7.05179285816733e207,-7.071713176693227e207,-7.091633495219123e207,-7.11155381374502e207,-7.131474132270916e207,-7.151394450796812e207,-7.171314769322709e207,-7.191235087848605e207,-7.211155406374502e207,-7.231075724900398e207,-7.250996043426294e207,-7.270916361952191e207,-7.290836680478087e207,-7.310756999003984e207,-7.33067731752988e207,-7.350597636055776e207,-7.370517954581673e207,-7.390438273107569e207,-7.410358591633466e207,-7.430278910159362e207,-7.450199228685258e207,-7.470119547211155e207,-7.490039865737051e207,-7.509960184262949e207,-7.529880502788845e207,-7.549800821314741e207,-7.569721139840638e207,-7.589641458366534e207,-7.609561776892431e207,-7.629482095418327e207,-7.649402413944223e207,-7.66932273247012e207,-7.689243050996016e207,-7.709163369521913e207,-7.729083688047809e207,-7.749004006573705e207,-7.768924325099602e207,-7.788844643625498e207,-7.808764962151395e207,-7.828685280677291e207,-7.848605599203187e207,-7.868525917729084e207,-7.88844623625498e207,-7.908366554780876e207,-7.928286873306773e207,-7.948207191832669e207,-7.968127510358566e207,-7.988047828884462e207,-8.007968147410358e207,-8.027888465936255e207,-8.047808784462151e207,-8.067729102988048e207,-8.087649421513944e207,-8.10756974003984e207,-8.127490058565737e207,-8.147410377091633e207,-8.16733069561753e207,-8.187251014143426e207,-8.207171332669322e207,-8.227091651195219e207,-8.247011969721115e207,-8.266932288247012e207,-8.286852606772908e207,-8.306772925298804e207,-8.326693243824701e207,-8.346613562350597e207,-8.366533880876493e207,-8.38645419940239e207,-8.406374517928286e207,-8.426294836454183e207,-8.446215154980079e207,-8.466135473505975e207,-8.486055792031872e207,-8.505976110557769e207,-8.525896429083666e207,-8.545816747609562e207,-8.565737066135459e207,-8.585657384661355e207,-8.605577703187251e207,-8.625498021713148e207,-8.645418340239044e207,-8.66533865876494e207,-8.685258977290837e207,-8.705179295816733e207,-8.72509961434263e207,-8.745019932868526e207,-8.764940251394422e207,-8.784860569920319e207,-8.804780888446215e207,-8.824701206972112e207,-8.844621525498008e207,-8.864541844023904e207,-8.884462162549801e207,-8.904382481075697e207,-8.924302799601594e207,-8.94422311812749e207,-8.964143436653386e207,-8.984063755179283e207,-9.003984073705179e207,-9.023904392231076e207,-9.043824710756972e207,-9.063745029282868e207,-9.083665347808765e207,-9.103585666334661e207,-9.123505984860557e207,-9.143426303386454e207,-9.16334662191235e207,-9.183266940438247e207,-9.203187258964143e207,-9.223107577490039e207,-9.243027896015936e207,-9.262948214541832e207,-9.282868533067729e207,-9.302788851593625e207,-9.322709170119521e207,-9.342629488645418e207,-9.362549807171314e207,-9.38247012569721e207,-9.402390444223107e207,-9.422310762749003e207,-9.4422310812749e207,-9.462151399800796e207,-9.482071718326693e207,-9.50199203685259e207,-9.521912355378486e207,-9.541832673904383e207,-9.561752992430279e207,-9.581673310956176e207,-9.601593629482072e207,-9.621513948007968e207,-9.641434266533865e207,-9.661354585059761e207,-9.681274903585658e207,-9.701195222111554e207,-9.72111554063745e207,-9.741035859163347e207,-9.760956177689243e207,-9.78087649621514e207,-9.800796814741036e207,-9.820717133266932e207,-9.840637451792829e207,-9.860557770318725e207,-9.880478088844621e207,-9.900398407370518e207,-9.920318725896414e207,-9.940239044422311e207,-9.960159362948207e207,-9.980079681474103e207,-1.0e208]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json new file mode 100644 index 000000000000..d408d2259c5a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json @@ -0,0 +1 @@ +{"expected":[1.0e-300,5.0199748499260014e-306,2.5099937250156875e-306,1.6733305500268516e-306,1.2549984375269454e-306,1.003999002024992e-306,8.366659750227939e-307,7.171423500207668e-307,6.2749961251898935e-307,5.5777747223967356e-307,5.0199975301612154e-307,4.563634326595951e-307,4.183331625139586e-307,3.861537009006463e-307,3.585713035837171e-307,3.346665580115908e-307,3.1374990469846647e-307,2.952940334014081e-307,2.788888138987856e-307,2.642104591507096e-307,2.5099993950901456e-307,2.3904756429434363e-307,2.2818176839670507e-307,2.1826082411002836e-307,2.0916662500764718e-307,2.007999616873673e-307,1.9307688772900056e-307,1.85925893216741e-307,1.7928568393520923e-307,1.7310342004209736e-307,1.6733330700622637e-307,1.6193545926722538e-307,1.5687497695898777e-307,1.5212119050156414e-307,1.4764703850034881e-307,1.4342855229110458e-307,1.3944442639413815e-307,1.356756586245456e-307,1.3210524702714877e-307,1.287179334368197e-307,1.2549998550475168e-307,1.22439010623321e-307,1.1952379643310803e-307,1.1674417358474985e-307,1.1409089721508388e-307,1.1155554422647027e-307,1.0913042396446232e-307,1.0680850029832604e-307,1.04583323441494e-307,1.0244897012053398e-307,1.0039999092384082e-307,9.8431363844599e-308,9.653845318417233e-308,9.471697310793945e-308,9.296295525048074e-308,9.12727198547444e-308,8.964285000344444e-308,8.807016856294298e-308,8.655171751224784e-308,8.508473937414583e-308,8.366666050322267e-308,8.229507601768385e-308,8.096773618938646e-308,7.968253413005834e-308,7.843749463193397e-308,7.723076403848555e-308,7.606060103599666e-308,7.492536826977087e-308,7.382352470008681e-308,7.275361862285263e-308,7.171428128849006e-308,7.070422106006771e-308,6.972221805825643e-308,6.876711924642545e-308,6.78378339142442e-308,6.693332952259577e-308,6.605262787652375e-308,6.519480159639082e-308,6.435897086048671e-308,6.354430039503302e-308,6.274999668993767e-308,6.197530542078968e-308,6.121950905948856e-308,6.048192465759922e-308,5.97619017880387e-308,5.90588206320555e-308,5.837209019967564e-308,5.770114667287633e-308,5.704545186172533e-308,5.640449176460055e-308,5.577777522439517e-308,5.516483267332459e-308,5.456521495959369e-308,5.397849224976308e-308,5.340425300117711e-308,5.284210299929095e-308,5.229166445516502e-308,5.175257515878424e-308,5.1224487684215e-308,5.070706864293448e-308,5.019999798196008e-308,4.970296832367423e-308,4.921568434448296e-308,4.873786218966922e-308,4.826922892200451e-308,4.780952200186855e-308,4.735848879679608e-308,4.69158861185257e-308,4.648147978576823e-308,4.60550442110429e-308,4.563636201004964e-308,4.522522363215654e-308,4.482142701068245e-308,4.4424777231748815e-308,4.4035086220560225e-308,4.365217244405298e-308,4.327586062892395e-308,4.2905981494119407e-308,4.254237149692621e-308,4.218487259186502e-308,4.183333200163893e-308,4.1487601999439974e-308,4.114753970196188e-308,4.081300687250978e-308,4.0483869733636873e-308,4.0159998788774436e-308,3.984126865235579e-308,3.952755788796581e-308,3.9218748854077183e-308,3.891472755696175e-308,3.861538351039056e-308,3.832060960175983e-308,3.8030301964302143e-308,3.77443598550625e-308,3.746268553833819e-308,3.7185184174299063e-308,3.6911763712521654e-308,3.664233479018597e-308,3.637681063469862e-308,3.6115106970519153e-308,3.585714192997961e-308,3.560283596789902e-308,3.5352111779805616e-308,3.5104894223590417e-308,3.486111024442518e-308,3.462068880278718e-308,3.4383560805441937e-308,3.414965903924293e-308,3.391891810761507e-308,3.3691274369595983e-308,3.3466665881315576e-308,3.3245032339800904e-308,3.3026315028999325e-308,3.2810456767918336e-308,3.2597401860785983e-308,3.23870960491405e-308,3.217948646576267e-308,3.197452159036879e-308,3.1772151206986073e-308,3.1572326362936607e-308,3.137499932935939e-308,3.1180123563203597e-308,3.098765367062949e-308,3.079754537175657e-308,3.060975546670138e-308,3.0424241802850334e-308,3.0240963243315443e-308,3.0059879636523373e-308,2.9880951786890605e-308,2.97041414265397e-308,2.9529411188013853e-308,2.9356724577948783e-308,2.9186045951663073e-308,2.901734048862977e-308,2.8850574168793774e-308,2.8685713749701233e-308,2.852272674440858e-308,2.8361581400140456e-308,2.8202246677666973e-308,2.804469223137231e-308,2.788888838998766e-308,2.773480613796283e-308,2.7582417097452005e-308,2.743169351089015e-308,2.7282608224137534e-308,2.713513467017094e-308,2.6989246853300965e-308,2.684491933389574e-308,2.670212721359213e-308,2.6560846120976464e-308,2.642105219771746e-308,2.6282722085134736e-308,2.614583291118707e-308,2.6010362277865185e-308,2.587628824897439e-308,2.5743589338293234e-308,2.561224449809455e-308,2.5482233108016185e-308,2.5353534964268957e-308,2.5226130269169975e-308,2.5099999620990007e-308,2.4975124004103863e-308,2.4851484779433393e-308,2.4729063675172905e-308,2.4607842777787393e-308,2.448780452327425e-308,2.4368931688679427e-308,2.425120738385961e-308,2.4134615043481885e-308,2.4019138419253227e-308,2.3904761572371884e-308,2.3791468866193485e-308,2.367924495910467e-308,2.356807479759748e-308,2.345794360953795e-308,2.33488368976225e-308,2.324074043301612e-308,2.3133640249166474e-308,2.302752263578824e-308,2.2922374133012245e-308,2.2818181525694215e-308,2.2714931837878016e-308,2.261261232740849e-308,2.251121048068934e-308,2.2410714007581317e-308,2.231111083643655e-308,2.221238910926463e-308,2.211453717702653e-308,2.201754359505233e-308,2.1921397118578976e-308,2.182608669840454e-308,2.173160147665524e-308,2.1637930782662015e-308,2.1545064128943254e-308,2.1452991207290524e-308,2.136170188495428e-308,2.1271186200926457e-308,2.1181434362317293e-308,2.109243674082339e-308,2.1004183869284505e-308,2.091666643832639e-308,2.082987529308724e-308,2.0743801430025275e-308,2.065843599380515e-308,2.0573770274260954e-308,2.0489795703433574e-308,2.0406503852680285e-308,2.032388642985461e-308,2.024193527655437e-308,2.0160642365436043e-308,2.00799997975936e-308,1.99999998e-308,1.9920634723009577e-308,1.984189703791967e-308,1.976377933458987e-308,1.9686274319117267e-308,1.9609374811566163e-308,1.953307374375085e-308,1.945736415706989e-308,1.938223920039057e-308,1.9307692127982247e-308,1.92337162974971e-308,1.9160305167997205e-308,1.9087452298026575e-308,1.9015151343727044e-308,1.89433960569968e-308,1.887218028369043e-308,1.8801497961859476e-308,1.87313431200323e-308,1.86617098755324e-308,1.859259243283402e-308,1.852398508195422e-308,1.845588219688041e-308,1.838827823403239e-308,1.832116773075817e-308,1.825454530386248e-308,1.8188405648167404e-308,1.812274353510407e-308,1.8057553811334817e-308,1.799283139740497e-308,1.792857128642347e-308,1.786476854277175e-308,1.7801418300839997e-308,1.773851576379028e-308,1.767605620234577e-308,1.761403495360542e-308,1.7552447419883614e-308,1.7491289067573967e-308,1.7430555426036845e-308,1.737024208650998e-308,1.731034470104162e-308,1.725085898144566e-308,1.7191780698278286e-308,1.7133105679835524e-308,1.707482981117127e-308,1.7016949033135307e-308,1.695945934143079e-308,1.69023567856908e-308,1.684563746857349e-308,1.6789297544875336e-308,1.6733333220662223e-308,1.6677740752417747e-308,1.66225164462085e-308,1.6567656656865886e-308,1.6513157787184035e-308,1.6459016287133565e-308,1.640522865309069e-308,1.6351791427081456e-308,1.629870119604065e-308,1.624595459108514e-308,1.6193548286801248e-308,1.6141479000545904e-308,1.6089743491761176e-308,1.6038338561302044e-308,1.5987261050776905e-308,1.593650784190073e-308,1.588607585586044e-308,1.583596205269233e-308,1.5786163430671255e-308,1.5736677025711226e-308,1.5687499910777345e-308,1.563862919530866e-308,1.5590062024651827e-308,1.554179557950522e-308,1.549382707537342e-308,1.544615376203172e-308,1.539877292300049e-308,1.5351681875029223e-308,1.530487796758998e-308,1.525835858238006e-308,1.521212113283379e-308,1.5166163063643086e-308,1.512048185028669e-308,1.507507499856794e-308,1.502994004416078e-308,1.498507455216396e-308,1.4940476116663124e-308,1.4896142360300783e-308,1.485207093385386e-308,1.4808259515818693e-308,1.476470581200346e-308,1.4721407555127665e-308,1.4678362504428715e-308,1.463556844527535e-308,1.459302318878786e-308,1.455072457146482e-308,1.4508670454816397e-308,1.4466858725003944e-308,1.4425287292485796e-308,1.43839540916692e-308,1.4342857080568163e-308,1.43019942404672e-308,1.426136357559078e-308,1.422096311277837e-308,1.4180790901165055e-308,1.4140845011867487e-308,1.4101123537675166e-308,1.40616245927469e-308,1.402234631231235e-308,1.3983286852378553e-308,1.3944444389441358e-308,1.3905817120201655e-308,1.3867403261286285e-308,1.3829201048973584e-308,1.379120873892344e-308,1.3753424605911806e-308,1.371584694356953e-308,1.3678474064125505e-308,1.3641304298153946e-308,1.3604335994325834e-308,1.3567567519164357e-308,1.3530997256804295e-308,1.349462360875535e-308,1.3458444993669186e-308,1.3422459847110297e-308,1.338666662133049e-308,1.3351063785046965e-308,1.331564982322397e-308,1.328042323685787e-308,1.3245382542765645e-308,1.321052627337673e-308,1.317585297652813e-308,1.314136121526274e-308,1.310704956763084e-308,1.307291662649468e-308,1.3038960999336143e-308,1.300518130806733e-308,1.297157618884415e-308,1.2938144291882773e-308,1.290488428127887e-308,1.287179483482972e-308,1.283887464385895e-308,1.2806122413044047e-308,1.2773536860246425e-308,1.274111671634415e-308,1.2708860725067137e-308,1.2676767642834913e-308,1.264483623859678e-308,1.26130652936744e-308,1.2581453601606775e-308,1.25499999679975e-308,1.2518703210364366e-308,1.248756215799114e-308,1.2456575651781613e-308,1.2425742544115773e-308,1.2395061698708126e-308,1.23645319904681e-308,1.2334152305362545e-308,1.230392154028018e-308,1.2273838602898116e-308,1.224390241155027e-308,1.221411189509771e-308,1.2184465992800926e-308,1.21549636541939e-308,1.212560383896007e-308,1.209638551680999e-308,1.2067307667360853e-308,1.203836928001771e-308,1.2009569353856366e-308,1.198090689750799e-308,1.195238092904535e-308,1.1923990475870706e-308,1.189573457460524e-308,1.186761227098011e-308,1.1839622619728997e-308,1.1811764684482214e-308,1.178403753766228e-308,1.175644026038096e-308,1.172897194233776e-308,1.1701631681719834e-308,1.16744185851033e-308,1.16473317673559e-308,1.1620370351541066e-308,1.1593533468823235e-308,1.1566820258374566e-308,1.1540229867282865e-308,1.151376145046082e-308,1.148741417055648e-308,1.1461187197864934e-308,1.143507971024123e-308,1.1409090893014463e-308,1.138321993890303e-308,1.1357466047931043e-308,1.133182842734587e-308,1.130630629153681e-308,1.12808988619548e-308,1.125560536703332e-308,1.1230425042110214e-308,1.1205357129350684e-308,1.1180400877671244e-308,1.115555554266469e-308,1.113082038652612e-308,1.110619467797987e-308,1.1081677692207457e-308,1.1057268710776455e-308,1.1032967021570343e-308,1.100877191871922e-308,1.0984682702531495e-308,1.0960698679426404e-308,1.093681916186747e-308,1.0913043468296788e-308,1.088937092307019e-308,1.086580085639325e-308,1.0842332604258076e-308,1.081896550838102e-308,1.0795698916141057e-308,1.0772532180519075e-308,1.074946466003787e-308,1.0726495718702973e-308,1.0703624725944145e-308,1.0680851056557716e-308,1.065817409064961e-308,1.063559321357907e-308,1.0613107815903167e-308,1.059071729332194e-308,1.056842104662427e-308,1.0546218481634417e-308,1.0524109009159273e-308,1.050209204493619e-308,1.048016700958155e-308,1.045833332853993e-308,1.043659043203392e-308,1.041493775501455e-308,1.0393374737112336e-308,1.0371900822588965e-308,1.035051546028951e-308,1.032921810359532e-308,1.030800821037741e-308,1.028688524295048e-308,1.0265848668027483e-308,1.024489795667472e-308,1.022403258426753e-308,1.020325203044649e-308,1.018255577907418e-308,1.0161943318192396e-308,1.014141413998e-308,1.0120967740711173e-308,1.0100603620714223e-308,1.0080321284330897e-308,1.0060120239876145e-308,1.00399999995984e-308,1.0019960079640323e-308,1.0e-308],"x":[1.0e300,1.9920418525896416e305,3.9840737051792825e305,5.9761055577689246e305,7.968137410358565e305,9.960169262948207e305,1.195220111553785e306,1.394423296812749e306,1.593626482071713e306,1.7928296673306772e306,1.9920328525896414e306,2.1912360378486056e306,2.39043922310757e306,2.5896424083665337e306,2.788845593625498e306,2.988048778884462e306,3.187251964143426e306,3.3864551494023906e306,3.5856583346613545e306,3.784861519920319e306,3.984064705179283e306,4.183267890438247e306,4.382471075697211e306,4.581674260956175e306,4.78087744621514e306,4.9800806314741036e306,5.1792838167330675e306,5.378487001992032e306,5.577690187250996e306,5.77689337250996e306,5.976096557768924e306,6.175299743027889e306,6.374502928286852e306,6.573706113545817e306,6.772909298804781e306,6.972112484063746e306,7.171315669322709e306,7.370518854581673e306,7.569722039840638e306,7.768925225099601e306,7.968128410358566e306,8.16733159561753e306,8.366534780876494e306,8.565737966135458e306,8.764941151394423e306,8.964144336653387e306,9.16334752191235e306,9.362550707171315e306,9.56175389243028e306,9.760957077689243e306,9.960160262948207e306,1.0159363448207172e307,1.0358566633466135e307,1.05577698187251e307,1.0756973003984064e307,1.0956176189243029e307,1.1155379374501992e307,1.1354582559760956e307,1.155378574501992e307,1.1752988930278885e307,1.1952192115537849e307,1.2151395300796812e307,1.2350598486055778e307,1.254980167131474e307,1.2749004856573704e307,1.294820804183267e307,1.3147411227091633e307,1.3346614412350597e307,1.3545817597609562e307,1.3745020782868526e307,1.3944223968127491e307,1.4143427153386455e307,1.4342630338645418e307,1.4541833523904384e307,1.4741036709163347e307,1.494023989442231e307,1.5139443079681276e307,1.533864626494024e307,1.5537849450199202e307,1.5737052635458168e307,1.5936255820717132e307,1.6135459005976095e307,1.633466219123506e307,1.6533865376494024e307,1.6733068561752987e307,1.6932271747011953e307,1.7131474932270916e307,1.7330678117529882e307,1.7529881302788845e307,1.7729084488047808e307,1.7928287673306774e307,1.8127490858565737e307,1.83266940438247e307,1.8525897229083667e307,1.872510041434263e307,1.8924303599601593e307,1.912350678486056e307,1.9322709970119522e307,1.9521913155378485e307,1.972111634063745e307,1.9920319525896414e307,2.0119522711155378e307,2.0318725896414343e307,2.0517929081673307e307,2.071713226693227e307,2.0916335452191236e307,2.11155386374502e307,2.1314741822709165e307,2.1513945007968128e307,2.1713148193227091e307,2.1912351378486057e307,2.211155456374502e307,2.2310757749003984e307,2.250996093426295e307,2.2709164119521913e307,2.2908367304780876e307,2.310757049003984e307,2.3306773675298807e307,2.350597686055777e307,2.3705180045816734e307,2.3904383231075697e307,2.410358641633466e307,2.4302789601593624e307,2.450199278685259e307,2.4701195972111555e307,2.490039915737052e307,2.509960234262948e307,2.5298805527888445e307,2.549800871314741e307,2.5697211898406377e307,2.589641508366534e307,2.6095618268924303e307,2.6294821454183267e307,2.649402463944223e307,2.6693227824701193e307,2.689243100996016e307,2.7091634195219125e307,2.729083738047809e307,2.749004056573705e307,2.7689243750996014e307,2.7888446936254983e307,2.8087650121513946e307,2.828685330677291e307,2.848605649203187e307,2.8685259677290836e307,2.88844628625498e307,2.9083666047808767e307,2.928286923306773e307,2.9482072418326694e307,2.9681275603585657e307,2.988047878884462e307,3.0079681974103584e307,3.027888515936255e307,3.0478088344621515e307,3.067729152988048e307,3.087649471513944e307,3.1075697900398405e307,3.1274901085657373e307,3.1474104270916337e307,3.16733074561753e307,3.1872510641434263e307,3.2071713826693226e307,3.227091701195219e307,3.247012019721116e307,3.266932338247012e307,3.2868526567729084e307,3.306772975298805e307,3.326693293824701e307,3.3466136123505974e307,3.366533930876494e307,3.3864542494023906e307,3.406374567928287e307,3.426294886454183e307,3.4462152049800796e307,3.4661355235059764e307,3.4860558420318727e307,3.505976160557769e307,3.5258964790836654e307,3.5458167976095617e307,3.565737116135458e307,3.585657434661355e307,3.605577753187251e307,3.6254980717131475e307,3.645418390239044e307,3.66533870876494e307,3.6852590272908365e307,3.7051793458167333e307,3.7250996643426296e307,3.745019982868526e307,3.7649403013944223e307,3.7848606199203186e307,3.804780938446215e307,3.824701256972112e307,3.844621575498008e307,3.8645418940239044e307,3.8844622125498007e307,3.904382531075697e307,3.924302849601594e307,3.94422316812749e307,3.9641434866533866e307,3.984063805179283e307,4.003984123705179e307,4.0239044422310755e307,4.0438247607569724e307,4.0637450792828687e307,4.083665397808765e307,4.1035857163346613e307,4.1235060348605577e307,4.143426353386454e307,4.163346671912351e307,4.183266990438247e307,4.2031873089641435e307,4.22310762749004e307,4.243027946015936e307,4.262948264541833e307,4.2828685830677293e307,4.3027889015936256e307,4.322709220119522e307,4.3426295386454183e307,4.3625498571713146e307,4.3824701756972114e307,4.4023904942231077e307,4.422310812749004e307,4.4422311312749004e307,4.4621514498007967e307,4.482071768326693e307,4.50199208685259e307,4.521912405378486e307,4.541832723904383e307,4.561753042430279e307,4.581673360956175e307,4.601593679482072e307,4.621513998007968e307,4.641434316533864e307,4.661354635059761e307,4.681274953585658e307,4.701195272111554e307,4.72111559063745e307,4.741035909163347e307,4.760956227689243e307,4.780876546215139e307,4.800796864741036e307,4.820717183266932e307,4.840637501792828e307,4.860557820318725e307,4.880478138844621e307,4.900398457370518e307,4.920318775896415e307,4.940239094422311e307,4.960159412948207e307,4.980079731474104e307,5.00000005e307,5.019920368525896e307,5.039840687051793e307,5.059761005577689e307,5.079681324103585e307,5.099601642629482e307,5.119521961155379e307,5.139442279681275e307,5.159362598207172e307,5.179282916733068e307,5.199203235258964e307,5.219123553784861e307,5.239043872310757e307,5.258964190836653e307,5.27888450936255e307,5.298804827888446e307,5.318725146414342e307,5.338645464940239e307,5.358565783466136e307,5.378486101992032e307,5.398406420517929e307,5.418326739043825e307,5.438247057569721e307,5.458167376095618e307,5.478087694621514e307,5.49800801314741e307,5.517928331673307e307,5.537848650199203e307,5.557768968725099e307,5.577689287250997e307,5.597609605776893e307,5.617529924302789e307,5.637450242828686e307,5.657370561354582e307,5.677290879880478e307,5.697211198406374e307,5.717131516932271e307,5.737051835458167e307,5.756972153984063e307,5.77689247250996e307,5.796812791035857e307,5.816733109561753e307,5.83665342808765e307,5.856573746613546e307,5.876494065139442e307,5.896414383665339e307,5.916334702191235e307,5.936255020717131e307,5.956175339243028e307,5.976095657768924e307,5.99601597629482e307,6.015936294820717e307,6.035856613346614e307,6.05577693187251e307,6.075697250398407e307,6.095617568924303e307,6.115537887450199e307,6.135458205976096e307,6.155378524501992e307,6.175298843027888e307,6.195219161553785e307,6.215139480079681e307,6.235059798605577e307,6.254980117131475e307,6.274900435657371e307,6.294820754183267e307,6.314741072709164e307,6.33466139123506e307,6.354581709760956e307,6.374502028286853e307,6.394422346812749e307,6.414342665338645e307,6.434262983864542e307,6.454183302390438e307,6.474103620916334e307,6.494023939442232e307,6.513944257968128e307,6.533864576494024e307,6.553784895019921e307,6.573705213545817e307,6.593625532071713e307,6.61354585059761e307,6.633466169123506e307,6.653386487649402e307,6.673306806175299e307,6.693227124701195e307,6.713147443227092e307,6.733067761752988e307,6.752988080278885e307,6.772908398804781e307,6.792828717330677e307,6.812749035856574e307,6.83266935438247e307,6.852589672908366e307,6.872509991434263e307,6.892430309960159e307,6.912350628486055e307,6.932270947011953e307,6.952191265537849e307,6.972111584063745e307,6.992031902589642e307,7.011952221115538e307,7.031872539641434e307,7.051792858167331e307,7.071713176693227e307,7.091633495219123e307,7.11155381374502e307,7.131474132270916e307,7.151394450796812e307,7.17131476932271e307,7.191235087848606e307,7.211155406374502e307,7.231075724900399e307,7.250996043426295e307,7.270916361952191e307,7.290836680478088e307,7.310756999003984e307,7.33067731752988e307,7.350597636055777e307,7.370517954581673e307,7.39043827310757e307,7.410358591633467e307,7.430278910159363e307,7.450199228685259e307,7.470119547211156e307,7.490039865737052e307,7.509960184262948e307,7.529880502788845e307,7.549800821314741e307,7.569721139840637e307,7.589641458366534e307,7.60956177689243e307,7.629482095418327e307,7.649402413944224e307,7.66932273247012e307,7.689243050996016e307,7.709163369521913e307,7.729083688047809e307,7.749004006573705e307,7.768924325099601e307,7.788844643625498e307,7.808764962151394e307,7.82868528067729e307,7.848605599203188e307,7.868525917729084e307,7.88844623625498e307,7.908366554780877e307,7.928286873306773e307,7.948207191832669e307,7.968127510358566e307,7.988047828884462e307,8.007968147410358e307,8.027888465936255e307,8.047808784462151e307,8.067729102988047e307,8.087649421513945e307,8.107569740039841e307,8.127490058565737e307,8.147410377091634e307,8.16733069561753e307,8.187251014143426e307,8.207171332669323e307,8.227091651195219e307,8.247011969721115e307,8.266932288247012e307,8.286852606772908e307,8.306772925298805e307,8.326693243824702e307,8.346613562350598e307,8.366533880876494e307,8.386454199402391e307,8.406374517928287e307,8.426294836454183e307,8.44621515498008e307,8.466135473505976e307,8.486055792031872e307,8.505976110557769e307,8.525896429083666e307,8.545816747609562e307,8.565737066135459e307,8.585657384661355e307,8.605577703187251e307,8.625498021713148e307,8.645418340239044e307,8.66533865876494e307,8.685258977290837e307,8.705179295816733e307,8.725099614342629e307,8.745019932868526e307,8.764940251394423e307,8.784860569920319e307,8.804780888446215e307,8.824701206972112e307,8.844621525498008e307,8.864541844023904e307,8.884462162549801e307,8.904382481075697e307,8.924302799601593e307,8.94422311812749e307,8.964143436653386e307,8.984063755179283e307,9.00398407370518e307,9.023904392231075e307,9.043824710756972e307,9.063745029282868e307,9.083665347808765e307,9.103585666334662e307,9.123505984860558e307,9.143426303386455e307,9.16334662191235e307,9.183266940438248e307,9.203187258964143e307,9.22310757749004e307,9.243027896015936e307,9.262948214541833e307,9.282868533067728e307,9.302788851593626e307,9.322709170119523e307,9.342629488645418e307,9.362549807171316e307,9.38247012569721e307,9.402390444223108e307,9.422310762749004e307,9.4422310812749e307,9.462151399800796e307,9.482071718326694e307,9.501992036852589e307,9.521912355378486e307,9.541832673904382e307,9.561752992430279e307,9.581673310956176e307,9.601593629482072e307,9.621513948007969e307,9.641434266533864e307,9.661354585059762e307,9.681274903585657e307,9.701195222111554e307,9.72111554063745e307,9.741035859163347e307,9.760956177689242e307,9.78087649621514e307,9.800796814741037e307,9.820717133266932e307,9.84063745179283e307,9.860557770318725e307,9.880478088844622e307,9.900398407370517e307,9.920318725896415e307,9.94023904442231e307,9.960159362948207e307,9.980079681474103e307,1.0e308]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json new file mode 100644 index 000000000000..aa5f5403dca4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json @@ -0,0 +1 @@ +{"expected":[-0.32745015023725843,-0.32228220501757976,-0.317272386683515,-0.3124136500429473,-0.30769935672565835,-0.3031232466029938,-0.2986794115555974,-0.29436227136958615,-0.2901665515644846,-0.28608726297654286,-0.2821196829390524,-0.2782593379172548,-0.2745019874696298,-0.27084360941999,-0.2672803861360766,-0.26380869182040123,-0.2604250807280673,-0.2571262762343455,-0.2539091606819807,-0.2507707659446741,-0.2477082646489839,-0.2447189620021126,-0.2418002881777449,-0.23894979121633422,-0.23616513040005896,-0.233444070066118,-0.2307844738251565,-0.2281842991544351,-0.22564159233791684,-0.2231544837277625,-0.22072118330383614,-0.2183399765097308,-0.216009220345571,-0.21372733969942823,-0.21149282390063295,-0.20930422347958236,-0.2071601471198436,-0.2050592587894541,-0.20300027503931994,-0.20098196245753583,-0.1990031352692899,-0.19706265307278792,-0.19515941870233972,-0.19329237621039916,-0.19146050896094657,-0.18966283782715046,-0.18789841948675062,-0.1861663448090685,-0.1844657373279805,-0.18279575179558286,-0.18115557281164252,-0.17954441352426334,-0.1779615143975094,-0.17640614204201288,-0.1748775881048603,-0.17337516821529744,-0.17189822098302027,-0.17044610704603122,-0.16901820816523483,-0.16761392636313044,-0.16623268310412634,-0.16487391851415778,-0.1635370906374371,-0.16222167472829832,-0.16092716257622758,-0.15965306186228406,-0.15839889554523037,-0.15716420127578884,-0.15594853083753865,-0.15475144961305537,-0.1535725360739786,-0.1524113812937703,-0.15126758848199823,-0.15014077253904828,-0.14903055963022988,-0.1479365867783013,-0.14685850147349372,-0.1457959613001678,-0.1447486335792827,-0.1437161950259048,-0.1426983314210256,-0.14169473729699794,-0.1407051156359385,-0.13972917758047806,-0.13876664215627746,-0.13781723600575385,-0.13688069313249654,-0.13595675465587448,-0.13504516857536697,-0.1341456895441721,-0.13325807865167058,-0.13238210321434454,-0.13151753657477194,-0.13066415790833558,-0.1298217520373042,-0.12899010925196158,-0.12816902513847303,-0.12735830041319784,-0.1265577407631667,-0.12576715669246008,-0.12498636337423422,-0.1242151805081555,-0.12345343218301351,-0.12270094674429595,-0.12195755666651785,-0.1212230984301074,-0.12049741240266042,-0.11978034272438426,-0.11907173719755963,-0.11837144717985787,-0.11767932748135736,-0.11699523626511117,-0.11631903495112404,-0.11565058812360322,-0.11498976344135406,-0.11433643155119712,-0.11369046600428852,-0.11305174317523091,-0.1124201421838675,-0.11179554481965587,-0.11117783546852315,-0.11056690104210817,-0.1099626309093005,-0.1093649168299901,-0.10877365289094452,-0.10818873544373496,-0.10761006304463518,-0.1070375363964206,-0.10647105829199799,-0.10591053355979911,-0.10535586901087435,-0.10480697338762507,-0.10426375731411565,-0.10372613324790905,-0.10319401543337196,-0.10266731985639682,-0.1021459642004918,-0.10162986780419023,-0.10111895161973389,-0.10061313817298566,-0.10011235152452942,-0.09961651723191638,-0.09912556231301861,-0.09863941521045212,-0.09815800575703339,-0.09768126514223459,-0.09720912587960374,-0.09674152177511809,-0.09627838789643918,-0.09581966054304042,-0.09536527721717779,-0.0949151765956766,-0.09446929850250768,-0.09402758388212691,-0.09358997477355396,-0.09315641428516636,-0.09272684657018579,-0.09230121680283478,-0.09187947115514235,-0.09146155677437846,-0.091047421761097,-0.09063701514776869,-0.09023028687798529,-0.08982718778621761,-0.08942766957810985,-0.08903168481129424,-0.08863918687670962,-0.08825012998040899,-0.08786446912584081,-0.08748216009659004,-0.08710315943956486,-0.08672742444861593,-0.08635491314857514,-0.08598558427970121,-0.08561939728252065,-0.08525631228305183,-0.0848962900784012,-0.0845392921227208,-0.08418528051351655,-0.08383421797829697,-0.0834860678615527,-0.08314079411205731,-0.08279836127047999,-0.08245873445730147,-0.08212187936102444,-0.0817877622266702,-0.08145634984455333,-0.08112760953932671,-0.08080150915928938,-0.08047801706594986,-0.08015710212383755,-0.07983873369055605,-0.07952288160707115,-0.07920951618822702,-0.078898608213485,-0.07859012891787814,-0.0782840499831764,-0.07798034352925604,-0.07767898210566845,-0.07737993868340264,-0.07708318664683629,-0.07678869978587041,-0.0764964522882428,-0.07620641873201538,-0.07591857407823109,-0.07563289366373571,-0.07534935319416045,-0.07506792873706089,-0.07478859671520864,-0.07451133390003126,-0.07423611740519705,-0.07396292468034087,-0.07369173350492719,-0.07342252198224719,-0.07315526853354644,-0.07288995189227947,-0.07262655109848881,-0.07236504549330461,-0.07210541471356222,-0.07184763868653482,-0.07159169762477803,-0.0713375720210839,-0.07108524264354162,-0.07083469053070202,-0.07058589698684384,-0.0703388435773388,-0.07009351212411324,-0.0698498847012042,-0.0696079436304073,-0.06936767147701454,-0.0691290510456396,-0.06889206537612866,-0.06865669773955489,-0.06842293163429422,-0.06819075078218083,-0.06796013912474037,-0.06773108081949887,-0.06750356023636608,-0.06727756195409082,-0.0670530707567874,-0.06683007163053074,-0.0666085497600192,-0.06638849052530324,-0.06616987949857848,-0.06595270244104161,-0.06573694529980796,-0.06552259420488896,-0.06530963546622849,-0.06509805557079655,-0.06488784117973906,-0.06467897912558251,-0.06447145640949227,-0.06426526019858322,-0.06406037782328189,-0.06385679677473835,-0.06365450470228749,-0.06345348941095806,-0.06325373885902857,-0.06305524115562922,-0.0628579845583885,-0.06266195747112376,-0.06246714844157484,-0.062273546159179474,-0.06208113945289,-0.06188991728903014,-0.061699868769191264,-0.06151098312816712,-0.06132324973192626,-0.06113665807562135,-0.06095119778163467,-0.060766858597658874,-0.06058363039481244,-0.06040150316578901,-0.060220467023039834,-0.06004051219698878,-0.05986162903427913,-0.05968380799605154,-0.05950703965625245,-0.05933131469997254,-0.05915662392181417,-0.05898295822428787,-0.058810308616236505,-0.058638666211287306,-0.05846802222633063,-0.05829836798002517,-0.05812969489132918,-0.05796199447805683,-0.05779525835545957,-0.05762947823483178,-0.05746464592214034,-0.057300753316677444,-0.057137792409736564,-0.056975755283310635,-0.05681463410881247,-0.05665442114581667,-0.05649510874082263,-0.05633668932603854,-0.0561791554181855,-0.05602249961732166,-0.055866714605685965,-0.055711793146561085,-0.055557728083155115,-0.05540451233750176,-0.05525213890937866,-0.05510060087524337,-0.05494989138718687,-0.05480000367190407,-0.054650931029681146,-0.0545026668333993,-0.05435520452755455,-0.05420853762729355,-0.05406265971746478,-0.053917564451684996,-0.05377324555142073,-0.05362969680508438,-0.05348691206714467,-0.05334488525725141,-0.05320361035937394,-0.053063081420953354,-0.05292329255206797,-0.052784237924611954,-0.052645911771486975,-0.05250830838580623,-0.052371422120111144,-0.05223524738560015,-0.05209977865136942,-0.05196501044366543,-0.051830937345149014,-0.05169755399417077,-0.05156485508405757,-0.051432835362410154,-0.051301489630411166,-0.05117081274214409,-0.0510407996039223,-0.05091144517362835,-0.050782744460063325,-0.05065469252230599,-0.050527284469081495,-0.050400515458139734,-0.05027438069564286,-0.05014887543556204,-0.05002399497908319,-0.04989973467402152,-0.049776089914244835,-0.04965305613910528,-0.0495306288328795,-0.04940880352421715,-0.04928757578559736,-0.04916694123279316,-0.04904689552434397,-0.04892743436103544,-0.04880855348538717,-0.04869024868114764,-0.04857251577279654,-0.0484553506250544,-0.048338749142399016,-0.048222707268589106,-0.04810722098619463,-0.04799228631613393,-0.047877899317217296,-0.04776405608569734,-0.047650752754825436,-0.04753798549441466,-0.04742575051040881,-0.047314044044457534,-0.04720286237349746,-0.047092201809339165,-0.046982058698259936,-0.04687242942060225,-0.04676331039037784,-0.04665469805487724,-0.04654658889428483,-0.04643897942129908,-0.046331866180758144,-0.04622524574927064,-0.04611911473485133,-0.04601346977656205,-0.04590830754415737,-0.0458036247377351,-0.04569941808739169,-0.04559568435288221,-0.0454924203232849,-0.045389622816670416,-0.04528728867977544,-0.045185414787680594,-0.045083998043492945,-0.044983035378032485,-0.044882523749523014,-0.04478246014328702,-0.04468284157144473,-0.04458366507261706,-0.0444849277116326,-0.04438662657923837,-0.044288758791814514,-0.044191321491092714,-0.0440943118438782,-0.043997727041775604,-0.04390156430091822,-0.043805820861700935,-0.043710493988516556,-0.04361558096949559,-0.043521079116249424,-0.04342698576361683,-0.043333298269413685,-0.043240014014186014,-0.04314713040096614,-0.04305464485503196,-0.04296255482366939,-0.04287085777593776,-0.0427795512024382,-0.042688632615085084,-0.04259809954688024,-0.04250794955169009,-0.04241818020402564,-0.042328789098825155,-0.042239773851239705,-0.04215113209642125,-0.04206286148931349,-0.04197495970444538,-0.04188742443572703,-0.04180025339624834,-0.04171344431808012,-0.041626994952077515,-0.04154090306768608,-0.04145516645275013,-0.041369782913323445,-0.04128475027348241,-0.04120006637514133,-0.04111572907787006,-0.04103173625871392,-0.04094808581201573,-0.040864775649240015,-0.040781803698799475,-0.04069916790588333,-0.040616866232288,-0.04053489665624967,-0.04045325717227888,-0.040371945790997184,-0.04029096053897578,-0.040210299458575904,-0.040129960607791414,-0.04004994206009294,-0.039970241904274215,-0.03989085824429997,-0.03981178919915571,-0.039733032902699444,-0.03965458750351486,-0.03957645116476652,-0.039498622064056556,-0.039421098393283206,-0.039343878358500874,-0.03926696017978194,-0.039190342091080126,-0.039114022340095464,-0.039037999188140854,-0.03896227091001016,-0.038886835793847836,-0.03881169214102007,-0.03873683826598741,-0.038662272496178846,-0.03858799317186741,-0.038513998646047064,-0.03844028728431117,-0.03836685746473225,-0.03829370757774309,-0.03822083602601933,-0.03814824122436322,-0.038075921599588884,-0.03800387559040871,-0.03793210164732113,-0.03786059823249965,-0.03778936381968312,-0.03771839689406721,-0.03764769595219719,-0.037577259501861825,-0.03750708606198846,-0.0374371741625394,-0.03736752234440926,-0.03729812915932359,-0.03722899316973859,-0.03716011294874194,-0.0370914870799547,-0.03702311415743431,-0.03695499278557869,-0.036887121579031366,-0.03681949916258765,-0.036752124171101776,-0.03668499524939523,-0.036618111052165864,-0.0365514702438982,-0.03648507149877452,-0.0364189135005871,-0.03635299494265127,-0.03628731452771952,-0.036221870967896384,-0.03615666298455438,-0.036091689308250886,-0.03602694867864569,-0.03596243984441966,-0.03589816156319416,-0.035834112601451425,-0.03577029173445561,-0.035706697746174874],"x":[-3.0,-3.049800796812749,-3.099601593625498,-3.149402390438247,-3.199203187250996,-3.249003984063745,-3.298804780876494,-3.348605577689243,-3.398406374501992,-3.448207171314741,-3.49800796812749,-3.547808764940239,-3.597609561752988,-3.647410358565737,-3.697211155378486,-3.747011952191235,-3.7968127490039842,-3.846613545816733,-3.896414342629482,-3.946215139442231,-3.99601593625498,-4.0458167330677295,-4.095617529880478,-4.145418326693227,-4.195219123505976,-4.245019920318725,-4.294820717131474,-4.344621513944223,-4.394422310756972,-4.444223107569721,-4.49402390438247,-4.543824701195219,-4.5936254980079685,-4.643426294820717,-4.693227091633466,-4.743027888446215,-4.792828685258964,-4.842629482071713,-4.892430278884462,-4.942231075697211,-4.99203187250996,-5.04183266932271,-5.091633466135458,-5.1414342629482075,-5.191235059760956,-5.241035856573705,-5.290836653386454,-5.340637450199203,-5.390438247011952,-5.440239043824701,-5.49003984063745,-5.539840637450199,-5.589641434262949,-5.639442231075697,-5.6892430278884465,-5.739043824701195,-5.788844621513944,-5.838645418326693,-5.888446215139442,-5.938247011952191,-5.98804780876494,-6.03784860557769,-6.087649402390438,-6.137450199203188,-6.187250996015936,-6.2370517928286855,-6.286852589641434,-6.336653386454183,-6.386454183266932,-6.436254980079681,-6.48605577689243,-6.535856573705179,-6.585657370517929,-6.635458167330677,-6.685258964143427,-6.735059760956175,-6.7848605577689245,-6.834661354581673,-6.884462151394422,-6.934262948207171,-6.98406374501992,-7.03386454183267,-7.083665338645418,-7.133466135458168,-7.183266932270916,-7.233067729083666,-7.282868525896414,-7.3326693227091635,-7.382470119521912,-7.432270916334661,-7.48207171314741,-7.531872509960159,-7.581673306772909,-7.631474103585657,-7.681274900398407,-7.731075697211155,-7.780876494023905,-7.830677290836653,-7.8804780876494025,-7.930278884462151,-7.9800796812749,-8.02988047808765,-8.079681274900398,-8.129482071713147,-8.179282868525897,-8.229083665338646,-8.278884462151394,-8.328685258964143,-8.378486055776893,-8.428286852589641,-8.47808764940239,-8.52788844621514,-8.577689243027889,-8.627490039840637,-8.677290836653386,-8.727091633466136,-8.776892430278885,-8.826693227091633,-8.876494023904382,-8.926294820717132,-8.97609561752988,-9.025896414342629,-9.07569721115538,-9.125498007968128,-9.175298804780876,-9.225099601593625,-9.274900398406375,-9.324701195219124,-9.374501992031872,-9.42430278884462,-9.474103585657371,-9.52390438247012,-9.573705179282868,-9.623505976095618,-9.673306772908367,-9.723107569721115,-9.772908366533864,-9.822709163346614,-9.872509960159363,-9.922310756972111,-9.97211155378486,-10.02191235059761,-10.071713147410359,-10.121513944223107,-10.171314741035857,-10.221115537848606,-10.270916334661354,-10.320717131474103,-10.370517928286853,-10.420318725099602,-10.47011952191235,-10.5199203187251,-10.569721115537849,-10.619521912350598,-10.669322709163346,-10.719123505976096,-10.768924302788845,-10.818725099601593,-10.868525896414342,-10.918326693227092,-10.96812749003984,-11.01792828685259,-11.06772908366534,-11.117529880478088,-11.167330677290837,-11.217131474103585,-11.266932270916335,-11.316733067729084,-11.366533864541832,-11.41633466135458,-11.466135458167331,-11.51593625498008,-11.565737051792828,-11.615537848605578,-11.665338645418327,-11.715139442231076,-11.764940239043824,-11.814741035856574,-11.864541832669323,-11.914342629482071,-11.96414342629482,-12.01394422310757,-12.063745019920319,-12.113545816733067,-12.163346613545817,-12.213147410358566,-12.262948207171315,-12.312749003984063,-12.362549800796813,-12.412350597609562,-12.46215139442231,-12.51195219123506,-12.56175298804781,-12.611553784860558,-12.661354581673306,-12.711155378486056,-12.760956175298805,-12.810756972111554,-12.860557768924302,-12.910358565737052,-12.9601593625498,-13.00996015936255,-13.0597609561753,-13.109561752988048,-13.159362549800797,-13.209163346613545,-13.258964143426295,-13.308764940239044,-13.358565737051793,-13.408366533864541,-13.458167330677291,-13.50796812749004,-13.557768924302788,-13.607569721115539,-13.657370517928287,-13.707171314741036,-13.756972111553784,-13.806772908366534,-13.856573705179283,-13.906374501992032,-13.95617529880478,-14.00597609561753,-14.055776892430279,-14.105577689243027,-14.155378486055778,-14.205179282868526,-14.254980079681275,-14.304780876494023,-14.354581673306773,-14.404382470119522,-14.45418326693227,-14.50398406374502,-14.55378486055777,-14.603585657370518,-14.653386454183266,-14.703187250996017,-14.752988047808765,-14.802788844621514,-14.852589641434262,-14.902390438247012,-14.952191235059761,-15.00199203187251,-15.05179282868526,-15.101593625498008,-15.151394422310757,-15.201195219123505,-15.250996015936256,-15.300796812749004,-15.350597609561753,-15.400398406374501,-15.450199203187251,-15.5,-15.549800796812749,-15.599601593625499,-15.649402390438247,-15.699203187250996,-15.749003984063744,-15.798804780876495,-15.848605577689243,-15.898406374501992,-15.94820717131474,-15.99800796812749,-16.04780876494024,-16.09760956175299,-16.147410358565736,-16.197211155378486,-16.247011952191237,-16.296812749003983,-16.346613545816734,-16.39641434262948,-16.44621513944223,-16.49601593625498,-16.545816733067728,-16.595617529880478,-16.64541832669323,-16.695219123505975,-16.745019920318725,-16.794820717131476,-16.844621513944222,-16.894422310756973,-16.94422310756972,-16.99402390438247,-17.04382470119522,-17.093625498007967,-17.143426294820717,-17.193227091633467,-17.243027888446214,-17.292828685258964,-17.342629482071715,-17.39243027888446,-17.44223107569721,-17.49203187250996,-17.54183266932271,-17.59163346613546,-17.641434262948206,-17.691235059760956,-17.741035856573706,-17.790836653386453,-17.840637450199203,-17.890438247011954,-17.9402390438247,-17.99003984063745,-18.0398406374502,-18.089641434262948,-18.139442231075698,-18.189243027888445,-18.239043824701195,-18.288844621513945,-18.338645418326692,-18.388446215139442,-18.438247011952193,-18.48804780876494,-18.53784860557769,-18.58764940239044,-18.637450199203187,-18.687250996015937,-18.737051792828684,-18.786852589641434,-18.836653386454184,-18.88645418326693,-18.93625498007968,-18.98605577689243,-19.03585657370518,-19.08565737051793,-19.13545816733068,-19.185258964143426,-19.235059760956176,-19.284860557768923,-19.334661354581673,-19.384462151394423,-19.43426294820717,-19.48406374501992,-19.53386454183267,-19.583665338645417,-19.633466135458168,-19.683266932270918,-19.733067729083665,-19.782868525896415,-19.83266932270916,-19.882470119521912,-19.932270916334662,-19.98207171314741,-20.03187250996016,-20.08167330677291,-20.131474103585656,-20.181274900398407,-20.231075697211157,-20.280876494023904,-20.330677290836654,-20.3804780876494,-20.43027888446215,-20.4800796812749,-20.529880478087648,-20.5796812749004,-20.62948207171315,-20.679282868525895,-20.729083665338646,-20.778884462151396,-20.828685258964143,-20.878486055776893,-20.92828685258964,-20.97808764940239,-21.02788844621514,-21.077689243027887,-21.127490039840637,-21.177290836653388,-21.227091633466134,-21.276892430278885,-21.326693227091635,-21.37649402390438,-21.426294820717132,-21.47609561752988,-21.52589641434263,-21.57569721115538,-21.625498007968126,-21.675298804780876,-21.725099601593627,-21.774900398406373,-21.824701195219124,-21.874501992031874,-21.92430278884462,-21.97410358565737,-22.02390438247012,-22.073705179282868,-22.12350597609562,-22.173306772908365,-22.223107569721115,-22.272908366533866,-22.322709163346612,-22.372509960159363,-22.422310756972113,-22.47211155378486,-22.52191235059761,-22.57171314741036,-22.621513944223107,-22.671314741035857,-22.721115537848604,-22.770916334661354,-22.820717131474105,-22.87051792828685,-22.9203187250996,-22.970119521912352,-23.0199203187251,-23.06972111553785,-23.1195219123506,-23.169322709163346,-23.219123505976096,-23.268924302788843,-23.318725099601593,-23.368525896414344,-23.41832669322709,-23.46812749003984,-23.51792828685259,-23.567729083665338,-23.617529880478088,-23.66733067729084,-23.717131474103585,-23.766932270916335,-23.816733067729082,-23.866533864541832,-23.916334661354583,-23.96613545816733,-24.01593625498008,-24.06573705179283,-24.115537848605577,-24.165338645418327,-24.215139442231077,-24.264940239043824,-24.314741035856574,-24.36454183266932,-24.41434262948207,-24.46414342629482,-24.51394422310757,-24.56374501992032,-24.61354581673307,-24.663346613545816,-24.713147410358566,-24.762948207171316,-24.812749003984063,-24.862549800796813,-24.91235059760956,-24.96215139442231,-25.01195219123506,-25.061752988047807,-25.111553784860558,-25.161354581673308,-25.211155378486055,-25.260956175298805,-25.310756972111555,-25.360557768924302,-25.410358565737052,-25.4601593625498,-25.50996015936255,-25.5597609561753,-25.609561752988046,-25.659362549800797,-25.709163346613547,-25.758964143426294,-25.808764940239044,-25.858565737051794,-25.90836653386454,-25.95816733067729,-26.00796812749004,-26.05776892430279,-26.10756972111554,-26.157370517928285,-26.207171314741036,-26.256972111553786,-26.306772908366533,-26.356573705179283,-26.406374501992033,-26.45617529880478,-26.50597609561753,-26.55577689243028,-26.605577689243027,-26.655378486055778,-26.705179282868524,-26.754980079681275,-26.804780876494025,-26.85458167330677,-26.904382470119522,-26.954183266932272,-27.00398406374502,-27.05378486055777,-27.10358565737052,-27.153386454183266,-27.203187250996017,-27.252988047808763,-27.302788844621514,-27.352589641434264,-27.40239043824701,-27.45219123505976,-27.50199203187251,-27.551792828685258,-27.60159362549801,-27.65139442231076,-27.701195219123505,-27.750996015936256,-27.800796812749002,-27.850597609561753,-27.900398406374503,-27.95019920318725,-28.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json new file mode 100644 index 000000000000..dcb11fa80b1a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"expected":[0.32745015023725843,0.32228220501757976,0.317272386683515,0.3124136500429473,0.30769935672565835,0.3031232466029938,0.2986794115555974,0.29436227136958615,0.2901665515644846,0.28608726297654286,0.2821196829390524,0.2782593379172548,0.2745019874696298,0.27084360941999,0.2672803861360766,0.26380869182040123,0.2604250807280673,0.2571262762343455,0.2539091606819807,0.2507707659446741,0.2477082646489839,0.2447189620021126,0.2418002881777449,0.23894979121633422,0.23616513040005896,0.233444070066118,0.2307844738251565,0.2281842991544351,0.22564159233791684,0.2231544837277625,0.22072118330383614,0.2183399765097308,0.216009220345571,0.21372733969942823,0.21149282390063295,0.20930422347958236,0.2071601471198436,0.2050592587894541,0.20300027503931994,0.20098196245753583,0.1990031352692899,0.19706265307278792,0.19515941870233972,0.19329237621039916,0.19146050896094657,0.18966283782715046,0.18789841948675062,0.1861663448090685,0.1844657373279805,0.18279575179558286,0.18115557281164252,0.17954441352426334,0.1779615143975094,0.17640614204201288,0.1748775881048603,0.17337516821529744,0.17189822098302027,0.17044610704603122,0.16901820816523483,0.16761392636313044,0.16623268310412634,0.16487391851415778,0.1635370906374371,0.16222167472829832,0.16092716257622758,0.15965306186228406,0.15839889554523037,0.15716420127578884,0.15594853083753865,0.15475144961305537,0.1535725360739786,0.1524113812937703,0.15126758848199823,0.15014077253904828,0.14903055963022988,0.1479365867783013,0.14685850147349372,0.1457959613001678,0.1447486335792827,0.1437161950259048,0.1426983314210256,0.14169473729699794,0.1407051156359385,0.13972917758047806,0.13876664215627746,0.13781723600575385,0.13688069313249654,0.13595675465587448,0.13504516857536697,0.1341456895441721,0.13325807865167058,0.13238210321434454,0.13151753657477194,0.13066415790833558,0.1298217520373042,0.12899010925196158,0.12816902513847303,0.12735830041319784,0.1265577407631667,0.12576715669246008,0.12498636337423422,0.1242151805081555,0.12345343218301351,0.12270094674429595,0.12195755666651785,0.1212230984301074,0.12049741240266042,0.11978034272438426,0.11907173719755963,0.11837144717985787,0.11767932748135736,0.11699523626511117,0.11631903495112404,0.11565058812360322,0.11498976344135406,0.11433643155119712,0.11369046600428852,0.11305174317523091,0.1124201421838675,0.11179554481965587,0.11117783546852315,0.11056690104210817,0.1099626309093005,0.1093649168299901,0.10877365289094452,0.10818873544373496,0.10761006304463518,0.1070375363964206,0.10647105829199799,0.10591053355979911,0.10535586901087435,0.10480697338762507,0.10426375731411565,0.10372613324790905,0.10319401543337196,0.10266731985639682,0.1021459642004918,0.10162986780419023,0.10111895161973389,0.10061313817298566,0.10011235152452942,0.09961651723191638,0.09912556231301861,0.09863941521045212,0.09815800575703339,0.09768126514223459,0.09720912587960374,0.09674152177511809,0.09627838789643918,0.09581966054304042,0.09536527721717779,0.0949151765956766,0.09446929850250768,0.09402758388212691,0.09358997477355396,0.09315641428516636,0.09272684657018579,0.09230121680283478,0.09187947115514235,0.09146155677437846,0.091047421761097,0.09063701514776869,0.09023028687798529,0.08982718778621761,0.08942766957810985,0.08903168481129424,0.08863918687670962,0.08825012998040899,0.08786446912584081,0.08748216009659004,0.08710315943956486,0.08672742444861593,0.08635491314857514,0.08598558427970121,0.08561939728252065,0.08525631228305183,0.0848962900784012,0.0845392921227208,0.08418528051351655,0.08383421797829697,0.0834860678615527,0.08314079411205731,0.08279836127047999,0.08245873445730147,0.08212187936102444,0.0817877622266702,0.08145634984455333,0.08112760953932671,0.08080150915928938,0.08047801706594986,0.08015710212383755,0.07983873369055605,0.07952288160707115,0.07920951618822702,0.078898608213485,0.07859012891787814,0.0782840499831764,0.07798034352925604,0.07767898210566845,0.07737993868340264,0.07708318664683629,0.07678869978587041,0.0764964522882428,0.07620641873201538,0.07591857407823109,0.07563289366373571,0.07534935319416045,0.07506792873706089,0.07478859671520864,0.07451133390003126,0.07423611740519705,0.07396292468034087,0.07369173350492719,0.07342252198224719,0.07315526853354644,0.07288995189227947,0.07262655109848881,0.07236504549330461,0.07210541471356222,0.07184763868653482,0.07159169762477803,0.0713375720210839,0.07108524264354162,0.07083469053070202,0.07058589698684384,0.0703388435773388,0.07009351212411324,0.0698498847012042,0.0696079436304073,0.06936767147701454,0.0691290510456396,0.06889206537612866,0.06865669773955489,0.06842293163429422,0.06819075078218083,0.06796013912474037,0.06773108081949887,0.06750356023636608,0.06727756195409082,0.0670530707567874,0.06683007163053074,0.0666085497600192,0.06638849052530324,0.06616987949857848,0.06595270244104161,0.06573694529980796,0.06552259420488896,0.06530963546622849,0.06509805557079655,0.06488784117973906,0.06467897912558251,0.06447145640949227,0.06426526019858322,0.06406037782328189,0.06385679677473835,0.06365450470228749,0.06345348941095806,0.06325373885902857,0.06305524115562922,0.0628579845583885,0.06266195747112376,0.06246714844157484,0.062273546159179474,0.06208113945289,0.06188991728903014,0.061699868769191264,0.06151098312816712,0.06132324973192626,0.06113665807562135,0.06095119778163467,0.060766858597658874,0.06058363039481244,0.06040150316578901,0.060220467023039834,0.06004051219698878,0.05986162903427913,0.05968380799605154,0.05950703965625245,0.05933131469997254,0.05915662392181417,0.05898295822428787,0.058810308616236505,0.058638666211287306,0.05846802222633063,0.05829836798002517,0.05812969489132918,0.05796199447805683,0.05779525835545957,0.05762947823483178,0.05746464592214034,0.057300753316677444,0.057137792409736564,0.056975755283310635,0.05681463410881247,0.05665442114581667,0.05649510874082263,0.05633668932603854,0.0561791554181855,0.05602249961732166,0.055866714605685965,0.055711793146561085,0.055557728083155115,0.05540451233750176,0.05525213890937866,0.05510060087524337,0.05494989138718687,0.05480000367190407,0.054650931029681146,0.0545026668333993,0.05435520452755455,0.05420853762729355,0.05406265971746478,0.053917564451684996,0.05377324555142073,0.05362969680508438,0.05348691206714467,0.05334488525725141,0.05320361035937394,0.053063081420953354,0.05292329255206797,0.052784237924611954,0.052645911771486975,0.05250830838580623,0.052371422120111144,0.05223524738560015,0.05209977865136942,0.05196501044366543,0.051830937345149014,0.05169755399417077,0.05156485508405757,0.051432835362410154,0.051301489630411166,0.05117081274214409,0.0510407996039223,0.05091144517362835,0.050782744460063325,0.05065469252230599,0.050527284469081495,0.050400515458139734,0.05027438069564286,0.05014887543556204,0.05002399497908319,0.04989973467402152,0.049776089914244835,0.04965305613910528,0.0495306288328795,0.04940880352421715,0.04928757578559736,0.04916694123279316,0.04904689552434397,0.04892743436103544,0.04880855348538717,0.04869024868114764,0.04857251577279654,0.0484553506250544,0.048338749142399016,0.048222707268589106,0.04810722098619463,0.04799228631613393,0.047877899317217296,0.04776405608569734,0.047650752754825436,0.04753798549441466,0.04742575051040881,0.047314044044457534,0.04720286237349746,0.047092201809339165,0.046982058698259936,0.04687242942060225,0.04676331039037784,0.04665469805487724,0.04654658889428483,0.04643897942129908,0.046331866180758144,0.04622524574927064,0.04611911473485133,0.04601346977656205,0.04590830754415737,0.0458036247377351,0.04569941808739169,0.04559568435288221,0.0454924203232849,0.045389622816670416,0.04528728867977544,0.045185414787680594,0.045083998043492945,0.044983035378032485,0.044882523749523014,0.04478246014328702,0.04468284157144473,0.04458366507261706,0.0444849277116326,0.04438662657923837,0.044288758791814514,0.044191321491092714,0.0440943118438782,0.043997727041775604,0.04390156430091822,0.043805820861700935,0.043710493988516556,0.04361558096949559,0.043521079116249424,0.04342698576361683,0.043333298269413685,0.043240014014186014,0.04314713040096614,0.04305464485503196,0.04296255482366939,0.04287085777593776,0.0427795512024382,0.042688632615085084,0.04259809954688024,0.04250794955169009,0.04241818020402564,0.042328789098825155,0.042239773851239705,0.04215113209642125,0.04206286148931349,0.04197495970444538,0.04188742443572703,0.04180025339624834,0.04171344431808012,0.041626994952077515,0.04154090306768608,0.04145516645275013,0.041369782913323445,0.04128475027348241,0.04120006637514133,0.04111572907787006,0.04103173625871392,0.04094808581201573,0.040864775649240015,0.040781803698799475,0.04069916790588333,0.040616866232288,0.04053489665624967,0.04045325717227888,0.040371945790997184,0.04029096053897578,0.040210299458575904,0.040129960607791414,0.04004994206009294,0.039970241904274215,0.03989085824429997,0.03981178919915571,0.039733032902699444,0.03965458750351486,0.03957645116476652,0.039498622064056556,0.039421098393283206,0.039343878358500874,0.03926696017978194,0.039190342091080126,0.039114022340095464,0.039037999188140854,0.03896227091001016,0.038886835793847836,0.03881169214102007,0.03873683826598741,0.038662272496178846,0.03858799317186741,0.038513998646047064,0.03844028728431117,0.03836685746473225,0.03829370757774309,0.03822083602601933,0.03814824122436322,0.038075921599588884,0.03800387559040871,0.03793210164732113,0.03786059823249965,0.03778936381968312,0.03771839689406721,0.03764769595219719,0.037577259501861825,0.03750708606198846,0.0374371741625394,0.03736752234440926,0.03729812915932359,0.03722899316973859,0.03716011294874194,0.0370914870799547,0.03702311415743431,0.03695499278557869,0.036887121579031366,0.03681949916258765,0.036752124171101776,0.03668499524939523,0.036618111052165864,0.0365514702438982,0.03648507149877452,0.0364189135005871,0.03635299494265127,0.03628731452771952,0.036221870967896384,0.03615666298455438,0.036091689308250886,0.03602694867864569,0.03596243984441966,0.03589816156319416,0.035834112601451425,0.03577029173445561,0.035706697746174874],"x":[3.0,3.049800796812749,3.099601593625498,3.149402390438247,3.199203187250996,3.249003984063745,3.298804780876494,3.348605577689243,3.398406374501992,3.448207171314741,3.49800796812749,3.547808764940239,3.597609561752988,3.647410358565737,3.697211155378486,3.747011952191235,3.7968127490039842,3.846613545816733,3.896414342629482,3.946215139442231,3.99601593625498,4.0458167330677295,4.095617529880478,4.145418326693227,4.195219123505976,4.245019920318725,4.294820717131474,4.344621513944223,4.394422310756972,4.444223107569721,4.49402390438247,4.543824701195219,4.5936254980079685,4.643426294820717,4.693227091633466,4.743027888446215,4.792828685258964,4.842629482071713,4.892430278884462,4.942231075697211,4.99203187250996,5.04183266932271,5.091633466135458,5.1414342629482075,5.191235059760956,5.241035856573705,5.290836653386454,5.340637450199203,5.390438247011952,5.440239043824701,5.49003984063745,5.539840637450199,5.589641434262949,5.639442231075697,5.6892430278884465,5.739043824701195,5.788844621513944,5.838645418326693,5.888446215139442,5.938247011952191,5.98804780876494,6.03784860557769,6.087649402390438,6.137450199203188,6.187250996015936,6.2370517928286855,6.286852589641434,6.336653386454183,6.386454183266932,6.436254980079681,6.48605577689243,6.535856573705179,6.585657370517929,6.635458167330677,6.685258964143427,6.735059760956175,6.7848605577689245,6.834661354581673,6.884462151394422,6.934262948207171,6.98406374501992,7.03386454183267,7.083665338645418,7.133466135458168,7.183266932270916,7.233067729083666,7.282868525896414,7.3326693227091635,7.382470119521912,7.432270916334661,7.48207171314741,7.531872509960159,7.581673306772909,7.631474103585657,7.681274900398407,7.731075697211155,7.780876494023905,7.830677290836653,7.8804780876494025,7.930278884462151,7.9800796812749,8.02988047808765,8.079681274900398,8.129482071713147,8.179282868525897,8.229083665338646,8.278884462151394,8.328685258964143,8.378486055776893,8.428286852589641,8.47808764940239,8.52788844621514,8.577689243027889,8.627490039840637,8.677290836653386,8.727091633466136,8.776892430278885,8.826693227091633,8.876494023904382,8.926294820717132,8.97609561752988,9.025896414342629,9.07569721115538,9.125498007968128,9.175298804780876,9.225099601593625,9.274900398406375,9.324701195219124,9.374501992031872,9.42430278884462,9.474103585657371,9.52390438247012,9.573705179282868,9.623505976095618,9.673306772908367,9.723107569721115,9.772908366533864,9.822709163346614,9.872509960159363,9.922310756972111,9.97211155378486,10.02191235059761,10.071713147410359,10.121513944223107,10.171314741035857,10.221115537848606,10.270916334661354,10.320717131474103,10.370517928286853,10.420318725099602,10.47011952191235,10.5199203187251,10.569721115537849,10.619521912350598,10.669322709163346,10.719123505976096,10.768924302788845,10.818725099601593,10.868525896414342,10.918326693227092,10.96812749003984,11.01792828685259,11.06772908366534,11.117529880478088,11.167330677290837,11.217131474103585,11.266932270916335,11.316733067729084,11.366533864541832,11.41633466135458,11.466135458167331,11.51593625498008,11.565737051792828,11.615537848605578,11.665338645418327,11.715139442231076,11.764940239043824,11.814741035856574,11.864541832669323,11.914342629482071,11.96414342629482,12.01394422310757,12.063745019920319,12.113545816733067,12.163346613545817,12.213147410358566,12.262948207171315,12.312749003984063,12.362549800796813,12.412350597609562,12.46215139442231,12.51195219123506,12.56175298804781,12.611553784860558,12.661354581673306,12.711155378486056,12.760956175298805,12.810756972111554,12.860557768924302,12.910358565737052,12.9601593625498,13.00996015936255,13.0597609561753,13.109561752988048,13.159362549800797,13.209163346613545,13.258964143426295,13.308764940239044,13.358565737051793,13.408366533864541,13.458167330677291,13.50796812749004,13.557768924302788,13.607569721115539,13.657370517928287,13.707171314741036,13.756972111553784,13.806772908366534,13.856573705179283,13.906374501992032,13.95617529880478,14.00597609561753,14.055776892430279,14.105577689243027,14.155378486055778,14.205179282868526,14.254980079681275,14.304780876494023,14.354581673306773,14.404382470119522,14.45418326693227,14.50398406374502,14.55378486055777,14.603585657370518,14.653386454183266,14.703187250996017,14.752988047808765,14.802788844621514,14.852589641434262,14.902390438247012,14.952191235059761,15.00199203187251,15.05179282868526,15.101593625498008,15.151394422310757,15.201195219123505,15.250996015936256,15.300796812749004,15.350597609561753,15.400398406374501,15.450199203187251,15.5,15.549800796812749,15.599601593625499,15.649402390438247,15.699203187250996,15.749003984063744,15.798804780876495,15.848605577689243,15.898406374501992,15.94820717131474,15.99800796812749,16.04780876494024,16.09760956175299,16.147410358565736,16.197211155378486,16.247011952191237,16.296812749003983,16.346613545816734,16.39641434262948,16.44621513944223,16.49601593625498,16.545816733067728,16.595617529880478,16.64541832669323,16.695219123505975,16.745019920318725,16.794820717131476,16.844621513944222,16.894422310756973,16.94422310756972,16.99402390438247,17.04382470119522,17.093625498007967,17.143426294820717,17.193227091633467,17.243027888446214,17.292828685258964,17.342629482071715,17.39243027888446,17.44223107569721,17.49203187250996,17.54183266932271,17.59163346613546,17.641434262948206,17.691235059760956,17.741035856573706,17.790836653386453,17.840637450199203,17.890438247011954,17.9402390438247,17.99003984063745,18.0398406374502,18.089641434262948,18.139442231075698,18.189243027888445,18.239043824701195,18.288844621513945,18.338645418326692,18.388446215139442,18.438247011952193,18.48804780876494,18.53784860557769,18.58764940239044,18.637450199203187,18.687250996015937,18.737051792828684,18.786852589641434,18.836653386454184,18.88645418326693,18.93625498007968,18.98605577689243,19.03585657370518,19.08565737051793,19.13545816733068,19.185258964143426,19.235059760956176,19.284860557768923,19.334661354581673,19.384462151394423,19.43426294820717,19.48406374501992,19.53386454183267,19.583665338645417,19.633466135458168,19.683266932270918,19.733067729083665,19.782868525896415,19.83266932270916,19.882470119521912,19.932270916334662,19.98207171314741,20.03187250996016,20.08167330677291,20.131474103585656,20.181274900398407,20.231075697211157,20.280876494023904,20.330677290836654,20.3804780876494,20.43027888446215,20.4800796812749,20.529880478087648,20.5796812749004,20.62948207171315,20.679282868525895,20.729083665338646,20.778884462151396,20.828685258964143,20.878486055776893,20.92828685258964,20.97808764940239,21.02788844621514,21.077689243027887,21.127490039840637,21.177290836653388,21.227091633466134,21.276892430278885,21.326693227091635,21.37649402390438,21.426294820717132,21.47609561752988,21.52589641434263,21.57569721115538,21.625498007968126,21.675298804780876,21.725099601593627,21.774900398406373,21.824701195219124,21.874501992031874,21.92430278884462,21.97410358565737,22.02390438247012,22.073705179282868,22.12350597609562,22.173306772908365,22.223107569721115,22.272908366533866,22.322709163346612,22.372509960159363,22.422310756972113,22.47211155378486,22.52191235059761,22.57171314741036,22.621513944223107,22.671314741035857,22.721115537848604,22.770916334661354,22.820717131474105,22.87051792828685,22.9203187250996,22.970119521912352,23.0199203187251,23.06972111553785,23.1195219123506,23.169322709163346,23.219123505976096,23.268924302788843,23.318725099601593,23.368525896414344,23.41832669322709,23.46812749003984,23.51792828685259,23.567729083665338,23.617529880478088,23.66733067729084,23.717131474103585,23.766932270916335,23.816733067729082,23.866533864541832,23.916334661354583,23.96613545816733,24.01593625498008,24.06573705179283,24.115537848605577,24.165338645418327,24.215139442231077,24.264940239043824,24.314741035856574,24.36454183266932,24.41434262948207,24.46414342629482,24.51394422310757,24.56374501992032,24.61354581673307,24.663346613545816,24.713147410358566,24.762948207171316,24.812749003984063,24.862549800796813,24.91235059760956,24.96215139442231,25.01195219123506,25.061752988047807,25.111553784860558,25.161354581673308,25.211155378486055,25.260956175298805,25.310756972111555,25.360557768924302,25.410358565737052,25.4601593625498,25.50996015936255,25.5597609561753,25.609561752988046,25.659362549800797,25.709163346613547,25.758964143426294,25.808764940239044,25.858565737051794,25.90836653386454,25.95816733067729,26.00796812749004,26.05776892430279,26.10756972111554,26.157370517928285,26.207171314741036,26.256972111553786,26.306772908366533,26.356573705179283,26.406374501992033,26.45617529880478,26.50597609561753,26.55577689243028,26.605577689243027,26.655378486055778,26.705179282868524,26.754980079681275,26.804780876494025,26.85458167330677,26.904382470119522,26.954183266932272,27.00398406374502,27.05378486055777,27.10358565737052,27.153386454183266,27.203187250996017,27.252988047808763,27.302788844621514,27.352589641434264,27.40239043824701,27.45219123505976,27.50199203187251,27.551792828685258,27.60159362549801,27.65139442231076,27.701195219123505,27.750996015936256,27.800796812749002,27.850597609561753,27.900398406374503,27.95019920318725,28.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json new file mode 100644 index 000000000000..643fcc4c413e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json @@ -0,0 +1 @@ +{"expected":[-0.035706697746174874,-0.035524803739635645,-0.03534475313496004,-0.035166518056279794,-0.034990071186844614,-0.034815385755076776,-0.03464243552104107,-0.0344711947633156,-0.034301638266249615,-0.034133741307595264,-0.03396747964650042,-0.03380282951185036,-0.03363976759094665,-0.033478271018511675,-0.0333183173660082,-0.03315988463126334,-0.033002951228386805,-0.03284749597797397,-0.03269349809758416,-0.03254093719248531,-0.03238979324665639,-0.03224004661403908,-0.03209167801003094,-0.03194466850321208,-0.03179899950729802,-0.031654652773311594,-0.03151161038196683,-0.031369854736258286,-0.031229368554249366,-0.03109013486205331,-0.03095213698700103,-0.030815358550989984,-0.03067978346400832,-0.030545395917829336,-0.030412180379870556,-0.03028012158721286,-0.03014920454077452,-0.030019414499635733,-0.02989073697550886,-0.029763157727350303,-0.029636662756109582,-0.02951123829961174,-0.029386870827568943,-0.029263547036717706,-0.02914125384607786,-0.029019978392329924,-0.028899708025307228,-0.028780430303599697,-0.028662132990265887,-0.02854480404865035,-0.028428431638303168,-0.028313004110998876,-0.028198510006851887,-0.028084938050525754,-0.027972277147533545,-0.027860516380626966,-0.027749645006271507,-0.027639652451205476,-0.02753052830908044,-0.027422262337180852,-0.027314844453220848,-0.027208264732215826,-0.027102513403427096,-0.02699758084737732,-0.026893457592935092,-0.026790134314466595,-0.0266876018290527,-0.026585851093769607,-0.026484873203031507,-0.026384659385993468,-0.026285201004013065,-0.026186489548169156,-0.026088516636836354,-0.02599127401331365,-0.02589475354350592,-0.02579894721365682,-0.025703847128131816,-0.02560944550725001,-0.025515734685163625,-0.025422707107783722,-0.02533035533075123,-0.025238672017451943,-0.02514764993707445,-0.025057281962709958,-0.02496756106949287,-0.024878480332781183,-0.024790032926375626,-0.02470221212077672,-0.024615011281478652,-0.024528423867299178,-0.024442443428744624,-0.024357063606409164,-0.02427227812940746,-0.024188080813839954,-0.02410446556128996,-0.024021426357351817,-0.023938957270189302,-0.023857052449123707,-0.023775706123250674,-0.023694912600085338,-0.023614666264234894,-0.023534961576098086,-0.023455793070590904,-0.023377155355897926,-0.023299043112248664,-0.02322145109071835,-0.02314437411205262,-0.02306780706551548,-0.02299174490776006,-0.022916182661721667,-0.022841115415532527,-0.022766538321457818,-0.022692446594852447,-0.02261883551313815,-0.022545700414800387,-0.02247303669840466,-0.022400839821631782,-0.02232910530033165,-0.02225782870759517,-0.022187005672843835,-0.022116631880936707,-0.022046703071294253,-0.021977215037038787,-0.021908163624151097,-0.021839544730642917,-0.02177135430574489,-0.021703588349109723,-0.0216362429100301,-0.02156931408667118,-0.021502798025317262,-0.021436690919632316,-0.021370989009934144,-0.02130568858248185,-0.021240785968776255,-0.021176277544873168,-0.02111215973070901,-0.021048428989438754,-0.020985081826785733,-0.020922114790403207,-0.02085952446924734,-0.02079730749296144,-0.02073546053127113,-0.020673980293390314,-0.020612863527437693,-0.020552107019863517,-0.020491707594886527,-0.020431662113940742,-0.02037196747513197,-0.02031262061270379,-0.020253618496512856,-0.0201949581315133,-0.020136636557250107,-0.020078650847361143,-0.020020998109087904,-0.019963675482794537,-0.01990668014149517,-0.019850009290389256,-0.019793660166404926,-0.019737630037749976,-0.019681916203470543,-0.019626515993017193,-0.01957142676581833,-0.019516645910860737,-0.0194621708462772,-0.019407999018940955,-0.019354127904066917,-0.01930055500481952,-0.019247277851927067,-0.01919429400330243,-0.019141601043669985,-0.019089196584198716,-0.019037078262141287,-0.01898524374047902,-0.018933690707572656,-0.01888241687681881,-0.018831419986311944,-0.018780697798511846,-0.01873024809991646,-0.018680068700739936,-0.018630157434595885,-0.018580512158185684,-0.01853113075099173,-0.018482011114975598,-0.018433151174280973,-0.01838454887494127,-0.01833620218459189,-0.018288109092186984,-0.01824026760772067,-0.018192675761952604,-0.018145331606137842,-0.018098233211760927,-0.01805137867027405,-0.018004766092839342,-0.01795839361007507,-0.01791225937180581,-0.017866361546816412,-0.01782069832260977,-0.01777526790516829,-0.017730068518718948,-0.017685098405502014,-0.017640355825543207,-0.01759583905642933,-0.0175515463930873,-0.01750747614756648,-0.017463626648824313,-0.01741999624251514,-0.0173765832907822,-0.01733338617205271,-0.017290403280836007,-0.01724763302752468,-0.017205073838198644,-0.017162724154432107,-0.017120582433103392,-0.01707864714620755,-0.017036916780671672,-0.016995389838173003,-0.016954064834959592,-0.016912940301673653,-0.016872014783177416,-0.016831286838381535,-0.016790755040075985,-0.01675041797476335,-0.016710274242494563,-0.01667032245670696,-0.01663056124406468,-0.016590989244301312,-0.016551605110064833,-0.016512407506764658,-0.016473395112420988,-0.016434566617516154,-0.016395920724848165,-0.016357456149386242,-0.01631917161812843,-0.016281065869961163,-0.016243137655520854,-0.016205385737057303,-0.016167808888299166,-0.01613040589432112,-0.016093175551413,-0.016056116666950667,-0.01601922805926869,-0.015982508557534757,-0.015945957001625845,-0.01590957224200604,-0.01587335313960605,-0.015837298565704348,-0.015801407401809978,-0.015765678539546853,-0.01573011088053973,-0.015694703336301637,-0.015659454828122865,-0.01562436428696144,-0.015589430653335066,-0.015554652877214494,-0.01552002991791836,-0.01548556074400937,-0.015451244333191894,-0.015417079672210935,-0.015383065756752395,-0.015349201591344688,-0.015315486189261637,-0.015281918572426646,-0.015248497771318153,-0.015215222824876272,-0.01518209278041071,-0.01514910669350983,-0.01511626362795097,-0.01508356265561183,-0.015051002856383087,-0.015018583318082096,-0.014986303136367734,-0.014954161414656305,-0.014922157264038543,-0.014890289803197685,-0.01485855815832859,-0.014826961463057864,-0.014795498858365038,-0.014764169492504715,-0.01473297252092975,-0.014701907106215325,-0.014670972417984067,-0.01464016763283206,-0.014609491934255791,-0.014578944512580017,-0.014548524564886551,-0.014518231294943909,-0.014488063913137866,-0.014458021636402831,-0.014428103688154127,-0.014398309298221073,-0.014368637702780906,-0.014339088144293514,-0.014309659871436975,-0.014280352139043898,-0.01425116420803852,-0.014222095345374596,-0.014193144823974033,-0.014164311922666288,-0.014135595926128489,-0.014106996124826274,-0.014078511814955374,-0.014050142298383883,-0.014021886882595229,-0.013993744880631825,-0.013965715611039412,-0.013937798397812062,-0.013909992570337827,-0.013882297463345053,-0.013854712416849345,-0.013827236776101122,-0.013799869891533832,-0.013772611118712768,-0.013745459818284497,-0.013718415355926864,-0.013691477102299612,-0.013664644432995556,-0.01363791672849237,-0.013611293374104886,-0.013584773759937985,-0.01355835728084004,-0.013532043336356886,-0.013505831330686321,-0.013479720672633151,-0.013453710775564749,-0.013427801057367132,-0.013401990940401518,-0.013376279851461429,-0.01335066722173024,-0.013325152486739256,-0.01329973508632624,-0.01327441446459441,-0.013249190069871944,-0.013224061354671903,-0.013199027775652624,-0.013174088793578563,-0.013149243873281593,-0.013124492483622713,-0.01309983409745421,-0.013075268191582235,-0.01305079424672981,-0.013026411747500233,-0.013002120182340912,-0.01297791904350759,-0.012953807827028976,-0.012929786032671753,-0.012905853163905998,-0.012882008727870977,-0.012858252235341313,-0.01283458320069352,-0.012811001141872926,-0.012787505580360958,-0.012764096041142764,-0.012740772052675209,-0.012717533146855222,-0.012694378858988477,-0.012671308727758424,-0.012648322295195661,-0.01262541910664762,-0.012602598710748602,-0.01257986065939014,-0.012557204507691641,-0.012534629813971408,-0.012512136139717914,-0.012489723049561436,-0.012467390111245941,-0.012445136895601321,-0.012422962976515902,-0.012400867930909236,-0.012378851338705215,-0.012356912782805426,-0.012335051849062844,-0.01231326812625575,-0.012291561206061955,-0.012269930683033298,-0.0122483761545704,-0.012226897220897677,-0.012205493485038648,-0.012184164552791454,-0.012162910032704694,-0.012141729536053443,-0.012120622676815582,-0.01209958907164833,-0.012078628339865062,-0.012057740103412316,-0.012036923986847088,-0.012016179617314325,-0.011995506624524685,-0.01197490464073248,-0.011954373300713894,-0.011933912241745387,-0.011913521103582356,-0.011893199528437969,-0.011872947160962264,-0.011852763648221427,-0.011832648639677293,-0.011812601787167053,-0.011792622744883165,-0.011772711169353498,-0.011752866719421603,-0.011733089056227277,-0.011713377843187246,-0.011693732745976088,-0.011674153432507335,-0.011654639572914741,-0.011635190839533788,-0.011615806906883325,-0.011596487451647423,-0.011577232152657397,-0.011558040690874015,-0.01153891274936987,-0.01151984801331195,-0.011500846169944344,-0.011481906908571166,-0.011463029920539606,-0.01144421489922317,-0.011425461540005072,-0.01140676954026181,-0.011388138599346882,-0.01136956841857466,-0.011351058701204439,-0.011332609152424638,-0.01131421947933713,-0.011295889390941765,-0.011277618598121006,-0.011259406813624742,-0.01124125375205522,-0.011223159129852155,-0.011205122665277949,-0.011187144078403091,-0.011169223091091652,-0.011151359426986968,-0.011133552811497407,-0.011115802971782331,-0.011098109636738138,-0.011080472536984473,-0.011062891404850552,-0.011045365974361628,-0.011027895981225574,-0.0110104811628196,-0.010993121258177092,-0.010975816007974584,-0.010958565154518837,-0.01094136844173406,-0.010924225615149228,-0.01090713642188554,-0.01089010061064398,-0.010873117931693002,-0.010856188136856333,-0.010839310979500876,-0.010822486214524737,-0.010805713598345364,-0.010788992888887789,-0.01077232384557299,-0.010755706229306343,-0.010739139802466192,-0.010722624328892542,-0.010706159573875808,-0.010689745304145723,-0.010673381287860304,-0.010657067294594959,-0.010640803095331648,-0.010624588462448176,-0.010608423169707582,-0.010592306992247615,-0.010576239706570302,-0.010560221090531619,-0.010544250923331258,-0.010528328985502485,-0.010512455058902075,-0.010496628926700367,-0.01048085037337137,-0.010465119184683007,-0.010449435147687402,-0.010433798050711271,-0.01041820768334641,-0.010402663836440252,-0.010387166302086515,-0.010371714873615935,-0.010356309345587077,-0.010340949513777238,-0.010325635175173412,-0.010310366127963348,-0.010295142171526703,-0.01027996310642623,-0.010264828734399087,-0.010249738858348198,-0.010234693282333705,-0.010219691811564482,-0.010204734252389725,-0.01018982041229063,-0.010174950099872125,-0.010160123124854686,-0.01014533929806623,-0.010130598431434051,-0.010115900337976868,-0.010101244831796894,-0.01008663172807203,-0.010072060843048063,-0.010057531994030993,-0.010043044999379382,-0.010028599678496784,-0.010014195851824252,-0.009999833340832886],"x":[-28.0,-28.143426294820717,-28.286852589641434,-28.43027888446215,-28.573705179282868,-28.717131474103585,-28.860557768924302,-29.00398406374502,-29.147410358565736,-29.290836653386453,-29.43426294820717,-29.577689243027887,-29.721115537848604,-29.86454183266932,-30.00796812749004,-30.15139442231076,-30.294820717131476,-30.438247011952193,-30.58167330677291,-30.725099601593627,-30.868525896414344,-31.01195219123506,-31.155378486055778,-31.298804780876495,-31.44223107569721,-31.58565737051793,-31.729083665338646,-31.872509960159363,-32.01593625498008,-32.1593625498008,-32.30278884462152,-32.44621513944223,-32.58964143426295,-32.733067729083665,-32.876494023904385,-33.0199203187251,-33.16334661354582,-33.30677290836653,-33.45019920318725,-33.59362549800797,-33.73705179282869,-33.8804780876494,-34.02390438247012,-34.167330677290835,-34.310756972111555,-34.45418326693227,-34.59760956175299,-34.7410358565737,-34.88446215139442,-35.02788844621514,-35.17131474103586,-35.31474103585657,-35.45816733067729,-35.601593625498005,-35.745019920318725,-35.88844621513944,-36.03187250996016,-36.17529880478088,-36.31872509960159,-36.462151394422314,-36.60557768924303,-36.74900398406375,-36.89243027888446,-37.03585657370518,-37.179282868525895,-37.322709163346616,-37.46613545816733,-37.60956175298805,-37.75298804780876,-37.896414342629484,-38.0398406374502,-38.18326693227092,-38.32669322709163,-38.47011952191235,-38.613545816733065,-38.756972111553786,-38.9003984063745,-39.04382470119522,-39.18725099601593,-39.330677290836654,-39.47410358565737,-39.61752988047809,-39.7609561752988,-39.90438247011952,-40.04780876494024,-40.191235059760956,-40.33466135458168,-40.47808764940239,-40.62151394422311,-40.764940239043824,-40.908366533864545,-41.05179282868526,-41.19521912350598,-41.33864541832669,-41.48207171314741,-41.625498007968126,-41.76892430278885,-41.91235059760956,-42.05577689243028,-42.199203187250994,-42.342629482071715,-42.48605577689243,-42.62948207171315,-42.77290836653386,-42.91633466135458,-43.059760956175296,-43.20318725099602,-43.34661354581673,-43.49003984063745,-43.633466135458164,-43.776892430278885,-43.9203187250996,-44.06374501992032,-44.20717131474104,-44.35059760956175,-44.49402390438247,-44.63745019920319,-44.78087649402391,-44.92430278884462,-45.06772908366534,-45.211155378486055,-45.354581673306775,-45.49800796812749,-45.64143426294821,-45.78486055776892,-45.92828685258964,-46.07171314741036,-46.21513944223108,-46.35856573705179,-46.50199203187251,-46.645418326693225,-46.788844621513945,-46.93227091633466,-47.07569721115538,-47.21912350597609,-47.36254980079681,-47.50597609561753,-47.64940239043825,-47.79282868525896,-47.93625498007968,-48.0796812749004,-48.223107569721115,-48.366533864541836,-48.50996015936255,-48.65338645418327,-48.79681274900398,-48.940239043824704,-49.08366533864542,-49.22709163346614,-49.37051792828685,-49.51394422310757,-49.657370517928285,-49.800796812749006,-49.94422310756972,-50.08764940239044,-50.23107569721115,-50.374501992031874,-50.51792828685259,-50.66135458167331,-50.80478087649402,-50.94820717131474,-51.091633466135455,-51.235059760956176,-51.37848605577689,-51.52191235059761,-51.66533864541832,-51.808764940239044,-51.95219123505976,-52.09561752988048,-52.2390438247012,-52.38247011952191,-52.52589641434263,-52.669322709163346,-52.81274900398407,-52.95617529880478,-53.0996015936255,-53.243027888446214,-53.386454183266935,-53.52988047808765,-53.67330677290837,-53.81673306772908,-53.9601593625498,-54.103585657370516,-54.24701195219124,-54.39043824701195,-54.53386454183267,-54.677290836653384,-54.820717131474105,-54.96414342629482,-55.10756972111554,-55.25099601593625,-55.39442231075697,-55.537848605577686,-55.68127490039841,-55.82470119521912,-55.96812749003984,-56.11155378486056,-56.254980079681275,-56.398406374501995,-56.54183266932271,-56.68525896414343,-56.82868525896414,-56.97211155378486,-57.11553784860558,-57.2589641434263,-57.40239043824701,-57.54581673306773,-57.689243027888445,-57.832669322709165,-57.97609561752988,-58.1195219123506,-58.26294820717131,-58.40637450199203,-58.54980079681275,-58.69322709163347,-58.83665338645418,-58.9800796812749,-59.123505976095615,-59.266932270916335,-59.41035856573705,-59.55378486055777,-59.69721115537848,-59.8406374501992,-59.98406374501992,-60.12749003984064,-60.27091633466136,-60.41434262948207,-60.55776892430279,-60.701195219123505,-60.844621513944226,-60.98804780876494,-61.13147410358566,-61.27490039840637,-61.418326693227094,-61.56175298804781,-61.70517928286853,-61.84860557768924,-61.99203187250996,-62.135458167330675,-62.278884462151396,-62.42231075697211,-62.56573705179283,-62.70916334661354,-62.852589641434264,-62.99601593625498,-63.1394422310757,-63.28286852589641,-63.42629482071713,-63.569721115537845,-63.713147410358566,-63.85657370517928,-64.0,-64.14342629482071,-64.28685258964144,-64.43027888446215,-64.57370517928287,-64.71713147410358,-64.86055776892431,-65.00398406374502,-65.14741035856574,-65.29083665338645,-65.43426294820718,-65.57768924302789,-65.7211155378486,-65.86454183266932,-66.00796812749005,-66.15139442231076,-66.29482071713147,-66.43824701195219,-66.58167330677291,-66.72509960159363,-66.86852589641434,-67.01195219123505,-67.15537848605578,-67.2988047808765,-67.44223107569721,-67.58565737051792,-67.72908366533865,-67.87250996015936,-68.01593625498008,-68.1593625498008,-68.30278884462152,-68.44621513944223,-68.58964143426294,-68.73306772908367,-68.87649402390439,-69.0199203187251,-69.16334661354581,-69.30677290836654,-69.45019920318725,-69.59362549800797,-69.73705179282868,-69.88047808764941,-70.02390438247012,-70.16733067729083,-70.31075697211155,-70.45418326693228,-70.59760956175299,-70.7410358565737,-70.88446215139442,-71.02788844621514,-71.17131474103586,-71.31474103585657,-71.45816733067728,-71.60159362549801,-71.74501992031873,-71.88844621513944,-72.03187250996017,-72.17529880478088,-72.3187250996016,-72.4621513944223,-72.60557768924303,-72.74900398406375,-72.89243027888446,-73.03585657370517,-73.1792828685259,-73.32270916334662,-73.46613545816733,-73.60956175298804,-73.75298804780877,-73.89641434262948,-74.0398406374502,-74.18326693227091,-74.32669322709164,-74.47011952191235,-74.61354581673307,-74.75697211155378,-74.9003984063745,-75.04382470119522,-75.18725099601593,-75.33067729083665,-75.47410358565737,-75.61752988047809,-75.7609561752988,-75.90438247011951,-76.04780876494024,-76.19123505976096,-76.33466135458167,-76.4780876494024,-76.62151394422311,-76.76494023904382,-76.90836653386454,-77.05179282868527,-77.19521912350598,-77.33864541832669,-77.4820717131474,-77.62549800796813,-77.76892430278885,-77.91235059760956,-78.05577689243027,-78.199203187251,-78.34262948207171,-78.48605577689243,-78.62948207171314,-78.77290836653387,-78.91633466135458,-79.0597609561753,-79.20318725099601,-79.34661354581674,-79.49003984063745,-79.63346613545816,-79.77689243027888,-79.9203187250996,-80.06374501992032,-80.20717131474103,-80.35059760956176,-80.49402390438247,-80.63745019920319,-80.7808764940239,-80.92430278884463,-81.06772908366534,-81.21115537848605,-81.35458167330677,-81.4980079681275,-81.64143426294821,-81.78486055776892,-81.92828685258964,-82.07171314741036,-82.21513944223108,-82.35856573705179,-82.5019920318725,-82.64541832669323,-82.78884462151395,-82.93227091633466,-83.07569721115537,-83.2191235059761,-83.36254980079681,-83.50597609561753,-83.64940239043824,-83.79282868525897,-83.93625498007968,-84.0796812749004,-84.22310756972112,-84.36653386454184,-84.50996015936255,-84.65338645418326,-84.79681274900399,-84.9402390438247,-85.08366533864542,-85.22709163346613,-85.37051792828686,-85.51394422310757,-85.65737051792829,-85.800796812749,-85.94422310756973,-86.08764940239044,-86.23107569721115,-86.37450199203187,-86.5179282868526,-86.66135458167331,-86.80478087649402,-86.94820717131473,-87.09163346613546,-87.23505976095618,-87.37848605577689,-87.5219123505976,-87.66533864541833,-87.80876494023904,-87.95219123505976,-88.09561752988049,-88.2390438247012,-88.38247011952191,-88.52589641434263,-88.66932270916335,-88.81274900398407,-88.95617529880478,-89.0996015936255,-89.24302788844622,-89.38645418326693,-89.52988047808765,-89.67330677290836,-89.81673306772909,-89.9601593625498,-90.10358565737052,-90.24701195219123,-90.39043824701196,-90.53386454183267,-90.67729083665338,-90.8207171314741,-90.96414342629483,-91.10756972111554,-91.25099601593625,-91.39442231075697,-91.5378486055777,-91.6812749003984,-91.82470119521912,-91.96812749003983,-92.11155378486056,-92.25498007968127,-92.39840637450199,-92.54183266932272,-92.68525896414343,-92.82868525896414,-92.97211155378486,-93.11553784860558,-93.2589641434263,-93.40239043824701,-93.54581673306772,-93.68924302788845,-93.83266932270917,-93.97609561752988,-94.11952191235059,-94.26294820717132,-94.40637450199203,-94.54980079681275,-94.69322709163346,-94.83665338645419,-94.9800796812749,-95.12350597609561,-95.26693227091633,-95.41035856573706,-95.55378486055777,-95.69721115537848,-95.8406374501992,-95.98406374501992,-96.12749003984064,-96.27091633466135,-96.41434262948208,-96.55776892430279,-96.7011952191235,-96.84462151394422,-96.98804780876495,-97.13147410358566,-97.27490039840637,-97.41832669322709,-97.56175298804781,-97.70517928286853,-97.84860557768924,-97.99203187250995,-98.13545816733068,-98.2788844621514,-98.42231075697211,-98.56573705179282,-98.70916334661355,-98.85258964143426,-98.99601593625498,-99.13944223107569,-99.28286852589642,-99.42629482071713,-99.56972111553785,-99.71314741035856,-99.85657370517929,-100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json new file mode 100644 index 000000000000..a2581e9b32c3 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json @@ -0,0 +1 @@ +{"expected":[0.035706697746174874,0.035524803739635645,0.03534475313496004,0.035166518056279794,0.034990071186844614,0.034815385755076776,0.03464243552104107,0.0344711947633156,0.034301638266249615,0.034133741307595264,0.03396747964650042,0.03380282951185036,0.03363976759094665,0.033478271018511675,0.0333183173660082,0.03315988463126334,0.033002951228386805,0.03284749597797397,0.03269349809758416,0.03254093719248531,0.03238979324665639,0.03224004661403908,0.03209167801003094,0.03194466850321208,0.03179899950729802,0.031654652773311594,0.03151161038196683,0.031369854736258286,0.031229368554249366,0.03109013486205331,0.03095213698700103,0.030815358550989984,0.03067978346400832,0.030545395917829336,0.030412180379870556,0.03028012158721286,0.03014920454077452,0.030019414499635733,0.02989073697550886,0.029763157727350303,0.029636662756109582,0.02951123829961174,0.029386870827568943,0.029263547036717706,0.02914125384607786,0.029019978392329924,0.028899708025307228,0.028780430303599697,0.028662132990265887,0.02854480404865035,0.028428431638303168,0.028313004110998876,0.028198510006851887,0.028084938050525754,0.027972277147533545,0.027860516380626966,0.027749645006271507,0.027639652451205476,0.02753052830908044,0.027422262337180852,0.027314844453220848,0.027208264732215826,0.027102513403427096,0.02699758084737732,0.026893457592935092,0.026790134314466595,0.0266876018290527,0.026585851093769607,0.026484873203031507,0.026384659385993468,0.026285201004013065,0.026186489548169156,0.026088516636836354,0.02599127401331365,0.02589475354350592,0.02579894721365682,0.025703847128131816,0.02560944550725001,0.025515734685163625,0.025422707107783722,0.02533035533075123,0.025238672017451943,0.02514764993707445,0.025057281962709958,0.02496756106949287,0.024878480332781183,0.024790032926375626,0.02470221212077672,0.024615011281478652,0.024528423867299178,0.024442443428744624,0.024357063606409164,0.02427227812940746,0.024188080813839954,0.02410446556128996,0.024021426357351817,0.023938957270189302,0.023857052449123707,0.023775706123250674,0.023694912600085338,0.023614666264234894,0.023534961576098086,0.023455793070590904,0.023377155355897926,0.023299043112248664,0.02322145109071835,0.02314437411205262,0.02306780706551548,0.02299174490776006,0.022916182661721667,0.022841115415532527,0.022766538321457818,0.022692446594852447,0.02261883551313815,0.022545700414800387,0.02247303669840466,0.022400839821631782,0.02232910530033165,0.02225782870759517,0.022187005672843835,0.022116631880936707,0.022046703071294253,0.021977215037038787,0.021908163624151097,0.021839544730642917,0.02177135430574489,0.021703588349109723,0.0216362429100301,0.02156931408667118,0.021502798025317262,0.021436690919632316,0.021370989009934144,0.02130568858248185,0.021240785968776255,0.021176277544873168,0.02111215973070901,0.021048428989438754,0.020985081826785733,0.020922114790403207,0.02085952446924734,0.02079730749296144,0.02073546053127113,0.020673980293390314,0.020612863527437693,0.020552107019863517,0.020491707594886527,0.020431662113940742,0.02037196747513197,0.02031262061270379,0.020253618496512856,0.0201949581315133,0.020136636557250107,0.020078650847361143,0.020020998109087904,0.019963675482794537,0.01990668014149517,0.019850009290389256,0.019793660166404926,0.019737630037749976,0.019681916203470543,0.019626515993017193,0.01957142676581833,0.019516645910860737,0.0194621708462772,0.019407999018940955,0.019354127904066917,0.01930055500481952,0.019247277851927067,0.01919429400330243,0.019141601043669985,0.019089196584198716,0.019037078262141287,0.01898524374047902,0.018933690707572656,0.01888241687681881,0.018831419986311944,0.018780697798511846,0.01873024809991646,0.018680068700739936,0.018630157434595885,0.018580512158185684,0.01853113075099173,0.018482011114975598,0.018433151174280973,0.01838454887494127,0.01833620218459189,0.018288109092186984,0.01824026760772067,0.018192675761952604,0.018145331606137842,0.018098233211760927,0.01805137867027405,0.018004766092839342,0.01795839361007507,0.01791225937180581,0.017866361546816412,0.01782069832260977,0.01777526790516829,0.017730068518718948,0.017685098405502014,0.017640355825543207,0.01759583905642933,0.0175515463930873,0.01750747614756648,0.017463626648824313,0.01741999624251514,0.0173765832907822,0.01733338617205271,0.017290403280836007,0.01724763302752468,0.017205073838198644,0.017162724154432107,0.017120582433103392,0.01707864714620755,0.017036916780671672,0.016995389838173003,0.016954064834959592,0.016912940301673653,0.016872014783177416,0.016831286838381535,0.016790755040075985,0.01675041797476335,0.016710274242494563,0.01667032245670696,0.01663056124406468,0.016590989244301312,0.016551605110064833,0.016512407506764658,0.016473395112420988,0.016434566617516154,0.016395920724848165,0.016357456149386242,0.01631917161812843,0.016281065869961163,0.016243137655520854,0.016205385737057303,0.016167808888299166,0.01613040589432112,0.016093175551413,0.016056116666950667,0.01601922805926869,0.015982508557534757,0.015945957001625845,0.01590957224200604,0.01587335313960605,0.015837298565704348,0.015801407401809978,0.015765678539546853,0.01573011088053973,0.015694703336301637,0.015659454828122865,0.01562436428696144,0.015589430653335066,0.015554652877214494,0.01552002991791836,0.01548556074400937,0.015451244333191894,0.015417079672210935,0.015383065756752395,0.015349201591344688,0.015315486189261637,0.015281918572426646,0.015248497771318153,0.015215222824876272,0.01518209278041071,0.01514910669350983,0.01511626362795097,0.01508356265561183,0.015051002856383087,0.015018583318082096,0.014986303136367734,0.014954161414656305,0.014922157264038543,0.014890289803197685,0.01485855815832859,0.014826961463057864,0.014795498858365038,0.014764169492504715,0.01473297252092975,0.014701907106215325,0.014670972417984067,0.01464016763283206,0.014609491934255791,0.014578944512580017,0.014548524564886551,0.014518231294943909,0.014488063913137866,0.014458021636402831,0.014428103688154127,0.014398309298221073,0.014368637702780906,0.014339088144293514,0.014309659871436975,0.014280352139043898,0.01425116420803852,0.014222095345374596,0.014193144823974033,0.014164311922666288,0.014135595926128489,0.014106996124826274,0.014078511814955374,0.014050142298383883,0.014021886882595229,0.013993744880631825,0.013965715611039412,0.013937798397812062,0.013909992570337827,0.013882297463345053,0.013854712416849345,0.013827236776101122,0.013799869891533832,0.013772611118712768,0.013745459818284497,0.013718415355926864,0.013691477102299612,0.013664644432995556,0.01363791672849237,0.013611293374104886,0.013584773759937985,0.01355835728084004,0.013532043336356886,0.013505831330686321,0.013479720672633151,0.013453710775564749,0.013427801057367132,0.013401990940401518,0.013376279851461429,0.01335066722173024,0.013325152486739256,0.01329973508632624,0.01327441446459441,0.013249190069871944,0.013224061354671903,0.013199027775652624,0.013174088793578563,0.013149243873281593,0.013124492483622713,0.01309983409745421,0.013075268191582235,0.01305079424672981,0.013026411747500233,0.013002120182340912,0.01297791904350759,0.012953807827028976,0.012929786032671753,0.012905853163905998,0.012882008727870977,0.012858252235341313,0.01283458320069352,0.012811001141872926,0.012787505580360958,0.012764096041142764,0.012740772052675209,0.012717533146855222,0.012694378858988477,0.012671308727758424,0.012648322295195661,0.01262541910664762,0.012602598710748602,0.01257986065939014,0.012557204507691641,0.012534629813971408,0.012512136139717914,0.012489723049561436,0.012467390111245941,0.012445136895601321,0.012422962976515902,0.012400867930909236,0.012378851338705215,0.012356912782805426,0.012335051849062844,0.01231326812625575,0.012291561206061955,0.012269930683033298,0.0122483761545704,0.012226897220897677,0.012205493485038648,0.012184164552791454,0.012162910032704694,0.012141729536053443,0.012120622676815582,0.01209958907164833,0.012078628339865062,0.012057740103412316,0.012036923986847088,0.012016179617314325,0.011995506624524685,0.01197490464073248,0.011954373300713894,0.011933912241745387,0.011913521103582356,0.011893199528437969,0.011872947160962264,0.011852763648221427,0.011832648639677293,0.011812601787167053,0.011792622744883165,0.011772711169353498,0.011752866719421603,0.011733089056227277,0.011713377843187246,0.011693732745976088,0.011674153432507335,0.011654639572914741,0.011635190839533788,0.011615806906883325,0.011596487451647423,0.011577232152657397,0.011558040690874015,0.01153891274936987,0.01151984801331195,0.011500846169944344,0.011481906908571166,0.011463029920539606,0.01144421489922317,0.011425461540005072,0.01140676954026181,0.011388138599346882,0.01136956841857466,0.011351058701204439,0.011332609152424638,0.01131421947933713,0.011295889390941765,0.011277618598121006,0.011259406813624742,0.01124125375205522,0.011223159129852155,0.011205122665277949,0.011187144078403091,0.011169223091091652,0.011151359426986968,0.011133552811497407,0.011115802971782331,0.011098109636738138,0.011080472536984473,0.011062891404850552,0.011045365974361628,0.011027895981225574,0.0110104811628196,0.010993121258177092,0.010975816007974584,0.010958565154518837,0.01094136844173406,0.010924225615149228,0.01090713642188554,0.01089010061064398,0.010873117931693002,0.010856188136856333,0.010839310979500876,0.010822486214524737,0.010805713598345364,0.010788992888887789,0.01077232384557299,0.010755706229306343,0.010739139802466192,0.010722624328892542,0.010706159573875808,0.010689745304145723,0.010673381287860304,0.010657067294594959,0.010640803095331648,0.010624588462448176,0.010608423169707582,0.010592306992247615,0.010576239706570302,0.010560221090531619,0.010544250923331258,0.010528328985502485,0.010512455058902075,0.010496628926700367,0.01048085037337137,0.010465119184683007,0.010449435147687402,0.010433798050711271,0.01041820768334641,0.010402663836440252,0.010387166302086515,0.010371714873615935,0.010356309345587077,0.010340949513777238,0.010325635175173412,0.010310366127963348,0.010295142171526703,0.01027996310642623,0.010264828734399087,0.010249738858348198,0.010234693282333705,0.010219691811564482,0.010204734252389725,0.01018982041229063,0.010174950099872125,0.010160123124854686,0.01014533929806623,0.010130598431434051,0.010115900337976868,0.010101244831796894,0.01008663172807203,0.010072060843048063,0.010057531994030993,0.010043044999379382,0.010028599678496784,0.010014195851824252,0.009999833340832886],"x":[28.0,28.143426294820717,28.286852589641434,28.43027888446215,28.573705179282868,28.717131474103585,28.860557768924302,29.00398406374502,29.147410358565736,29.290836653386453,29.43426294820717,29.577689243027887,29.721115537848604,29.86454183266932,30.00796812749004,30.15139442231076,30.294820717131476,30.438247011952193,30.58167330677291,30.725099601593627,30.868525896414344,31.01195219123506,31.155378486055778,31.298804780876495,31.44223107569721,31.58565737051793,31.729083665338646,31.872509960159363,32.01593625498008,32.1593625498008,32.30278884462152,32.44621513944223,32.58964143426295,32.733067729083665,32.876494023904385,33.0199203187251,33.16334661354582,33.30677290836653,33.45019920318725,33.59362549800797,33.73705179282869,33.8804780876494,34.02390438247012,34.167330677290835,34.310756972111555,34.45418326693227,34.59760956175299,34.7410358565737,34.88446215139442,35.02788844621514,35.17131474103586,35.31474103585657,35.45816733067729,35.601593625498005,35.745019920318725,35.88844621513944,36.03187250996016,36.17529880478088,36.31872509960159,36.462151394422314,36.60557768924303,36.74900398406375,36.89243027888446,37.03585657370518,37.179282868525895,37.322709163346616,37.46613545816733,37.60956175298805,37.75298804780876,37.896414342629484,38.0398406374502,38.18326693227092,38.32669322709163,38.47011952191235,38.613545816733065,38.756972111553786,38.9003984063745,39.04382470119522,39.18725099601593,39.330677290836654,39.47410358565737,39.61752988047809,39.7609561752988,39.90438247011952,40.04780876494024,40.191235059760956,40.33466135458168,40.47808764940239,40.62151394422311,40.764940239043824,40.908366533864545,41.05179282868526,41.19521912350598,41.33864541832669,41.48207171314741,41.625498007968126,41.76892430278885,41.91235059760956,42.05577689243028,42.199203187250994,42.342629482071715,42.48605577689243,42.62948207171315,42.77290836653386,42.91633466135458,43.059760956175296,43.20318725099602,43.34661354581673,43.49003984063745,43.633466135458164,43.776892430278885,43.9203187250996,44.06374501992032,44.20717131474104,44.35059760956175,44.49402390438247,44.63745019920319,44.78087649402391,44.92430278884462,45.06772908366534,45.211155378486055,45.354581673306775,45.49800796812749,45.64143426294821,45.78486055776892,45.92828685258964,46.07171314741036,46.21513944223108,46.35856573705179,46.50199203187251,46.645418326693225,46.788844621513945,46.93227091633466,47.07569721115538,47.21912350597609,47.36254980079681,47.50597609561753,47.64940239043825,47.79282868525896,47.93625498007968,48.0796812749004,48.223107569721115,48.366533864541836,48.50996015936255,48.65338645418327,48.79681274900398,48.940239043824704,49.08366533864542,49.22709163346614,49.37051792828685,49.51394422310757,49.657370517928285,49.800796812749006,49.94422310756972,50.08764940239044,50.23107569721115,50.374501992031874,50.51792828685259,50.66135458167331,50.80478087649402,50.94820717131474,51.091633466135455,51.235059760956176,51.37848605577689,51.52191235059761,51.66533864541832,51.808764940239044,51.95219123505976,52.09561752988048,52.2390438247012,52.38247011952191,52.52589641434263,52.669322709163346,52.81274900398407,52.95617529880478,53.0996015936255,53.243027888446214,53.386454183266935,53.52988047808765,53.67330677290837,53.81673306772908,53.9601593625498,54.103585657370516,54.24701195219124,54.39043824701195,54.53386454183267,54.677290836653384,54.820717131474105,54.96414342629482,55.10756972111554,55.25099601593625,55.39442231075697,55.537848605577686,55.68127490039841,55.82470119521912,55.96812749003984,56.11155378486056,56.254980079681275,56.398406374501995,56.54183266932271,56.68525896414343,56.82868525896414,56.97211155378486,57.11553784860558,57.2589641434263,57.40239043824701,57.54581673306773,57.689243027888445,57.832669322709165,57.97609561752988,58.1195219123506,58.26294820717131,58.40637450199203,58.54980079681275,58.69322709163347,58.83665338645418,58.9800796812749,59.123505976095615,59.266932270916335,59.41035856573705,59.55378486055777,59.69721115537848,59.8406374501992,59.98406374501992,60.12749003984064,60.27091633466136,60.41434262948207,60.55776892430279,60.701195219123505,60.844621513944226,60.98804780876494,61.13147410358566,61.27490039840637,61.418326693227094,61.56175298804781,61.70517928286853,61.84860557768924,61.99203187250996,62.135458167330675,62.278884462151396,62.42231075697211,62.56573705179283,62.70916334661354,62.852589641434264,62.99601593625498,63.1394422310757,63.28286852589641,63.42629482071713,63.569721115537845,63.713147410358566,63.85657370517928,64.0,64.14342629482071,64.28685258964144,64.43027888446215,64.57370517928287,64.71713147410358,64.86055776892431,65.00398406374502,65.14741035856574,65.29083665338645,65.43426294820718,65.57768924302789,65.7211155378486,65.86454183266932,66.00796812749005,66.15139442231076,66.29482071713147,66.43824701195219,66.58167330677291,66.72509960159363,66.86852589641434,67.01195219123505,67.15537848605578,67.2988047808765,67.44223107569721,67.58565737051792,67.72908366533865,67.87250996015936,68.01593625498008,68.1593625498008,68.30278884462152,68.44621513944223,68.58964143426294,68.73306772908367,68.87649402390439,69.0199203187251,69.16334661354581,69.30677290836654,69.45019920318725,69.59362549800797,69.73705179282868,69.88047808764941,70.02390438247012,70.16733067729083,70.31075697211155,70.45418326693228,70.59760956175299,70.7410358565737,70.88446215139442,71.02788844621514,71.17131474103586,71.31474103585657,71.45816733067728,71.60159362549801,71.74501992031873,71.88844621513944,72.03187250996017,72.17529880478088,72.3187250996016,72.4621513944223,72.60557768924303,72.74900398406375,72.89243027888446,73.03585657370517,73.1792828685259,73.32270916334662,73.46613545816733,73.60956175298804,73.75298804780877,73.89641434262948,74.0398406374502,74.18326693227091,74.32669322709164,74.47011952191235,74.61354581673307,74.75697211155378,74.9003984063745,75.04382470119522,75.18725099601593,75.33067729083665,75.47410358565737,75.61752988047809,75.7609561752988,75.90438247011951,76.04780876494024,76.19123505976096,76.33466135458167,76.4780876494024,76.62151394422311,76.76494023904382,76.90836653386454,77.05179282868527,77.19521912350598,77.33864541832669,77.4820717131474,77.62549800796813,77.76892430278885,77.91235059760956,78.05577689243027,78.199203187251,78.34262948207171,78.48605577689243,78.62948207171314,78.77290836653387,78.91633466135458,79.0597609561753,79.20318725099601,79.34661354581674,79.49003984063745,79.63346613545816,79.77689243027888,79.9203187250996,80.06374501992032,80.20717131474103,80.35059760956176,80.49402390438247,80.63745019920319,80.7808764940239,80.92430278884463,81.06772908366534,81.21115537848605,81.35458167330677,81.4980079681275,81.64143426294821,81.78486055776892,81.92828685258964,82.07171314741036,82.21513944223108,82.35856573705179,82.5019920318725,82.64541832669323,82.78884462151395,82.93227091633466,83.07569721115537,83.2191235059761,83.36254980079681,83.50597609561753,83.64940239043824,83.79282868525897,83.93625498007968,84.0796812749004,84.22310756972112,84.36653386454184,84.50996015936255,84.65338645418326,84.79681274900399,84.9402390438247,85.08366533864542,85.22709163346613,85.37051792828686,85.51394422310757,85.65737051792829,85.800796812749,85.94422310756973,86.08764940239044,86.23107569721115,86.37450199203187,86.5179282868526,86.66135458167331,86.80478087649402,86.94820717131473,87.09163346613546,87.23505976095618,87.37848605577689,87.5219123505976,87.66533864541833,87.80876494023904,87.95219123505976,88.09561752988049,88.2390438247012,88.38247011952191,88.52589641434263,88.66932270916335,88.81274900398407,88.95617529880478,89.0996015936255,89.24302788844622,89.38645418326693,89.52988047808765,89.67330677290836,89.81673306772909,89.9601593625498,90.10358565737052,90.24701195219123,90.39043824701196,90.53386454183267,90.67729083665338,90.8207171314741,90.96414342629483,91.10756972111554,91.25099601593625,91.39442231075697,91.5378486055777,91.6812749003984,91.82470119521912,91.96812749003983,92.11155378486056,92.25498007968127,92.39840637450199,92.54183266932272,92.68525896414343,92.82868525896414,92.97211155378486,93.11553784860558,93.2589641434263,93.40239043824701,93.54581673306772,93.68924302788845,93.83266932270917,93.97609561752988,94.11952191235059,94.26294820717132,94.40637450199203,94.54980079681275,94.69322709163346,94.83665338645419,94.9800796812749,95.12350597609561,95.26693227091633,95.41035856573706,95.55378486055777,95.69721115537848,95.8406374501992,95.98406374501992,96.12749003984064,96.27091633466135,96.41434262948208,96.55776892430279,96.7011952191235,96.84462151394422,96.98804780876495,97.13147410358566,97.27490039840637,97.41832669322709,97.56175298804781,97.70517928286853,97.84860557768924,97.99203187250995,98.13545816733068,98.2788844621514,98.42231075697211,98.56573705179282,98.70916334661355,98.85258964143426,98.99601593625498,99.13944223107569,99.28286852589642,99.42629482071713,99.56972111553785,99.71314741035856,99.85657370517929,100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json new file mode 100644 index 000000000000..6c1e0f9d3aed --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json @@ -0,0 +1 @@ +{"expected":[-0.881373587019543,-0.8785648221811828,-0.8757727485921216,-0.872997223399564,-0.8702381053721214,-0.8674952548760734,-0.8647685338520688,-0.8620578057922589,-0.8593629357178508,-0.8566837901570737,-0.8540202371235461,-0.8513721460950371,-0.8487393879926115,-0.8461218351601517,-0.8435193613442457,-0.8409318416744351,-0.8383591526438152,-0.8358011720899767,-0.8332577791762857,-0.830728854373491,-0.8282142794416545,-0.8257139374123945,-0.8232277125714388,-0.8207554904414776,-0.818297157765313,-0.8158526024892955,-0.8134217137470444,-0.8110043818434439,-0.808600498238911,-0.8062099555339275,-0.8038326474538329,-0.80146846883387,-0.7991173156044817,-0.7967790847768498,-0.7944536744286734,-0.7921409836901823,-0.7898409127303782,-0.7875533627435015,-0.7852782359357193,-0.7830154355120266,-0.7807648656633612,-0.7785264315539255,-0.7763000393087106,-0.7740855960012203,-0.7718830096413907,-0.7696921891637005,-0.7675130444154687,-0.7653454861453384,-0.7631894259919384,-0.761044776472724,-0.7589114509729903,-0.7567893637350566,-0.7546784298476171,-0.7525785652352567,-0.7504896866481258,-0.7484117116517751,-0.7463445586171438,-0.7442881467106999,-0.742242395884731,-0.7402072268677793,-0.7381825611552224,-0.7361683209999937,-0.7341644294034417,-0.7321708101063261,-0.7301873875799457,-0.7282140870173991,-0.7262508343249728,-0.7242975561136566,-0.7223541796907823,-0.720420633051785,-0.7184968448720837,-0.7165827444990802,-0.7146782619442725,-0.7127833278754824,-0.7108978736091945,-0.7090218311030053,-0.7071551329481788,-0.7052977123623084,-0.7034495031820842,-0.7016104398561599,-0.6997804574381221,-0.6979594915795581,-0.696147478523219,-0.6943443550962817,-0.6925500587037001,-0.6907645273216532,-0.6889876994910803,-0.6872195143113065,-0.6854599114337566,-0.683708831055755,-0.6819662139144081,-0.6802320012805743,-0.6785061349529113,-0.6767885572520083,-0.6750792110145938,-0.6733780395878244,-0.6716849868236489,-0.6699999970732475,-0.6683230151815468,-0.6666539864818065,-0.6649928567902786,-0.6633395724009379,-0.6616940800802807,-0.6600563270621939,-0.6584262610428896,-0.6568038301759084,-0.6551889830671853,-0.6535816687701826,-0.6519818367810841,-0.6503894370340527,-0.6488044198965491,-0.6472267361647105,-0.6456563370587898,-0.644093174218652,-0.6425371996993297,-0.6409883659666337,-0.6394466258928211,-0.6379119327523178,-0.6363842402174951,-0.6348635023544987,-0.6333496736191336,-0.6318427088527967,-0.630342563278463,-0.6288491924967214,-0.6273625524818596,-0.6258825995779984,-0.6244092904952742,-0.6229425823060674,-0.6214824324412789,-0.6200287986866527,-0.6185816391791422,-0.6171409124033228,-0.6157065771878469,-0.6142785927019441,-0.6128569184519623,-0.6114415142779519,-0.610032340350291,-0.6086293571663518,-0.6072325255472073,-0.6058418066343769,-0.6044571618866126,-0.6030785530767222,-0.6017059422884318,-0.6003392919132852,-0.5989785646475797,-0.5976237234893401,-0.5962747317353265,-0.5949315529780789,-0.5935941511029963,-0.5922624902854505,-0.5909365349879331,-0.5896162499572373,-0.588301600221671,-0.5869925510883044,-0.585689068140248,-0.5843911172339632,-0.5830986644966043,-0.5818116763233905,-0.580530119375009,-0.5792539605750476,-0.5779831671074576,-0.5767177064140449,-0.5754575461919903,-0.5742026543913986,-0.5729529992128755,-0.5717085491051309,-0.5704692727626122,-0.569235139123161,-0.5680061173656998,-0.5667821769079422,-0.5655632874041299,-0.5643494187427962,-0.5631405410445529,-0.5619366246599032,-0.5607376401670785,-0.5595435583698998,-0.5583543502956627,-0.5571699871930462,-0.5559904405300442,-0.5548156819919204,-0.5536456834791864,-0.5524804171056001,-0.5513198551961892,-0.550163970285293,-0.5490127351146292,-0.5478661226313792,-0.5467241059862957,-0.5455866585318304,-0.5444537538202826,-0.5433253656019679,-0.5422014678234057,-0.5410820346255282,-0.5399670403419075,-0.538856459497002,-0.5377502668044223,-0.5366484371652145,-0.5355509456661643,-0.5344577675781161,-0.5333688783543128,-0.5322842536287523,-0.5312038692145611,-0.5301277011023863,-0.5290557254588031,-0.5279879186247411,-0.5269242571139265,-0.5258647176113392,-0.5248092769716893,-0.5237579122179066,-0.522710600539648,-0.5216673192918201,-0.5206280459931163,-0.5195927583245711,-0.5185614341281269,-0.5175340514052191,-0.5165105883153723,-0.515491023174814,-0.5144753344551012,-0.513463500781761,-0.5124555009329473,-0.5114513138381083,-0.5104509185766699,-0.5094542943767325,-0.5084614206137804,-0.5074722768094041,-0.5064868426300376,-0.5055050978857065,-0.50452702252879,-0.5035525966527954,-0.5025818004911444,-0.5016146144159724,-0.5006510189369405,-0.4996909947000577,-0.4987345224865169,-0.4977815832115414,-0.4968321579232438,-0.49588622780149577,-0.4949437741568095,-0.49400477842923035,-0.49306922218724064,-0.49213708712667387,-0.49120835506964045,-0.4902830079634639,-0.48936102787962743,-0.488442397012731,-0.4875270976794594,-0.48661511231755883,-0.4857064234848262,-0.4848010138581056,-0.4838988662322967,-0.48299996351937236,-0.4821042887474049,-0.48121182505960347,-0.48032255571335974,-0.47943646407930335,-0.47855353364036657,-0.4776737479908578,-0.4767970908355445,-0.47592354598874453,-0.475053097373427,-0.47418572902032097,-0.4733214250670334,-0.47246016975717536,-0.47160194743949707,-0.47074674256703003,-0.4698945396962395,-0.46904532348618255,-0.4681990786976768,-0.4673557901924748,-0.466515442932448,-0.4656780219787775,-0.46484351249115274,-0.4640118997269785,-0.463183169040588,-0.4623573058824648,-0.4615342957984718,-0.46071412442908655,-0.4598967775086452,-0.45908224086459243,-0.4582705004167394,-0.4574615421765278,-0.4566553522463012,-0.45585191681858345,-0.4550512221753634,-0.4542532546873867,-0.4534580008134538,-0.4526654470997248,-0.4518755801790307,-0.4510883867701911,-0.4503038536773379,-0.44952196778924586,-0.4487427160786688,-0.4479660856016819,-0.447192063497031,-0.4464206369854866,-0.44565179336920463,-0.44488552003109283,-0.4441218044341831,-0.44336063412100923,-0.4426019967129909,-0.4418458799098227,-0.4410922714888692,-0.44034115930456513,-0.4395925312878215,-0.43884637544543653,-0.43810267985951257,-0.43736143268687755,-0.4366226221585126,-0.4358862365789836,-0.4351522643258793,-0.4344206938492533,-0.43369151367107184,-0.4329647123846659,-0.4322402786541888,-0.4315182012140784,-0.43079846886852385,-0.4300810704909378,-0.4293659950234328,-0.4286532314763019,-0.42794276892750527,-0.4272345965221598,-0.42652870347203464,-0.42582507905505007,-0.4251237126147816,-0.4244245935599676,-0.4237277113640225,-0.4230330555645532,-0.4223406157628802,-0.42165038162356266,-0.4209623428739282,-0.4202764893036064,-0.41959281076406607,-0.4189112971681575,-0.41823193848965756,-0.41755472476281996,-0.4168796460819281,-0.4162066926008534,-0.41553585453261566,-0.4148671221489491,-0.4142004857798705,-0.41353593581325204,-0.412873462694398,-0.412213056925624,-0.41155470906584096,-0.4108984097301425,-0.41024414958939526,-0.40959191936983297,-0.4089417098526549,-0.4082935118736262,-0.4076473163226829,-0.40700311414353985,-0.4063608963333015,-0.40572065394207757,-0.40508237807259945,-0.4044460598798426,-0.4038116905706502,-0.4031792614033609,-0.4025487636874394,-0.4019201887831102,-0.4012935281009946,-0.4006687731017507,-0.4000459152957161,-0.399424946242554,-0.3988058575509024,-0.39818864087802575,-0.3975732879294696,-0.3969597904587188,-0.3963481402668575,-0.395738329202233,-0.3951303491601217,-0.39452419208239803,-0.3939198499572065,-0.3933173148186359,-0.3927165787463964,-0.39211763386549964,-0.3915204723459409,-0.39092508640238455,-0.3903314682938515,-0.38973961032340965,-0.38914950483786637,-0.38856114422746446,-0.38797452092557944,-0.3873896274084201,-0.38680645619473136,-0.3862249998454995,-0.38564525096365965,-0.3850672021938058,-0.38449084622190327,-0.3839161757750034,-0.38334318362096076,-0.3827718625681521,-0.38220220546519845,-0.3816342052006884,-0.38106785470290494,-0.38050314693955306,-0.3799400749174908,-0.3793786316824615,-0.37881881031882914,-0.37826060394931477,-0.37770400573473595,-0.3771490088737478,-0.37659560660258634,-0.3760437921948137,-0.3754935589610655,-0.37494490024880006,-0.3743978094420501,-0.3738522799611758,-0.37330830526262015,-0.3727658788386662,-0.37222499421719635,-0.37168564496145323,-0.37114782466980284,-0.3706115269754993,-0.3700767455464516,-0.3695434740849921,-0.369011706327647,-0.36848143604490835,-0.36795265704100827,-0.3674253631536943,-0.3668995482540072,-0.36637520624606046,-0.36585233106682036,-0.3653309166858898,-0.36481095710529166,-0.3642924463592556,-0.36377537851400543,-0.3632597476675484,-0.36274554794946673,-0.3622327735207094,-0.3617214185733872,-0.36121147733056824,-0.3607029440460752,-0.36019581300428466,-0.3596900785199273,-0.3591857349378902,-0.3586827766330203,-0.3581811980099295,-0.3576809935028014,-0.3571821575751993,-0.3566846847198756,-0.356188569458583,-0.35569380634188696,-0.3552003899489795,-0.35470831488749444,-0.3542175757933242,-0.3537281673304381,-0.35324008419070135,-0.35275332109369645,-0.35226787278654503,-0.3517837340437316,-0.35130089966692835,-0.35081936448482154,-0.3503391233529387,-0.3498601711534779,-0.34938250279513744,-0.3489061132129476,-0.3484309973681031,-0.34795715024779705,-0.34748456686505624,-0.34701324225857744,-0.3465431714925648,-0.34607434965656925,-0.3456067718653281,-0.3451404332586063,-0.3446753290010391,-0.34421145428197525,-0.3437488043153223,-0.34328737433939177,-0.34282715961674715,-0.3423681554340509,-0.34191035710191486,-0.3414537599547501,-0.34099835935061823,-0.34054415067108457,-0.3400911293210716,-0.33963929072871357,-0.33918863034521257,-0.3387391436446951,-0.33829082612407063,-0.3378436733028899,-0.3373976807232054,-0.33695284394943215,-0.3365091585682099,-0.33606662018826605,-0.33562522444028003,-0.3351849669767478,-0.3347458434718485,-0.3343078496213109,-0.33387098114228164,-0.33343523377319423,-0.3330006032736386,-0.33256708542423236,-0.332134676026492,-0.331703370902706,-0.3312731658958082,-0.33084405686925233,-0.3304160397068874,-0.329989110312834,-0.3295632646113615,-0.32913849854676597,-0.32871480808324927,-0.3282921892047988,-0.3278706379150681,-0.32745015023725843],"x":[-1.0,-1.00398406374502,-1.0079681274900398,-1.0119521912350598,-1.0159362549800797,-1.0199203187250996,-1.0239043824701195,-1.0278884462151394,-1.0318725099601593,-1.0358565737051793,-1.0398406374501992,-1.043824701195219,-1.047808764940239,-1.051792828685259,-1.0557768924302788,-1.0597609561752988,-1.0637450199203187,-1.0677290836653386,-1.0717131474103585,-1.0756972111553784,-1.0796812749003983,-1.0836653386454183,-1.0876494023904382,-1.091633466135458,-1.095617529880478,-1.099601593625498,-1.1035856573705178,-1.1075697211155378,-1.1115537848605577,-1.1155378486055776,-1.1195219123505975,-1.1235059760956174,-1.1274900398406376,-1.1314741035856575,-1.1354581673306774,-1.1394422310756973,-1.1434262948207172,-1.1474103585657371,-1.151394422310757,-1.155378486055777,-1.159362549800797,-1.1633466135458168,-1.1673306772908367,-1.1713147410358566,-1.1752988047808766,-1.1792828685258965,-1.1832669322709164,-1.1872509960159363,-1.1912350597609562,-1.1952191235059761,-1.199203187250996,-1.203187250996016,-1.207171314741036,-1.2111553784860558,-1.2151394422310757,-1.2191235059760956,-1.2231075697211156,-1.2270916334661355,-1.2310756972111554,-1.2350597609561753,-1.2390438247011952,-1.2430278884462151,-1.247011952191235,-1.250996015936255,-1.254980079681275,-1.2589641434262948,-1.2629482071713147,-1.2669322709163346,-1.2709163346613546,-1.2749003984063745,-1.2788844621513944,-1.2828685258964143,-1.2868525896414342,-1.2908366533864541,-1.294820717131474,-1.298804780876494,-1.302788844621514,-1.3067729083665338,-1.3107569721115537,-1.3147410358565736,-1.3187250996015936,-1.3227091633466135,-1.3266932270916334,-1.3306772908366533,-1.3346613545816732,-1.3386454183266931,-1.342629482071713,-1.346613545816733,-1.350597609561753,-1.3545816733067728,-1.3585657370517927,-1.3625498007968126,-1.3665338645418326,-1.3705179282868525,-1.3745019920318724,-1.3784860557768925,-1.3824701195219125,-1.3864541832669324,-1.3904382470119523,-1.3944223107569722,-1.3984063745019921,-1.402390438247012,-1.406374501992032,-1.4103585657370519,-1.4143426294820718,-1.4183266932270917,-1.4223107569721116,-1.4262948207171315,-1.4302788844621515,-1.4342629482071714,-1.4382470119521913,-1.4422310756972112,-1.4462151394422311,-1.450199203187251,-1.454183266932271,-1.4581673306772909,-1.4621513944223108,-1.4661354581673307,-1.4701195219123506,-1.4741035856573705,-1.4780876494023905,-1.4820717131474104,-1.4860557768924303,-1.4900398406374502,-1.4940239043824701,-1.49800796812749,-1.50199203187251,-1.5059760956175299,-1.5099601593625498,-1.5139442231075697,-1.5179282868525896,-1.5219123505976095,-1.5258964143426295,-1.5298804780876494,-1.5338645418326693,-1.5378486055776892,-1.5418326693227091,-1.545816733067729,-1.549800796812749,-1.5537848605577689,-1.5577689243027888,-1.5617529880478087,-1.5657370517928286,-1.5697211155378485,-1.5737051792828685,-1.5776892430278884,-1.5816733067729083,-1.5856573705179282,-1.5896414342629481,-1.593625498007968,-1.597609561752988,-1.6015936254980079,-1.6055776892430278,-1.6095617529880477,-1.6135458167330676,-1.6175298804780875,-1.6215139442231075,-1.6254980079681276,-1.6294820717131475,-1.6334661354581674,-1.6374501992031874,-1.6414342629482073,-1.6454183266932272,-1.649402390438247,-1.653386454183267,-1.657370517928287,-1.6613545816733069,-1.6653386454183268,-1.6693227091633467,-1.6733067729083666,-1.6772908366533865,-1.6812749003984064,-1.6852589641434264,-1.6892430278884463,-1.6932270916334662,-1.697211155378486,-1.701195219123506,-1.705179282868526,-1.7091633466135459,-1.7131474103585658,-1.7171314741035857,-1.7211155378486056,-1.7250996015936255,-1.7290836653386454,-1.7330677290836654,-1.7370517928286853,-1.7410358565737052,-1.745019920318725,-1.749003984063745,-1.752988047808765,-1.7569721115537849,-1.7609561752988048,-1.7649402390438247,-1.7689243027888446,-1.7729083665338645,-1.7768924302788844,-1.7808764940239044,-1.7848605577689243,-1.7888446215139442,-1.792828685258964,-1.796812749003984,-1.800796812749004,-1.8047808764940239,-1.8087649402390438,-1.8127490039840637,-1.8167330677290836,-1.8207171314741035,-1.8247011952191234,-1.8286852589641434,-1.8326693227091633,-1.8366533864541832,-1.840637450199203,-1.844621513944223,-1.848605577689243,-1.8525896414342629,-1.8565737051792828,-1.8605577689243027,-1.8645418326693226,-1.8685258964143425,-1.8725099601593624,-1.8764940239043826,-1.8804780876494025,-1.8844621513944224,-1.8884462151394423,-1.8924302788844622,-1.8964143426294822,-1.900398406374502,-1.904382470119522,-1.908366533864542,-1.9123505976095618,-1.9163346613545817,-1.9203187250996017,-1.9243027888446216,-1.9282868525896415,-1.9322709163346614,-1.9362549800796813,-1.9402390438247012,-1.9442231075697212,-1.948207171314741,-1.952191235059761,-1.956175298804781,-1.9601593625498008,-1.9641434262948207,-1.9681274900398407,-1.9721115537848606,-1.9760956175298805,-1.9800796812749004,-1.9840637450199203,-1.9880478087649402,-1.9920318725099602,-1.99601593625498,-2.0,-2.00398406374502,-2.00796812749004,-2.0119521912350598,-2.0159362549800797,-2.0199203187250996,-2.0239043824701195,-2.0278884462151394,-2.0318725099601593,-2.0358565737051793,-2.039840637450199,-2.043824701195219,-2.047808764940239,-2.051792828685259,-2.055776892430279,-2.0597609561752988,-2.0637450199203187,-2.0677290836653386,-2.0717131474103585,-2.0756972111553784,-2.0796812749003983,-2.0836653386454183,-2.087649402390438,-2.091633466135458,-2.095617529880478,-2.099601593625498,-2.103585657370518,-2.1075697211155378,-2.1115537848605577,-2.1155378486055776,-2.1195219123505975,-2.1235059760956174,-2.1274900398406373,-2.1314741035856573,-2.135458167330677,-2.139442231075697,-2.143426294820717,-2.147410358565737,-2.151394422310757,-2.1553784860557768,-2.1593625498007967,-2.1633466135458166,-2.1673306772908365,-2.1713147410358564,-2.1752988047808763,-2.1792828685258963,-2.183266932270916,-2.187250996015936,-2.191235059760956,-2.195219123505976,-2.199203187250996,-2.2031872509960158,-2.2071713147410357,-2.2111553784860556,-2.2151394422310755,-2.2191235059760954,-2.2231075697211153,-2.2270916334661353,-2.231075697211155,-2.235059760956175,-2.239043824701195,-2.243027888446215,-2.247011952191235,-2.250996015936255,-2.254980079681275,-2.258964143426295,-2.262948207171315,-2.266932270916335,-2.270916334661355,-2.2749003984063747,-2.2788844621513946,-2.2828685258964145,-2.2868525896414345,-2.2908366533864544,-2.2948207171314743,-2.298804780876494,-2.302788844621514,-2.306772908366534,-2.310756972111554,-2.314741035856574,-2.318725099601594,-2.3227091633466137,-2.3266932270916336,-2.3306772908366535,-2.3346613545816735,-2.3386454183266934,-2.3426294820717133,-2.346613545816733,-2.350597609561753,-2.354581673306773,-2.358565737051793,-2.362549800796813,-2.366533864541833,-2.3705179282868527,-2.3745019920318726,-2.3784860557768925,-2.3824701195219125,-2.3864541832669324,-2.3904382470119523,-2.394422310756972,-2.398406374501992,-2.402390438247012,-2.406374501992032,-2.410358565737052,-2.414342629482072,-2.4183266932270917,-2.4223107569721116,-2.4262948207171315,-2.4302788844621515,-2.4342629482071714,-2.4382470119521913,-2.442231075697211,-2.446215139442231,-2.450199203187251,-2.454183266932271,-2.458167330677291,-2.462151394422311,-2.4661354581673307,-2.4701195219123506,-2.4741035856573705,-2.4780876494023905,-2.4820717131474104,-2.4860557768924303,-2.49003984063745,-2.49402390438247,-2.49800796812749,-2.50199203187251,-2.50597609561753,-2.50996015936255,-2.5139442231075697,-2.5179282868525896,-2.5219123505976095,-2.5258964143426295,-2.5298804780876494,-2.5338645418326693,-2.537848605577689,-2.541832669322709,-2.545816733067729,-2.549800796812749,-2.553784860557769,-2.557768924302789,-2.5617529880478087,-2.5657370517928286,-2.5697211155378485,-2.5737051792828685,-2.5776892430278884,-2.5816733067729083,-2.585657370517928,-2.589641434262948,-2.593625498007968,-2.597609561752988,-2.601593625498008,-2.605577689243028,-2.6095617529880477,-2.6135458167330676,-2.6175298804780875,-2.6215139442231075,-2.6254980079681274,-2.6294820717131473,-2.633466135458167,-2.637450199203187,-2.641434262948207,-2.645418326693227,-2.649402390438247,-2.653386454183267,-2.6573705179282867,-2.6613545816733066,-2.6653386454183265,-2.6693227091633465,-2.6733067729083664,-2.6772908366533863,-2.681274900398406,-2.685258964143426,-2.689243027888446,-2.693227091633466,-2.697211155378486,-2.701195219123506,-2.7051792828685257,-2.7091633466135456,-2.7131474103585655,-2.7171314741035855,-2.7211155378486054,-2.7250996015936253,-2.729083665338645,-2.733067729083665,-2.737051792828685,-2.741035856573705,-2.745019920318725,-2.749003984063745,-2.752988047808765,-2.756972111553785,-2.760956175298805,-2.764940239043825,-2.768924302788845,-2.7729083665338647,-2.7768924302788847,-2.7808764940239046,-2.7848605577689245,-2.7888446215139444,-2.7928286852589643,-2.7968127490039842,-2.800796812749004,-2.804780876494024,-2.808764940239044,-2.812749003984064,-2.816733067729084,-2.8207171314741037,-2.8247011952191237,-2.8286852589641436,-2.8326693227091635,-2.8366533864541834,-2.8406374501992033,-2.8446215139442232,-2.848605577689243,-2.852589641434263,-2.856573705179283,-2.860557768924303,-2.864541832669323,-2.8685258964143427,-2.8725099601593627,-2.8764940239043826,-2.8804780876494025,-2.8844621513944224,-2.8884462151394423,-2.8924302788844622,-2.896414342629482,-2.900398406374502,-2.904382470119522,-2.908366533864542,-2.912350597609562,-2.9163346613545817,-2.9203187250996017,-2.9243027888446216,-2.9282868525896415,-2.9322709163346614,-2.9362549800796813,-2.9402390438247012,-2.944223107569721,-2.948207171314741,-2.952191235059761,-2.956175298804781,-2.960159362549801,-2.9641434262948207,-2.9681274900398407,-2.9721115537848606,-2.9760956175298805,-2.9800796812749004,-2.9840637450199203,-2.9880478087649402,-2.99203187250996,-2.99601593625498,-3.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json new file mode 100644 index 000000000000..1808609050ff --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"expected":[0.881373587019543,0.8785648221811828,0.8757727485921216,0.872997223399564,0.8702381053721214,0.8674952548760734,0.8647685338520688,0.8620578057922589,0.8593629357178508,0.8566837901570737,0.8540202371235461,0.8513721460950371,0.8487393879926115,0.8461218351601517,0.8435193613442457,0.8409318416744351,0.8383591526438152,0.8358011720899767,0.8332577791762857,0.830728854373491,0.8282142794416545,0.8257139374123945,0.8232277125714388,0.8207554904414776,0.818297157765313,0.8158526024892955,0.8134217137470444,0.8110043818434439,0.808600498238911,0.8062099555339275,0.8038326474538329,0.80146846883387,0.7991173156044817,0.7967790847768498,0.7944536744286734,0.7921409836901823,0.7898409127303782,0.7875533627435015,0.7852782359357193,0.7830154355120266,0.7807648656633612,0.7785264315539255,0.7763000393087106,0.7740855960012203,0.7718830096413907,0.7696921891637005,0.7675130444154687,0.7653454861453384,0.7631894259919384,0.761044776472724,0.7589114509729903,0.7567893637350566,0.7546784298476171,0.7525785652352567,0.7504896866481258,0.7484117116517751,0.7463445586171438,0.7442881467106999,0.742242395884731,0.7402072268677793,0.7381825611552224,0.7361683209999937,0.7341644294034417,0.7321708101063261,0.7301873875799457,0.7282140870173991,0.7262508343249728,0.7242975561136566,0.7223541796907823,0.720420633051785,0.7184968448720837,0.7165827444990802,0.7146782619442725,0.7127833278754824,0.7108978736091945,0.7090218311030053,0.7071551329481788,0.7052977123623084,0.7034495031820842,0.7016104398561599,0.6997804574381221,0.6979594915795581,0.696147478523219,0.6943443550962817,0.6925500587037001,0.6907645273216532,0.6889876994910803,0.6872195143113065,0.6854599114337566,0.683708831055755,0.6819662139144081,0.6802320012805743,0.6785061349529113,0.6767885572520083,0.6750792110145938,0.6733780395878244,0.6716849868236489,0.6699999970732475,0.6683230151815468,0.6666539864818065,0.6649928567902786,0.6633395724009379,0.6616940800802807,0.6600563270621939,0.6584262610428896,0.6568038301759084,0.6551889830671853,0.6535816687701826,0.6519818367810841,0.6503894370340527,0.6488044198965491,0.6472267361647105,0.6456563370587898,0.644093174218652,0.6425371996993297,0.6409883659666337,0.6394466258928211,0.6379119327523178,0.6363842402174951,0.6348635023544987,0.6333496736191336,0.6318427088527967,0.630342563278463,0.6288491924967214,0.6273625524818596,0.6258825995779984,0.6244092904952742,0.6229425823060674,0.6214824324412789,0.6200287986866527,0.6185816391791422,0.6171409124033228,0.6157065771878469,0.6142785927019441,0.6128569184519623,0.6114415142779519,0.610032340350291,0.6086293571663518,0.6072325255472073,0.6058418066343769,0.6044571618866126,0.6030785530767222,0.6017059422884318,0.6003392919132852,0.5989785646475797,0.5976237234893401,0.5962747317353265,0.5949315529780789,0.5935941511029963,0.5922624902854505,0.5909365349879331,0.5896162499572373,0.588301600221671,0.5869925510883044,0.585689068140248,0.5843911172339632,0.5830986644966043,0.5818116763233905,0.580530119375009,0.5792539605750476,0.5779831671074576,0.5767177064140449,0.5754575461919903,0.5742026543913986,0.5729529992128755,0.5717085491051309,0.5704692727626122,0.569235139123161,0.5680061173656998,0.5667821769079422,0.5655632874041299,0.5643494187427962,0.5631405410445529,0.5619366246599032,0.5607376401670785,0.5595435583698998,0.5583543502956627,0.5571699871930462,0.5559904405300442,0.5548156819919204,0.5536456834791864,0.5524804171056001,0.5513198551961892,0.550163970285293,0.5490127351146292,0.5478661226313792,0.5467241059862957,0.5455866585318304,0.5444537538202826,0.5433253656019679,0.5422014678234057,0.5410820346255282,0.5399670403419075,0.538856459497002,0.5377502668044223,0.5366484371652145,0.5355509456661643,0.5344577675781161,0.5333688783543128,0.5322842536287523,0.5312038692145611,0.5301277011023863,0.5290557254588031,0.5279879186247411,0.5269242571139265,0.5258647176113392,0.5248092769716893,0.5237579122179066,0.522710600539648,0.5216673192918201,0.5206280459931163,0.5195927583245711,0.5185614341281269,0.5175340514052191,0.5165105883153723,0.515491023174814,0.5144753344551012,0.513463500781761,0.5124555009329473,0.5114513138381083,0.5104509185766699,0.5094542943767325,0.5084614206137804,0.5074722768094041,0.5064868426300376,0.5055050978857065,0.50452702252879,0.5035525966527954,0.5025818004911444,0.5016146144159724,0.5006510189369405,0.4996909947000577,0.4987345224865169,0.4977815832115414,0.4968321579232438,0.49588622780149577,0.4949437741568095,0.49400477842923035,0.49306922218724064,0.49213708712667387,0.49120835506964045,0.4902830079634639,0.48936102787962743,0.488442397012731,0.4875270976794594,0.48661511231755883,0.4857064234848262,0.4848010138581056,0.4838988662322967,0.48299996351937236,0.4821042887474049,0.48121182505960347,0.48032255571335974,0.47943646407930335,0.47855353364036657,0.4776737479908578,0.4767970908355445,0.47592354598874453,0.475053097373427,0.47418572902032097,0.4733214250670334,0.47246016975717536,0.47160194743949707,0.47074674256703003,0.4698945396962395,0.46904532348618255,0.4681990786976768,0.4673557901924748,0.466515442932448,0.4656780219787775,0.46484351249115274,0.4640118997269785,0.463183169040588,0.4623573058824648,0.4615342957984718,0.46071412442908655,0.4598967775086452,0.45908224086459243,0.4582705004167394,0.4574615421765278,0.4566553522463012,0.45585191681858345,0.4550512221753634,0.4542532546873867,0.4534580008134538,0.4526654470997248,0.4518755801790307,0.4510883867701911,0.4503038536773379,0.44952196778924586,0.4487427160786688,0.4479660856016819,0.447192063497031,0.4464206369854866,0.44565179336920463,0.44488552003109283,0.4441218044341831,0.44336063412100923,0.4426019967129909,0.4418458799098227,0.4410922714888692,0.44034115930456513,0.4395925312878215,0.43884637544543653,0.43810267985951257,0.43736143268687755,0.4366226221585126,0.4358862365789836,0.4351522643258793,0.4344206938492533,0.43369151367107184,0.4329647123846659,0.4322402786541888,0.4315182012140784,0.43079846886852385,0.4300810704909378,0.4293659950234328,0.4286532314763019,0.42794276892750527,0.4272345965221598,0.42652870347203464,0.42582507905505007,0.4251237126147816,0.4244245935599676,0.4237277113640225,0.4230330555645532,0.4223406157628802,0.42165038162356266,0.4209623428739282,0.4202764893036064,0.41959281076406607,0.4189112971681575,0.41823193848965756,0.41755472476281996,0.4168796460819281,0.4162066926008534,0.41553585453261566,0.4148671221489491,0.4142004857798705,0.41353593581325204,0.412873462694398,0.412213056925624,0.41155470906584096,0.4108984097301425,0.41024414958939526,0.40959191936983297,0.4089417098526549,0.4082935118736262,0.4076473163226829,0.40700311414353985,0.4063608963333015,0.40572065394207757,0.40508237807259945,0.4044460598798426,0.4038116905706502,0.4031792614033609,0.4025487636874394,0.4019201887831102,0.4012935281009946,0.4006687731017507,0.4000459152957161,0.399424946242554,0.3988058575509024,0.39818864087802575,0.3975732879294696,0.3969597904587188,0.3963481402668575,0.395738329202233,0.3951303491601217,0.39452419208239803,0.3939198499572065,0.3933173148186359,0.3927165787463964,0.39211763386549964,0.3915204723459409,0.39092508640238455,0.3903314682938515,0.38973961032340965,0.38914950483786637,0.38856114422746446,0.38797452092557944,0.3873896274084201,0.38680645619473136,0.3862249998454995,0.38564525096365965,0.3850672021938058,0.38449084622190327,0.3839161757750034,0.38334318362096076,0.3827718625681521,0.38220220546519845,0.3816342052006884,0.38106785470290494,0.38050314693955306,0.3799400749174908,0.3793786316824615,0.37881881031882914,0.37826060394931477,0.37770400573473595,0.3771490088737478,0.37659560660258634,0.3760437921948137,0.3754935589610655,0.37494490024880006,0.3743978094420501,0.3738522799611758,0.37330830526262015,0.3727658788386662,0.37222499421719635,0.37168564496145323,0.37114782466980284,0.3706115269754993,0.3700767455464516,0.3695434740849921,0.369011706327647,0.36848143604490835,0.36795265704100827,0.3674253631536943,0.3668995482540072,0.36637520624606046,0.36585233106682036,0.3653309166858898,0.36481095710529166,0.3642924463592556,0.36377537851400543,0.3632597476675484,0.36274554794946673,0.3622327735207094,0.3617214185733872,0.36121147733056824,0.3607029440460752,0.36019581300428466,0.3596900785199273,0.3591857349378902,0.3586827766330203,0.3581811980099295,0.3576809935028014,0.3571821575751993,0.3566846847198756,0.356188569458583,0.35569380634188696,0.3552003899489795,0.35470831488749444,0.3542175757933242,0.3537281673304381,0.35324008419070135,0.35275332109369645,0.35226787278654503,0.3517837340437316,0.35130089966692835,0.35081936448482154,0.3503391233529387,0.3498601711534779,0.34938250279513744,0.3489061132129476,0.3484309973681031,0.34795715024779705,0.34748456686505624,0.34701324225857744,0.3465431714925648,0.34607434965656925,0.3456067718653281,0.3451404332586063,0.3446753290010391,0.34421145428197525,0.3437488043153223,0.34328737433939177,0.34282715961674715,0.3423681554340509,0.34191035710191486,0.3414537599547501,0.34099835935061823,0.34054415067108457,0.3400911293210716,0.33963929072871357,0.33918863034521257,0.3387391436446951,0.33829082612407063,0.3378436733028899,0.3373976807232054,0.33695284394943215,0.3365091585682099,0.33606662018826605,0.33562522444028003,0.3351849669767478,0.3347458434718485,0.3343078496213109,0.33387098114228164,0.33343523377319423,0.3330006032736386,0.33256708542423236,0.332134676026492,0.331703370902706,0.3312731658958082,0.33084405686925233,0.3304160397068874,0.329989110312834,0.3295632646113615,0.32913849854676597,0.32871480808324927,0.3282921892047988,0.3278706379150681,0.32745015023725843],"x":[1.0,1.00398406374502,1.0079681274900398,1.0119521912350598,1.0159362549800797,1.0199203187250996,1.0239043824701195,1.0278884462151394,1.0318725099601593,1.0358565737051793,1.0398406374501992,1.043824701195219,1.047808764940239,1.051792828685259,1.0557768924302788,1.0597609561752988,1.0637450199203187,1.0677290836653386,1.0717131474103585,1.0756972111553784,1.0796812749003983,1.0836653386454183,1.0876494023904382,1.091633466135458,1.095617529880478,1.099601593625498,1.1035856573705178,1.1075697211155378,1.1115537848605577,1.1155378486055776,1.1195219123505975,1.1235059760956174,1.1274900398406376,1.1314741035856575,1.1354581673306774,1.1394422310756973,1.1434262948207172,1.1474103585657371,1.151394422310757,1.155378486055777,1.159362549800797,1.1633466135458168,1.1673306772908367,1.1713147410358566,1.1752988047808766,1.1792828685258965,1.1832669322709164,1.1872509960159363,1.1912350597609562,1.1952191235059761,1.199203187250996,1.203187250996016,1.207171314741036,1.2111553784860558,1.2151394422310757,1.2191235059760956,1.2231075697211156,1.2270916334661355,1.2310756972111554,1.2350597609561753,1.2390438247011952,1.2430278884462151,1.247011952191235,1.250996015936255,1.254980079681275,1.2589641434262948,1.2629482071713147,1.2669322709163346,1.2709163346613546,1.2749003984063745,1.2788844621513944,1.2828685258964143,1.2868525896414342,1.2908366533864541,1.294820717131474,1.298804780876494,1.302788844621514,1.3067729083665338,1.3107569721115537,1.3147410358565736,1.3187250996015936,1.3227091633466135,1.3266932270916334,1.3306772908366533,1.3346613545816732,1.3386454183266931,1.342629482071713,1.346613545816733,1.350597609561753,1.3545816733067728,1.3585657370517927,1.3625498007968126,1.3665338645418326,1.3705179282868525,1.3745019920318724,1.3784860557768925,1.3824701195219125,1.3864541832669324,1.3904382470119523,1.3944223107569722,1.3984063745019921,1.402390438247012,1.406374501992032,1.4103585657370519,1.4143426294820718,1.4183266932270917,1.4223107569721116,1.4262948207171315,1.4302788844621515,1.4342629482071714,1.4382470119521913,1.4422310756972112,1.4462151394422311,1.450199203187251,1.454183266932271,1.4581673306772909,1.4621513944223108,1.4661354581673307,1.4701195219123506,1.4741035856573705,1.4780876494023905,1.4820717131474104,1.4860557768924303,1.4900398406374502,1.4940239043824701,1.49800796812749,1.50199203187251,1.5059760956175299,1.5099601593625498,1.5139442231075697,1.5179282868525896,1.5219123505976095,1.5258964143426295,1.5298804780876494,1.5338645418326693,1.5378486055776892,1.5418326693227091,1.545816733067729,1.549800796812749,1.5537848605577689,1.5577689243027888,1.5617529880478087,1.5657370517928286,1.5697211155378485,1.5737051792828685,1.5776892430278884,1.5816733067729083,1.5856573705179282,1.5896414342629481,1.593625498007968,1.597609561752988,1.6015936254980079,1.6055776892430278,1.6095617529880477,1.6135458167330676,1.6175298804780875,1.6215139442231075,1.6254980079681276,1.6294820717131475,1.6334661354581674,1.6374501992031874,1.6414342629482073,1.6454183266932272,1.649402390438247,1.653386454183267,1.657370517928287,1.6613545816733069,1.6653386454183268,1.6693227091633467,1.6733067729083666,1.6772908366533865,1.6812749003984064,1.6852589641434264,1.6892430278884463,1.6932270916334662,1.697211155378486,1.701195219123506,1.705179282868526,1.7091633466135459,1.7131474103585658,1.7171314741035857,1.7211155378486056,1.7250996015936255,1.7290836653386454,1.7330677290836654,1.7370517928286853,1.7410358565737052,1.745019920318725,1.749003984063745,1.752988047808765,1.7569721115537849,1.7609561752988048,1.7649402390438247,1.7689243027888446,1.7729083665338645,1.7768924302788844,1.7808764940239044,1.7848605577689243,1.7888446215139442,1.792828685258964,1.796812749003984,1.800796812749004,1.8047808764940239,1.8087649402390438,1.8127490039840637,1.8167330677290836,1.8207171314741035,1.8247011952191234,1.8286852589641434,1.8326693227091633,1.8366533864541832,1.840637450199203,1.844621513944223,1.848605577689243,1.8525896414342629,1.8565737051792828,1.8605577689243027,1.8645418326693226,1.8685258964143425,1.8725099601593624,1.8764940239043826,1.8804780876494025,1.8844621513944224,1.8884462151394423,1.8924302788844622,1.8964143426294822,1.900398406374502,1.904382470119522,1.908366533864542,1.9123505976095618,1.9163346613545817,1.9203187250996017,1.9243027888446216,1.9282868525896415,1.9322709163346614,1.9362549800796813,1.9402390438247012,1.9442231075697212,1.948207171314741,1.952191235059761,1.956175298804781,1.9601593625498008,1.9641434262948207,1.9681274900398407,1.9721115537848606,1.9760956175298805,1.9800796812749004,1.9840637450199203,1.9880478087649402,1.9920318725099602,1.99601593625498,2.0,2.00398406374502,2.00796812749004,2.0119521912350598,2.0159362549800797,2.0199203187250996,2.0239043824701195,2.0278884462151394,2.0318725099601593,2.0358565737051793,2.039840637450199,2.043824701195219,2.047808764940239,2.051792828685259,2.055776892430279,2.0597609561752988,2.0637450199203187,2.0677290836653386,2.0717131474103585,2.0756972111553784,2.0796812749003983,2.0836653386454183,2.087649402390438,2.091633466135458,2.095617529880478,2.099601593625498,2.103585657370518,2.1075697211155378,2.1115537848605577,2.1155378486055776,2.1195219123505975,2.1235059760956174,2.1274900398406373,2.1314741035856573,2.135458167330677,2.139442231075697,2.143426294820717,2.147410358565737,2.151394422310757,2.1553784860557768,2.1593625498007967,2.1633466135458166,2.1673306772908365,2.1713147410358564,2.1752988047808763,2.1792828685258963,2.183266932270916,2.187250996015936,2.191235059760956,2.195219123505976,2.199203187250996,2.2031872509960158,2.2071713147410357,2.2111553784860556,2.2151394422310755,2.2191235059760954,2.2231075697211153,2.2270916334661353,2.231075697211155,2.235059760956175,2.239043824701195,2.243027888446215,2.247011952191235,2.250996015936255,2.254980079681275,2.258964143426295,2.262948207171315,2.266932270916335,2.270916334661355,2.2749003984063747,2.2788844621513946,2.2828685258964145,2.2868525896414345,2.2908366533864544,2.2948207171314743,2.298804780876494,2.302788844621514,2.306772908366534,2.310756972111554,2.314741035856574,2.318725099601594,2.3227091633466137,2.3266932270916336,2.3306772908366535,2.3346613545816735,2.3386454183266934,2.3426294820717133,2.346613545816733,2.350597609561753,2.354581673306773,2.358565737051793,2.362549800796813,2.366533864541833,2.3705179282868527,2.3745019920318726,2.3784860557768925,2.3824701195219125,2.3864541832669324,2.3904382470119523,2.394422310756972,2.398406374501992,2.402390438247012,2.406374501992032,2.410358565737052,2.414342629482072,2.4183266932270917,2.4223107569721116,2.4262948207171315,2.4302788844621515,2.4342629482071714,2.4382470119521913,2.442231075697211,2.446215139442231,2.450199203187251,2.454183266932271,2.458167330677291,2.462151394422311,2.4661354581673307,2.4701195219123506,2.4741035856573705,2.4780876494023905,2.4820717131474104,2.4860557768924303,2.49003984063745,2.49402390438247,2.49800796812749,2.50199203187251,2.50597609561753,2.50996015936255,2.5139442231075697,2.5179282868525896,2.5219123505976095,2.5258964143426295,2.5298804780876494,2.5338645418326693,2.537848605577689,2.541832669322709,2.545816733067729,2.549800796812749,2.553784860557769,2.557768924302789,2.5617529880478087,2.5657370517928286,2.5697211155378485,2.5737051792828685,2.5776892430278884,2.5816733067729083,2.585657370517928,2.589641434262948,2.593625498007968,2.597609561752988,2.601593625498008,2.605577689243028,2.6095617529880477,2.6135458167330676,2.6175298804780875,2.6215139442231075,2.6254980079681274,2.6294820717131473,2.633466135458167,2.637450199203187,2.641434262948207,2.645418326693227,2.649402390438247,2.653386454183267,2.6573705179282867,2.6613545816733066,2.6653386454183265,2.6693227091633465,2.6733067729083664,2.6772908366533863,2.681274900398406,2.685258964143426,2.689243027888446,2.693227091633466,2.697211155378486,2.701195219123506,2.7051792828685257,2.7091633466135456,2.7131474103585655,2.7171314741035855,2.7211155378486054,2.7250996015936253,2.729083665338645,2.733067729083665,2.737051792828685,2.741035856573705,2.745019920318725,2.749003984063745,2.752988047808765,2.756972111553785,2.760956175298805,2.764940239043825,2.768924302788845,2.7729083665338647,2.7768924302788847,2.7808764940239046,2.7848605577689245,2.7888446215139444,2.7928286852589643,2.7968127490039842,2.800796812749004,2.804780876494024,2.808764940239044,2.812749003984064,2.816733067729084,2.8207171314741037,2.8247011952191237,2.8286852589641436,2.8326693227091635,2.8366533864541834,2.8406374501992033,2.8446215139442232,2.848605577689243,2.852589641434263,2.856573705179283,2.860557768924303,2.864541832669323,2.8685258964143427,2.8725099601593627,2.8764940239043826,2.8804780876494025,2.8844621513944224,2.8884462151394423,2.8924302788844622,2.896414342629482,2.900398406374502,2.904382470119522,2.908366533864542,2.912350597609562,2.9163346613545817,2.9203187250996017,2.9243027888446216,2.9282868525896415,2.9322709163346614,2.9362549800796813,2.9402390438247012,2.944223107569721,2.948207171314741,2.952191235059761,2.956175298804781,2.960159362549801,2.9641434262948207,2.9681274900398407,2.9721115537848606,2.9760956175298805,2.9800796812749004,2.9840637450199203,2.9880478087649402,2.99203187250996,2.99601593625498,3.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl new file mode 100755 index 000000000000..c98a4c5aa415 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl @@ -0,0 +1,114 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2026 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import JSON + +""" +gen( domain, name ) + +Generate fixture data and write to file. + +# Arguments + +* `domain`: domain +* `name::AbstractString`: output filename + +# Examples + +``` julia +julia> x = range( -1000, stop = 1000, length = 2001 ); +julia> gen( x, \"data.json\" ); +``` +""" +function gen( domain, name ) + x = collect( domain ); + y = acschf.( x ); + + # Store data to be written to file as a collection: + data = Dict([ + ("x", x), + ("expected", y) + ]); + + # Based on the script directory, create an output filepath: + filepath = joinpath( dir, name ); + + # Write the data to the output filepath as JSON: + outfile = open( filepath, "w" ); + write( outfile, JSON.json(data) ); + write( outfile, "\n" ); + close( outfile ); +end + +# Get the filename: +file = @__FILE__; + +# Extract the directory in which this file resides: +dir = dirname( file ); + +# Negative tiny values: +x = range( -1e-300, stop = -1e-308, length = 503 ); +gen( x, "tiny_negative.json" ); + +# Positive tiny values: +x = range( 1e-300, stop = 1e-308, length = 503 ); +gen( x, "tiny_positive.json" ); + +# Small(er) values: +x = range( -0.8, stop = 0.8, length = 503 ); +gen( x, "smaller.json" ); + +# Negative small values: +x = range( -0.8, stop = -1.0, length = 503 ); +gen( x, "small_negative.json" ); + +# Positive small values: +x = range( 0.8, stop = 1.0, length = 503 ); +gen( x, "small_positive.json" ); + +# Negative medium values: +x = range( -1.0, stop = -3.0, length = 503 ); +gen( x, "medium_negative.json" ); + +# Positive medium values: +x = range( 1.0, stop = 3.0, length = 503 ); +gen( x, "medium_positive.json" ); + +# Large negative values: +x = range( -3.0, stop = -28.0, length = 503 ); +gen( x, "large_negative.json" ); + +# Large positive values: +x = range( 3.0, stop = 28.0, length = 503 ); +gen( x, "large_positive.json" ); + +# Larger negative values: +x = range( -28.0, stop = -100.0, length = 503 ); +gen( x, "larger_negative.json" ); + +# Larger positive values: +x = range( 28.0, stop = 100.0, length = 503 ); +gen( x, "larger_positive.json" ); + +# Huge negative values: +x = range( -1e200, stop = -1e208, length = 503 ); +gen( x, "huge_negative.json" ); + +# Huge positive values: +x = range( 1e300, stop = 1e308, length = 503 ); +gen( x, "huge_positive.json" ); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json new file mode 100644 index 000000000000..24089f994a16 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json @@ -0,0 +1 @@ +{"expected":[-1.0475930126492587,-1.0472042683349878,-1.0468157929876352,-1.0464275863331858,-1.0460396480980116,-1.045651978008868,-1.045264575792896,-1.0448774411776196,-1.0444905738909456,-1.0441039736611633,-1.0437176402169426,-1.0433315732873356,-1.0429457726017728,-1.0425602378900651,-1.0421749688824014,-1.041789965309348,-1.04140522690185,-1.0410207533912268,-1.0406365445091748,-1.040252599987765,-1.039868919559443,-1.039485502957028,-1.0391023499137115,-1.0387194601630576,-1.0383368334390022,-1.0379544694758516,-1.0375723680082822,-1.0371905287713403,-1.0368089515004404,-1.036427635931365,-1.0360465818002647,-1.035665788843656,-1.0352852567984214,-1.0349049854018093,-1.0345249743914327,-1.0341452235052673,-1.0337657324816538,-1.0333865010592946,-1.0330075289772538,-1.0326288159749573,-1.0322503617921914,-1.031872166169102,-1.0314942288461946,-1.0311165495643335,-1.0307391280647402,-1.030361964088994,-1.0299850573790306,-1.0296084076771415,-1.029232014725974,-1.0288558782685293,-1.0284799980481631,-1.0281043738085842,-1.0277290052938537,-1.0273538922483856,-1.0269790344169443,-1.0266044315446454,-1.0262300833769549,-1.0258559896596873,-1.0254821501390066,-1.0251085645614246,-1.024735232673801,-1.0243621542233419,-1.0239893289575996,-1.0236167566244727,-1.023244436972204,-1.0228723697493805,-1.022500554704934,-1.0221289915881382,-1.0217576801486092,-1.0213866201363064,-1.0210158113015286,-1.0206452533949162,-1.0202749461674492,-1.019904889370447,-1.0195350827555676,-1.0191655260748074,-1.0187962190805,-1.0184271615253155,-1.0180583531622613,-1.0176897937446796,-1.0173214830262474,-1.0169534207609767,-1.0165856067032133,-1.016218040607636,-1.015850722229256,-1.0154836513234171,-1.0151168276457938,-1.0147502509523918,-1.0143839209995469,-1.0140178375439244,-1.013652000342519,-1.013286409152653,-1.0129210637319774,-1.0125559638384702,-1.0121911092304356,-1.011826499666504,-1.0114621349056319,-1.0110980147070994,-1.0107341388305124,-1.0103705070357993,-1.010007119083212,-1.0096439747333252,-1.0092810737470355,-1.0089184158855604,-1.0085560009104388,-1.0081938285835295,-1.007831898667011,-1.0074702109233808,-1.0071087651154558,-1.0067475610063688,-1.0063865983595723,-1.0060258769388344,-1.0056653965082387,-1.0053051568321867,-1.0049451576753927,-1.004585398802887,-1.0042258799800134,-1.003866600972429,-1.0035075615461044,-1.0031487614673211,-1.0027902005026743,-1.002431878419069,-1.0020737949837208,-1.0017159499641568,-1.001358343128212,-1.0010009742440316,-1.0006438430800684,-1.0002869494050834,-0.9999302929881454,-0.9995738735986293,-0.9992176910062168,-0.9988617449808951,-0.9985060352929567,-0.9981505617129987,-0.9977953240119218,-0.9974403219609316,-0.9970855553315355,-0.9967310238955436,-0.9963767274250684,-0.9960226656925236,-0.995668838470624,-0.9953152455323845,-0.9949618866511196,-0.9946087616004441,-0.9942558701542705,-0.9939032120868104,-0.9935507871725725,-0.9931985951863631,-0.9928466359032853,-0.9924949090987379,-0.9921434145484161,-0.9917921520283096,-0.9914411213147029,-0.9910903221841749,-0.9907397544135975,-0.9903894177801363,-0.9900393120612494,-0.9896894370346866,-0.9893397924784894,-0.9889903781709906,-0.9886411938908132,-0.9882922394168704,-0.987943514528365,-0.9875950190047889,-0.9872467526259219,-0.9868987151718327,-0.9865509064228768,-0.9862033261596973,-0.9858559741632233,-0.9855088502146703,-0.9851619540955391,-0.9848152855876158,-0.9844688444729707,-0.9841226305339584,-0.9837766435532168,-0.9834308833136675,-0.9830853495985136,-0.9827400421912414,-0.982394960875618,-0.9820501054356919,-0.9817054756557927,-0.981361071320529,-0.9810168922147902,-0.9806729381237442,-0.980329208832838,-0.9799857041277965,-0.9796424237946224,-0.9792993676195962,-0.9789565353892744,-0.97861392689049,-0.9782715419103523,-0.9779293802362451,-0.9775874416558282,-0.9772457259570353,-0.9769042329280734,-0.976562962357424,-0.9762219140338412,-0.9758810877463514,-0.9755404832842535,-0.9752001004371177,-0.9748599389947856,-0.9745199987473692,-0.9741802794852509,-0.973840780999083,-0.9735015030797869,-0.9731624455185525,-0.972823608106839,-0.9724849906363727,-0.9721465928991478,-0.9718084146874253,-0.9714704557937328,-0.9711327160108643,-0.970795195131879,-0.9704578929501015,-0.9701208092591214,-0.969783943852792,-0.9694472965252313,-0.9691108670708202,-0.9687746552842021,-0.9684386609602842,-0.9681028838942345,-0.9677673238814831,-0.9674319807177219,-0.9670968541989027,-0.9667619441212378,-0.9664272502811997,-0.9660927724755198,-0.9657585105011893,-0.965424464155457,-0.9650906332358307,-0.964757017540075,-0.9644236168662127,-0.964090431012523,-0.9637574597775407,-0.9634247029600583,-0.9630921603591222,-0.9627598317740348,-0.9624277170043529,-0.9620958158498873,-0.9617641281107034,-0.9614326535871189,-0.9611013920797055,-0.9607703433892867,-0.9604395073169384,-0.9601088836639885,-0.9597784722320156,-0.9594482728228496,-0.9591182852385708,-0.9587885092815093,-0.9584589447542449,-0.9581295914596066,-0.9578004492006723,-0.957471517780768,-0.9571427970034679,-0.9568142866725937,-0.9564859865922144,-0.9561578965666448,-0.9558300164004475,-0.9555023458984294,-0.9551748848656442,-0.9548476331073898,-0.9545205904292094,-0.95419375663689,-0.9538671315364626,-0.9535407149342019,-0.9532145066366253,-0.952888506450493,-0.9525627141828074,-0.9522371296408128,-0.951911752631995,-0.9515865829640807,-0.9512616204450374,-0.950936864883073,-0.9506123160866348,-0.95028797386441,-0.9499638380253246,-0.9496399083785434,-0.9493161847334695,-0.9489926668997435,-0.9486693546872444,-0.9483462479060876,-0.9480233463666251,-0.9477006498794458,-0.947378158255374,-0.9470558713054703,-0.9467337888410293,-0.9464119106735815,-0.9460902366148913,-0.9457687664769571,-0.9454475000720111,-0.9451264372125184,-0.9448055777111778,-0.9444849213809196,-0.9441644680349064,-0.943844217486533,-0.9435241695494256,-0.9432043240374407,-0.9428846807646659,-0.9425652395454188,-0.9422460001942472,-0.9419269625259277,-0.9416081263554669,-0.9412894914980993,-0.9409710577692881,-0.9406528249847247,-0.9403347929603276,-0.9400169615122429,-0.9396993304568437,-0.9393818996107294,-0.9390646687907254,-0.9387476378138826,-0.9384308064974785,-0.9381141746590144,-0.9377977421162169,-0.9374815086870366,-0.9371654741896484,-0.9368496384424503,-0.9365340012640642,-0.936218562473334,-0.9359033218893271,-0.935588279331332,-0.9352734346188601,-0.9349587875716433,-0.9346443380096346,-0.9343300857530089,-0.9340160306221599,-0.9337021724377024,-0.9333885110204703,-0.9330750461915167,-0.9327617777721146,-0.9324487055837543,-0.9321358294481452,-0.9318231491872144,-0.9315106646231066,-0.9311983755781834,-0.9308862818750236,-0.9305743833364224,-0.930262679785391,-0.9299511710451563,-0.9296398569391616,-0.9293287372910639,-0.929017811924736,-0.928707080664265,-0.9283965433339515,-0.9280861997583105,-0.9277760497620702,-0.9274660931701718,-0.9271563298077694,-0.9268467595002291,-0.9265373820731296,-0.9262281973522608,-0.9259192051636245,-0.9256104053334328,-0.9253017976881094,-0.9249933820542878,-0.9246851582588115,-0.9243771261287339,-0.924069285491318,-0.9237616361740354,-0.9234541780045665,-0.9231469108108002,-0.9228398344208336,-0.9225329486629711,-0.922226253365725,-0.9219197483578141,-0.9216134334681643,-0.9213073085259078,-0.9210013733603829,-0.920695627801134,-0.92039007167791,-0.920084704820666,-0.919779527059561,-0.9194745382249591,-0.9191697381474281,-0.91886512665774,-0.9185607035868698,-0.9182564687659964,-0.9179524220265008,-0.917648563199967,-0.9173448921181809,-0.9170414086131308,-0.9167381125170061,-0.9164350036621974,-0.9161320818812971,-0.9158293470070973,-0.9155267988725905,-0.9152244373109699,-0.9149222621556277,-0.9146202732401559,-0.9143184703983454,-0.9140168534641858,-0.9137154222718653,-0.9134141766557703,-0.9131131164504848,-0.9128122414907904,-0.912511551611666,-0.9122110466482874,-0.9119107264360269,-0.9116105908104533,-0.9113106396073312,-0.9110108726626207,-0.9107112898124777,-0.9104118908932529,-0.9101126757414922,-0.9098136441939351,-0.9095147960875161,-0.9092161312593633,-0.908917649546798,-0.9086193507873355,-0.9083212348186835,-0.9080233014787423,-0.9077255506056051,-0.9074279820375569,-0.9071305956130741,-0.9068333911708252,-0.9065363685496695,-0.9062395275886571,-0.9059428681270292,-0.9056463900042167,-0.9053500930598408,-0.9050539771337126,-0.9047580420658322,-0.904462287696389,-0.9041667138657611,-0.9038713204145156,-0.9035761071834073,-0.9032810740133793,-0.9029862207455622,-0.9026915472212742,-0.9023970532820201,-0.9021027387694923,-0.9018086035255691,-0.9015146473923151,-0.9012208702119812,-0.9009272718270034,-0.9006338520800037,-0.9003406108137888,-0.9000475478713502,-0.8997546630958643,-0.8994619563306911,-0.8991694274193753,-0.898877076205645,-0.8985849025334114,-0.898292906246769,-0.8980010871899954,-0.8977094452075505,-0.8974179801440767,-0.897126691844398,-0.8968355801535206,-0.8965446449166316,-0.8962538859791002,-0.8959633031864754,-0.8956728963844875,-0.8953826654190472,-0.8950926101362449,-0.894802730382351,-0.8945130260038152,-0.894223496847267,-0.8939341427595145,-0.8936449635875442,-0.893355959178522,-0.8930671293797907,-0.8927784740388721,-0.8924899930034652,-0.8922016861214461,-0.8919135532408686,-0.8916255942099627,-0.8913378088771354,-0.8910501970909699,-0.890762758700225,-0.890475493553836,-0.8901884015009133,-0.8899014823907423,-0.8896147360727839,-0.8893281623966732,-0.88904176121222,-0.8887555323694083,-0.8884694757183959,-0.8881835911095142,-0.8878978783932681,-0.8876123374203357,-0.887326968041568,-0.8870417701079882,-0.8867567434707923,-0.886471887981348,-0.8861872034911955,-0.8859026898520457,-0.8856183469157816,-0.8853341745344567,-0.8850501725602954,-0.8847663408456932,-0.8844826792432148,-0.8841991876055962,-0.8839158657857425,-0.883632713636728,-0.8833497310117971,-0.8830669177643627,-0.8827842737480064,-0.8825017988164786,-0.8822194928236978,-0.881937355623751,-0.8816553870708921,-0.881373587019543],"x":[-0.8,-0.800398406374502,-0.8007968127490039,-0.801195219123506,-0.801593625498008,-0.80199203187251,-0.802390438247012,-0.8027888446215139,-0.803187250996016,-0.8035856573705179,-0.80398406374502,-0.8043824701195219,-0.8047808764940239,-0.8051792828685259,-0.8055776892430279,-0.8059760956175299,-0.8063745019920319,-0.8067729083665338,-0.8071713147410359,-0.8075697211155378,-0.8079681274900399,-0.8083665338645418,-0.8087649402390438,-0.8091633466135458,-0.8095617529880478,-0.8099601593625498,-0.8103585657370518,-0.8107569721115537,-0.8111553784860558,-0.8115537848605577,-0.8119521912350598,-0.8123505976095617,-0.8127490039840638,-0.8131474103585657,-0.8135458167330677,-0.8139442231075698,-0.8143426294820717,-0.8147410358565738,-0.8151394422310757,-0.8155378486055777,-0.8159362549800797,-0.8163346613545817,-0.8167330677290837,-0.8171314741035857,-0.8175298804780876,-0.8179282868525897,-0.8183266932270916,-0.8187250996015937,-0.8191235059760956,-0.8195219123505976,-0.8199203187250996,-0.8203187250996016,-0.8207171314741036,-0.8211155378486056,-0.8215139442231075,-0.8219123505976096,-0.8223107569721115,-0.8227091633466136,-0.8231075697211155,-0.8235059760956175,-0.8239043824701195,-0.8243027888446215,-0.8247011952191236,-0.8250996015936255,-0.8254980079681274,-0.8258964143426295,-0.8262948207171315,-0.8266932270916335,-0.8270916334661355,-0.8274900398406374,-0.8278884462151395,-0.8282868525896414,-0.8286852589641435,-0.8290836653386454,-0.8294820717131474,-0.8298804780876494,-0.8302788844621514,-0.8306772908366534,-0.8310756972111554,-0.8314741035856573,-0.8318725099601594,-0.8322709163346613,-0.8326693227091634,-0.8330677290836653,-0.8334661354581673,-0.8338645418326693,-0.8342629482071713,-0.8346613545816733,-0.8350597609561753,-0.8354581673306772,-0.8358565737051793,-0.8362549800796812,-0.8366533864541833,-0.8370517928286852,-0.8374501992031872,-0.8378486055776893,-0.8382470119521912,-0.8386454183266933,-0.8390438247011952,-0.8394422310756973,-0.8398406374501992,-0.8402390438247012,-0.8406374501992032,-0.8410358565737052,-0.8414342629482072,-0.8418326693227092,-0.8422310756972111,-0.8426294820717132,-0.8430278884462151,-0.8434262948207172,-0.8438247011952191,-0.8442231075697211,-0.8446215139442231,-0.8450199203187251,-0.8454183266932271,-0.8458167330677291,-0.846215139442231,-0.8466135458167331,-0.847011952191235,-0.8474103585657371,-0.847808764940239,-0.848207171314741,-0.848605577689243,-0.849003984063745,-0.8494023904382471,-0.849800796812749,-0.850199203187251,-0.850597609561753,-0.850996015936255,-0.851394422310757,-0.851792828685259,-0.8521912350597609,-0.852589641434263,-0.8529880478087649,-0.853386454183267,-0.8537848605577689,-0.8541832669322709,-0.8545816733067729,-0.8549800796812749,-0.8553784860557769,-0.8557768924302789,-0.8561752988047808,-0.8565737051792829,-0.8569721115537848,-0.8573705179282869,-0.8577689243027888,-0.8581673306772908,-0.8585657370517928,-0.8589641434262948,-0.8593625498007968,-0.8597609561752988,-0.8601593625498007,-0.8605577689243028,-0.8609561752988047,-0.8613545816733068,-0.8617529880478088,-0.8621513944223107,-0.8625498007968128,-0.8629482071713147,-0.8633466135458168,-0.8637450199203187,-0.8641434262948208,-0.8645418326693227,-0.8649402390438247,-0.8653386454183267,-0.8657370517928287,-0.8661354581673307,-0.8665338645418327,-0.8669322709163346,-0.8673306772908367,-0.8677290836653386,-0.8681274900398407,-0.8685258964143426,-0.8689243027888446,-0.8693227091633466,-0.8697211155378486,-0.8701195219123506,-0.8705179282868526,-0.8709163346613545,-0.8713147410358566,-0.8717131474103585,-0.8721115537848606,-0.8725099601593626,-0.8729083665338645,-0.8733067729083666,-0.8737051792828685,-0.8741035856573706,-0.8745019920318725,-0.8749003984063745,-0.8752988047808765,-0.8756972111553785,-0.8760956175298805,-0.8764940239043825,-0.8768924302788844,-0.8772908366533865,-0.8776892430278884,-0.8780876494023905,-0.8784860557768924,-0.8788844621513944,-0.8792828685258964,-0.8796812749003984,-0.8800796812749004,-0.8804780876494024,-0.8808764940239043,-0.8812749003984064,-0.8816733067729083,-0.8820717131474104,-0.8824701195219123,-0.8828685258964143,-0.8832669322709163,-0.8836653386454183,-0.8840637450199204,-0.8844621513944223,-0.8848605577689242,-0.8852589641434263,-0.8856573705179283,-0.8860557768924303,-0.8864541832669323,-0.8868525896414342,-0.8872509960159363,-0.8876494023904382,-0.8880478087649403,-0.8884462151394422,-0.8888446215139443,-0.8892430278884462,-0.8896414342629482,-0.8900398406374502,-0.8904382470119522,-0.8908366533864542,-0.8912350597609562,-0.8916334661354581,-0.8920318725099602,-0.8924302788844621,-0.8928286852589642,-0.8932270916334661,-0.8936254980079681,-0.8940239043824701,-0.8944223107569721,-0.8948207171314742,-0.8952191235059761,-0.895617529880478,-0.8960159362549801,-0.896414342629482,-0.8968127490039841,-0.8972111553784861,-0.897609561752988,-0.8980079681274901,-0.898406374501992,-0.8988047808764941,-0.899203187250996,-0.899601593625498,-0.9,-0.900398406374502,-0.900796812749004,-0.901195219123506,-0.9015936254980079,-0.90199203187251,-0.9023904382470119,-0.902788844621514,-0.9031872509960159,-0.9035856573705179,-0.9039840637450199,-0.9043824701195219,-0.904780876494024,-0.9051792828685259,-0.9055776892430278,-0.9059760956175299,-0.9063745019920318,-0.9067729083665339,-0.9071713147410359,-0.9075697211155378,-0.9079681274900399,-0.9083665338645418,-0.9087649402390439,-0.9091633466135458,-0.9095617529880478,-0.9099601593625498,-0.9103585657370518,-0.9107569721115538,-0.9111553784860558,-0.9115537848605577,-0.9119521912350598,-0.9123505976095617,-0.9127490039840638,-0.9131474103585657,-0.9135458167330678,-0.9139442231075697,-0.9143426294820717,-0.9147410358565737,-0.9151394422310757,-0.9155378486055777,-0.9159362549800797,-0.9163346613545816,-0.9167330677290837,-0.9171314741035856,-0.9175298804780877,-0.9179282868525896,-0.9183266932270916,-0.9187250996015937,-0.9191235059760956,-0.9195219123505977,-0.9199203187250996,-0.9203187250996016,-0.9207171314741036,-0.9211155378486056,-0.9215139442231076,-0.9219123505976096,-0.9223107569721115,-0.9227091633466136,-0.9231075697211155,-0.9235059760956176,-0.9239043824701195,-0.9243027888446215,-0.9247011952191235,-0.9250996015936255,-0.9254980079681275,-0.9258964143426295,-0.9262948207171314,-0.9266932270916335,-0.9270916334661354,-0.9274900398406375,-0.9278884462151394,-0.9282868525896414,-0.9286852589641434,-0.9290836653386454,-0.9294820717131475,-0.9298804780876494,-0.9302788844621513,-0.9306772908366534,-0.9310756972111554,-0.9314741035856574,-0.9318725099601594,-0.9322709163346613,-0.9326693227091634,-0.9330677290836653,-0.9334661354581674,-0.9338645418326693,-0.9342629482071713,-0.9346613545816733,-0.9350597609561753,-0.9354581673306773,-0.9358565737051793,-0.9362549800796812,-0.9366533864541833,-0.9370517928286852,-0.9374501992031873,-0.9378486055776892,-0.9382470119521913,-0.9386454183266932,-0.9390438247011952,-0.9394422310756972,-0.9398406374501992,-0.9402390438247012,-0.9406374501992032,-0.9410358565737051,-0.9414342629482072,-0.9418326693227091,-0.9422310756972112,-0.9426294820717132,-0.9430278884462151,-0.9434262948207172,-0.9438247011952191,-0.9442231075697212,-0.9446215139442231,-0.9450199203187251,-0.9454183266932271,-0.9458167330677291,-0.9462151394422311,-0.9466135458167331,-0.947011952191235,-0.9474103585657371,-0.947808764940239,-0.9482071713147411,-0.948605577689243,-0.949003984063745,-0.949402390438247,-0.949800796812749,-0.950199203187251,-0.950597609561753,-0.9509960159362549,-0.951394422310757,-0.9517928286852589,-0.952191235059761,-0.952589641434263,-0.9529880478087649,-0.953386454183267,-0.9537848605577689,-0.954183266932271,-0.9545816733067729,-0.9549800796812749,-0.9553784860557769,-0.9557768924302789,-0.9561752988047809,-0.9565737051792829,-0.9569721115537848,-0.9573705179282869,-0.9577689243027888,-0.9581673306772909,-0.9585657370517928,-0.9589641434262948,-0.9593625498007968,-0.9597609561752988,-0.9601593625498008,-0.9605577689243028,-0.9609561752988047,-0.9613545816733068,-0.9617529880478087,-0.9621513944223108,-0.9625498007968127,-0.9629482071713148,-0.9633466135458167,-0.9637450199203187,-0.9641434262948207,-0.9645418326693227,-0.9649402390438248,-0.9653386454183267,-0.9657370517928286,-0.9661354581673307,-0.9665338645418327,-0.9669322709163347,-0.9673306772908367,-0.9677290836653386,-0.9681274900398407,-0.9685258964143426,-0.9689243027888447,-0.9693227091633466,-0.9697211155378486,-0.9701195219123506,-0.9705179282868526,-0.9709163346613546,-0.9713147410358566,-0.9717131474103585,-0.9721115537848606,-0.9725099601593625,-0.9729083665338646,-0.9733067729083665,-0.9737051792828685,-0.9741035856573705,-0.9745019920318725,-0.9749003984063745,-0.9752988047808765,-0.9756972111553784,-0.9760956175298805,-0.9764940239043824,-0.9768924302788845,-0.9772908366533865,-0.9776892430278884,-0.9780876494023905,-0.9784860557768924,-0.9788844621513945,-0.9792828685258964,-0.9796812749003984,-0.9800796812749004,-0.9804780876494024,-0.9808764940239044,-0.9812749003984064,-0.9816733067729083,-0.9820717131474104,-0.9824701195219123,-0.9828685258964144,-0.9832669322709163,-0.9836653386454183,-0.9840637450199203,-0.9844621513944223,-0.9848605577689243,-0.9852589641434263,-0.9856573705179282,-0.9860557768924303,-0.9864541832669322,-0.9868525896414343,-0.9872509960159362,-0.9876494023904383,-0.9880478087649402,-0.9884462151394422,-0.9888446215139443,-0.9892430278884462,-0.9896414342629483,-0.9900398406374502,-0.9904382470119522,-0.9908366533864542,-0.9912350597609562,-0.9916334661354582,-0.9920318725099602,-0.9924302788844621,-0.9928286852589642,-0.9932270916334661,-0.9936254980079682,-0.9940239043824701,-0.9944223107569721,-0.9948207171314741,-0.9952191235059761,-0.9956175298804781,-0.9960159362549801,-0.996414342629482,-0.9968127490039841,-0.997211155378486,-0.9976095617529881,-0.99800796812749,-0.998406374501992,-0.998804780876494,-0.999203187250996,-0.999601593625498,-1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json new file mode 100644 index 000000000000..be07fa4a05c8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json @@ -0,0 +1 @@ +{"expected":[1.0475930126492587,1.0472042683349878,1.0468157929876352,1.0464275863331858,1.0460396480980116,1.045651978008868,1.045264575792896,1.0448774411776196,1.0444905738909456,1.0441039736611633,1.0437176402169426,1.0433315732873356,1.0429457726017728,1.0425602378900651,1.0421749688824014,1.041789965309348,1.04140522690185,1.0410207533912268,1.0406365445091748,1.040252599987765,1.039868919559443,1.039485502957028,1.0391023499137115,1.0387194601630576,1.0383368334390022,1.0379544694758516,1.0375723680082822,1.0371905287713403,1.0368089515004404,1.036427635931365,1.0360465818002647,1.035665788843656,1.0352852567984214,1.0349049854018093,1.0345249743914327,1.0341452235052673,1.0337657324816538,1.0333865010592946,1.0330075289772538,1.0326288159749573,1.0322503617921914,1.031872166169102,1.0314942288461946,1.0311165495643335,1.0307391280647402,1.030361964088994,1.0299850573790306,1.0296084076771415,1.029232014725974,1.0288558782685293,1.0284799980481631,1.0281043738085842,1.0277290052938537,1.0273538922483856,1.0269790344169443,1.0266044315446454,1.0262300833769549,1.0258559896596873,1.0254821501390066,1.0251085645614246,1.024735232673801,1.0243621542233419,1.0239893289575996,1.0236167566244727,1.023244436972204,1.0228723697493805,1.022500554704934,1.0221289915881382,1.0217576801486092,1.0213866201363064,1.0210158113015286,1.0206452533949162,1.0202749461674492,1.019904889370447,1.0195350827555676,1.0191655260748074,1.0187962190805,1.0184271615253155,1.0180583531622613,1.0176897937446796,1.0173214830262474,1.0169534207609767,1.0165856067032133,1.016218040607636,1.015850722229256,1.0154836513234171,1.0151168276457938,1.0147502509523918,1.0143839209995469,1.0140178375439244,1.013652000342519,1.013286409152653,1.0129210637319774,1.0125559638384702,1.0121911092304356,1.011826499666504,1.0114621349056319,1.0110980147070994,1.0107341388305124,1.0103705070357993,1.010007119083212,1.0096439747333252,1.0092810737470355,1.0089184158855604,1.0085560009104388,1.0081938285835295,1.007831898667011,1.0074702109233808,1.0071087651154558,1.0067475610063688,1.0063865983595723,1.0060258769388344,1.0056653965082387,1.0053051568321867,1.0049451576753927,1.004585398802887,1.0042258799800134,1.003866600972429,1.0035075615461044,1.0031487614673211,1.0027902005026743,1.002431878419069,1.0020737949837208,1.0017159499641568,1.001358343128212,1.0010009742440316,1.0006438430800684,1.0002869494050834,0.9999302929881454,0.9995738735986293,0.9992176910062168,0.9988617449808951,0.9985060352929567,0.9981505617129987,0.9977953240119218,0.9974403219609316,0.9970855553315355,0.9967310238955436,0.9963767274250684,0.9960226656925236,0.995668838470624,0.9953152455323845,0.9949618866511196,0.9946087616004441,0.9942558701542705,0.9939032120868104,0.9935507871725725,0.9931985951863631,0.9928466359032853,0.9924949090987379,0.9921434145484161,0.9917921520283096,0.9914411213147029,0.9910903221841749,0.9907397544135975,0.9903894177801363,0.9900393120612494,0.9896894370346866,0.9893397924784894,0.9889903781709906,0.9886411938908132,0.9882922394168704,0.987943514528365,0.9875950190047889,0.9872467526259219,0.9868987151718327,0.9865509064228768,0.9862033261596973,0.9858559741632233,0.9855088502146703,0.9851619540955391,0.9848152855876158,0.9844688444729707,0.9841226305339584,0.9837766435532168,0.9834308833136675,0.9830853495985136,0.9827400421912414,0.982394960875618,0.9820501054356919,0.9817054756557927,0.981361071320529,0.9810168922147902,0.9806729381237442,0.980329208832838,0.9799857041277965,0.9796424237946224,0.9792993676195962,0.9789565353892744,0.97861392689049,0.9782715419103523,0.9779293802362451,0.9775874416558282,0.9772457259570353,0.9769042329280734,0.976562962357424,0.9762219140338412,0.9758810877463514,0.9755404832842535,0.9752001004371177,0.9748599389947856,0.9745199987473692,0.9741802794852509,0.973840780999083,0.9735015030797869,0.9731624455185525,0.972823608106839,0.9724849906363727,0.9721465928991478,0.9718084146874253,0.9714704557937328,0.9711327160108643,0.970795195131879,0.9704578929501015,0.9701208092591214,0.969783943852792,0.9694472965252313,0.9691108670708202,0.9687746552842021,0.9684386609602842,0.9681028838942345,0.9677673238814831,0.9674319807177219,0.9670968541989027,0.9667619441212378,0.9664272502811997,0.9660927724755198,0.9657585105011893,0.965424464155457,0.9650906332358307,0.964757017540075,0.9644236168662127,0.964090431012523,0.9637574597775407,0.9634247029600583,0.9630921603591222,0.9627598317740348,0.9624277170043529,0.9620958158498873,0.9617641281107034,0.9614326535871189,0.9611013920797055,0.9607703433892867,0.9604395073169384,0.9601088836639885,0.9597784722320156,0.9594482728228496,0.9591182852385708,0.9587885092815093,0.9584589447542449,0.9581295914596066,0.9578004492006723,0.957471517780768,0.9571427970034679,0.9568142866725937,0.9564859865922144,0.9561578965666448,0.9558300164004475,0.9555023458984294,0.9551748848656442,0.9548476331073898,0.9545205904292094,0.95419375663689,0.9538671315364626,0.9535407149342019,0.9532145066366253,0.952888506450493,0.9525627141828074,0.9522371296408128,0.951911752631995,0.9515865829640807,0.9512616204450374,0.950936864883073,0.9506123160866348,0.95028797386441,0.9499638380253246,0.9496399083785434,0.9493161847334695,0.9489926668997435,0.9486693546872444,0.9483462479060876,0.9480233463666251,0.9477006498794458,0.947378158255374,0.9470558713054703,0.9467337888410293,0.9464119106735815,0.9460902366148913,0.9457687664769571,0.9454475000720111,0.9451264372125184,0.9448055777111778,0.9444849213809196,0.9441644680349064,0.943844217486533,0.9435241695494256,0.9432043240374407,0.9428846807646659,0.9425652395454188,0.9422460001942472,0.9419269625259277,0.9416081263554669,0.9412894914980993,0.9409710577692881,0.9406528249847247,0.9403347929603276,0.9400169615122429,0.9396993304568437,0.9393818996107294,0.9390646687907254,0.9387476378138826,0.9384308064974785,0.9381141746590144,0.9377977421162169,0.9374815086870366,0.9371654741896484,0.9368496384424503,0.9365340012640642,0.936218562473334,0.9359033218893271,0.935588279331332,0.9352734346188601,0.9349587875716433,0.9346443380096346,0.9343300857530089,0.9340160306221599,0.9337021724377024,0.9333885110204703,0.9330750461915167,0.9327617777721146,0.9324487055837543,0.9321358294481452,0.9318231491872144,0.9315106646231066,0.9311983755781834,0.9308862818750236,0.9305743833364224,0.930262679785391,0.9299511710451563,0.9296398569391616,0.9293287372910639,0.929017811924736,0.928707080664265,0.9283965433339515,0.9280861997583105,0.9277760497620702,0.9274660931701718,0.9271563298077694,0.9268467595002291,0.9265373820731296,0.9262281973522608,0.9259192051636245,0.9256104053334328,0.9253017976881094,0.9249933820542878,0.9246851582588115,0.9243771261287339,0.924069285491318,0.9237616361740354,0.9234541780045665,0.9231469108108002,0.9228398344208336,0.9225329486629711,0.922226253365725,0.9219197483578141,0.9216134334681643,0.9213073085259078,0.9210013733603829,0.920695627801134,0.92039007167791,0.920084704820666,0.919779527059561,0.9194745382249591,0.9191697381474281,0.91886512665774,0.9185607035868698,0.9182564687659964,0.9179524220265008,0.917648563199967,0.9173448921181809,0.9170414086131308,0.9167381125170061,0.9164350036621974,0.9161320818812971,0.9158293470070973,0.9155267988725905,0.9152244373109699,0.9149222621556277,0.9146202732401559,0.9143184703983454,0.9140168534641858,0.9137154222718653,0.9134141766557703,0.9131131164504848,0.9128122414907904,0.912511551611666,0.9122110466482874,0.9119107264360269,0.9116105908104533,0.9113106396073312,0.9110108726626207,0.9107112898124777,0.9104118908932529,0.9101126757414922,0.9098136441939351,0.9095147960875161,0.9092161312593633,0.908917649546798,0.9086193507873355,0.9083212348186835,0.9080233014787423,0.9077255506056051,0.9074279820375569,0.9071305956130741,0.9068333911708252,0.9065363685496695,0.9062395275886571,0.9059428681270292,0.9056463900042167,0.9053500930598408,0.9050539771337126,0.9047580420658322,0.904462287696389,0.9041667138657611,0.9038713204145156,0.9035761071834073,0.9032810740133793,0.9029862207455622,0.9026915472212742,0.9023970532820201,0.9021027387694923,0.9018086035255691,0.9015146473923151,0.9012208702119812,0.9009272718270034,0.9006338520800037,0.9003406108137888,0.9000475478713502,0.8997546630958643,0.8994619563306911,0.8991694274193753,0.898877076205645,0.8985849025334114,0.898292906246769,0.8980010871899954,0.8977094452075505,0.8974179801440767,0.897126691844398,0.8968355801535206,0.8965446449166316,0.8962538859791002,0.8959633031864754,0.8956728963844875,0.8953826654190472,0.8950926101362449,0.894802730382351,0.8945130260038152,0.894223496847267,0.8939341427595145,0.8936449635875442,0.893355959178522,0.8930671293797907,0.8927784740388721,0.8924899930034652,0.8922016861214461,0.8919135532408686,0.8916255942099627,0.8913378088771354,0.8910501970909699,0.890762758700225,0.890475493553836,0.8901884015009133,0.8899014823907423,0.8896147360727839,0.8893281623966732,0.88904176121222,0.8887555323694083,0.8884694757183959,0.8881835911095142,0.8878978783932681,0.8876123374203357,0.887326968041568,0.8870417701079882,0.8867567434707923,0.886471887981348,0.8861872034911955,0.8859026898520457,0.8856183469157816,0.8853341745344567,0.8850501725602954,0.8847663408456932,0.8844826792432148,0.8841991876055962,0.8839158657857425,0.883632713636728,0.8833497310117971,0.8830669177643627,0.8827842737480064,0.8825017988164786,0.8822194928236978,0.881937355623751,0.8816553870708921,0.881373587019543],"x":[0.8,0.800398406374502,0.8007968127490039,0.801195219123506,0.801593625498008,0.80199203187251,0.802390438247012,0.8027888446215139,0.803187250996016,0.8035856573705179,0.80398406374502,0.8043824701195219,0.8047808764940239,0.8051792828685259,0.8055776892430279,0.8059760956175299,0.8063745019920319,0.8067729083665338,0.8071713147410359,0.8075697211155378,0.8079681274900399,0.8083665338645418,0.8087649402390438,0.8091633466135458,0.8095617529880478,0.8099601593625498,0.8103585657370518,0.8107569721115537,0.8111553784860558,0.8115537848605577,0.8119521912350598,0.8123505976095617,0.8127490039840638,0.8131474103585657,0.8135458167330677,0.8139442231075698,0.8143426294820717,0.8147410358565738,0.8151394422310757,0.8155378486055777,0.8159362549800797,0.8163346613545817,0.8167330677290837,0.8171314741035857,0.8175298804780876,0.8179282868525897,0.8183266932270916,0.8187250996015937,0.8191235059760956,0.8195219123505976,0.8199203187250996,0.8203187250996016,0.8207171314741036,0.8211155378486056,0.8215139442231075,0.8219123505976096,0.8223107569721115,0.8227091633466136,0.8231075697211155,0.8235059760956175,0.8239043824701195,0.8243027888446215,0.8247011952191236,0.8250996015936255,0.8254980079681274,0.8258964143426295,0.8262948207171315,0.8266932270916335,0.8270916334661355,0.8274900398406374,0.8278884462151395,0.8282868525896414,0.8286852589641435,0.8290836653386454,0.8294820717131474,0.8298804780876494,0.8302788844621514,0.8306772908366534,0.8310756972111554,0.8314741035856573,0.8318725099601594,0.8322709163346613,0.8326693227091634,0.8330677290836653,0.8334661354581673,0.8338645418326693,0.8342629482071713,0.8346613545816733,0.8350597609561753,0.8354581673306772,0.8358565737051793,0.8362549800796812,0.8366533864541833,0.8370517928286852,0.8374501992031872,0.8378486055776893,0.8382470119521912,0.8386454183266933,0.8390438247011952,0.8394422310756973,0.8398406374501992,0.8402390438247012,0.8406374501992032,0.8410358565737052,0.8414342629482072,0.8418326693227092,0.8422310756972111,0.8426294820717132,0.8430278884462151,0.8434262948207172,0.8438247011952191,0.8442231075697211,0.8446215139442231,0.8450199203187251,0.8454183266932271,0.8458167330677291,0.846215139442231,0.8466135458167331,0.847011952191235,0.8474103585657371,0.847808764940239,0.848207171314741,0.848605577689243,0.849003984063745,0.8494023904382471,0.849800796812749,0.850199203187251,0.850597609561753,0.850996015936255,0.851394422310757,0.851792828685259,0.8521912350597609,0.852589641434263,0.8529880478087649,0.853386454183267,0.8537848605577689,0.8541832669322709,0.8545816733067729,0.8549800796812749,0.8553784860557769,0.8557768924302789,0.8561752988047808,0.8565737051792829,0.8569721115537848,0.8573705179282869,0.8577689243027888,0.8581673306772908,0.8585657370517928,0.8589641434262948,0.8593625498007968,0.8597609561752988,0.8601593625498007,0.8605577689243028,0.8609561752988047,0.8613545816733068,0.8617529880478088,0.8621513944223107,0.8625498007968128,0.8629482071713147,0.8633466135458168,0.8637450199203187,0.8641434262948208,0.8645418326693227,0.8649402390438247,0.8653386454183267,0.8657370517928287,0.8661354581673307,0.8665338645418327,0.8669322709163346,0.8673306772908367,0.8677290836653386,0.8681274900398407,0.8685258964143426,0.8689243027888446,0.8693227091633466,0.8697211155378486,0.8701195219123506,0.8705179282868526,0.8709163346613545,0.8713147410358566,0.8717131474103585,0.8721115537848606,0.8725099601593626,0.8729083665338645,0.8733067729083666,0.8737051792828685,0.8741035856573706,0.8745019920318725,0.8749003984063745,0.8752988047808765,0.8756972111553785,0.8760956175298805,0.8764940239043825,0.8768924302788844,0.8772908366533865,0.8776892430278884,0.8780876494023905,0.8784860557768924,0.8788844621513944,0.8792828685258964,0.8796812749003984,0.8800796812749004,0.8804780876494024,0.8808764940239043,0.8812749003984064,0.8816733067729083,0.8820717131474104,0.8824701195219123,0.8828685258964143,0.8832669322709163,0.8836653386454183,0.8840637450199204,0.8844621513944223,0.8848605577689242,0.8852589641434263,0.8856573705179283,0.8860557768924303,0.8864541832669323,0.8868525896414342,0.8872509960159363,0.8876494023904382,0.8880478087649403,0.8884462151394422,0.8888446215139443,0.8892430278884462,0.8896414342629482,0.8900398406374502,0.8904382470119522,0.8908366533864542,0.8912350597609562,0.8916334661354581,0.8920318725099602,0.8924302788844621,0.8928286852589642,0.8932270916334661,0.8936254980079681,0.8940239043824701,0.8944223107569721,0.8948207171314742,0.8952191235059761,0.895617529880478,0.8960159362549801,0.896414342629482,0.8968127490039841,0.8972111553784861,0.897609561752988,0.8980079681274901,0.898406374501992,0.8988047808764941,0.899203187250996,0.899601593625498,0.9,0.900398406374502,0.900796812749004,0.901195219123506,0.9015936254980079,0.90199203187251,0.9023904382470119,0.902788844621514,0.9031872509960159,0.9035856573705179,0.9039840637450199,0.9043824701195219,0.904780876494024,0.9051792828685259,0.9055776892430278,0.9059760956175299,0.9063745019920318,0.9067729083665339,0.9071713147410359,0.9075697211155378,0.9079681274900399,0.9083665338645418,0.9087649402390439,0.9091633466135458,0.9095617529880478,0.9099601593625498,0.9103585657370518,0.9107569721115538,0.9111553784860558,0.9115537848605577,0.9119521912350598,0.9123505976095617,0.9127490039840638,0.9131474103585657,0.9135458167330678,0.9139442231075697,0.9143426294820717,0.9147410358565737,0.9151394422310757,0.9155378486055777,0.9159362549800797,0.9163346613545816,0.9167330677290837,0.9171314741035856,0.9175298804780877,0.9179282868525896,0.9183266932270916,0.9187250996015937,0.9191235059760956,0.9195219123505977,0.9199203187250996,0.9203187250996016,0.9207171314741036,0.9211155378486056,0.9215139442231076,0.9219123505976096,0.9223107569721115,0.9227091633466136,0.9231075697211155,0.9235059760956176,0.9239043824701195,0.9243027888446215,0.9247011952191235,0.9250996015936255,0.9254980079681275,0.9258964143426295,0.9262948207171314,0.9266932270916335,0.9270916334661354,0.9274900398406375,0.9278884462151394,0.9282868525896414,0.9286852589641434,0.9290836653386454,0.9294820717131475,0.9298804780876494,0.9302788844621513,0.9306772908366534,0.9310756972111554,0.9314741035856574,0.9318725099601594,0.9322709163346613,0.9326693227091634,0.9330677290836653,0.9334661354581674,0.9338645418326693,0.9342629482071713,0.9346613545816733,0.9350597609561753,0.9354581673306773,0.9358565737051793,0.9362549800796812,0.9366533864541833,0.9370517928286852,0.9374501992031873,0.9378486055776892,0.9382470119521913,0.9386454183266932,0.9390438247011952,0.9394422310756972,0.9398406374501992,0.9402390438247012,0.9406374501992032,0.9410358565737051,0.9414342629482072,0.9418326693227091,0.9422310756972112,0.9426294820717132,0.9430278884462151,0.9434262948207172,0.9438247011952191,0.9442231075697212,0.9446215139442231,0.9450199203187251,0.9454183266932271,0.9458167330677291,0.9462151394422311,0.9466135458167331,0.947011952191235,0.9474103585657371,0.947808764940239,0.9482071713147411,0.948605577689243,0.949003984063745,0.949402390438247,0.949800796812749,0.950199203187251,0.950597609561753,0.9509960159362549,0.951394422310757,0.9517928286852589,0.952191235059761,0.952589641434263,0.9529880478087649,0.953386454183267,0.9537848605577689,0.954183266932271,0.9545816733067729,0.9549800796812749,0.9553784860557769,0.9557768924302789,0.9561752988047809,0.9565737051792829,0.9569721115537848,0.9573705179282869,0.9577689243027888,0.9581673306772909,0.9585657370517928,0.9589641434262948,0.9593625498007968,0.9597609561752988,0.9601593625498008,0.9605577689243028,0.9609561752988047,0.9613545816733068,0.9617529880478087,0.9621513944223108,0.9625498007968127,0.9629482071713148,0.9633466135458167,0.9637450199203187,0.9641434262948207,0.9645418326693227,0.9649402390438248,0.9653386454183267,0.9657370517928286,0.9661354581673307,0.9665338645418327,0.9669322709163347,0.9673306772908367,0.9677290836653386,0.9681274900398407,0.9685258964143426,0.9689243027888447,0.9693227091633466,0.9697211155378486,0.9701195219123506,0.9705179282868526,0.9709163346613546,0.9713147410358566,0.9717131474103585,0.9721115537848606,0.9725099601593625,0.9729083665338646,0.9733067729083665,0.9737051792828685,0.9741035856573705,0.9745019920318725,0.9749003984063745,0.9752988047808765,0.9756972111553784,0.9760956175298805,0.9764940239043824,0.9768924302788845,0.9772908366533865,0.9776892430278884,0.9780876494023905,0.9784860557768924,0.9788844621513945,0.9792828685258964,0.9796812749003984,0.9800796812749004,0.9804780876494024,0.9808764940239044,0.9812749003984064,0.9816733067729083,0.9820717131474104,0.9824701195219123,0.9828685258964144,0.9832669322709163,0.9836653386454183,0.9840637450199203,0.9844621513944223,0.9848605577689243,0.9852589641434263,0.9856573705179282,0.9860557768924303,0.9864541832669322,0.9868525896414343,0.9872509960159362,0.9876494023904383,0.9880478087649402,0.9884462151394422,0.9888446215139443,0.9892430278884462,0.9896414342629483,0.9900398406374502,0.9904382470119522,0.9908366533864542,0.9912350597609562,0.9916334661354582,0.9920318725099602,0.9924302788844621,0.9928286852589642,0.9932270916334661,0.9936254980079682,0.9940239043824701,0.9944223107569721,0.9948207171314741,0.9952191235059761,0.9956175298804781,0.9960159362549801,0.996414342629482,0.9968127490039841,0.997211155378486,0.9976095617529881,0.99800796812749,0.998406374501992,0.998804780876494,0.999203187250996,0.999601593625498,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json new file mode 100644 index 000000000000..b06547e25f72 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json @@ -0,0 +1 @@ +{"expected":[-1.0475930126492587,-1.050712682982123,-1.0538497262810698,-1.0570042855481372,-1.0601765054206598,-1.0633665321965549,-1.0665745138601146,-1.069800600108321,-1.0730449423776909,-1.076307693871669,-1.0795890095885794,-1.0828890463501508,-1.086207962830632,-1.0895459195865074,-1.0929030790868344,-1.0962796057442115,-1.0996756659464004,-1.1030914280886135,-1.1065270626064847,-1.1099827420097463,-1.1134586409166232,-1.1169549360889668,-1.1204718064681511,-1.1240094332117447,-1.127567999730982,-1.131147691729059,-1.1347486972402698,-1.1383712066700087,-1.142015412835662,-1.1456815110084138,-1.1493696989559892,-1.1530801769863606,-1.1568131479924475,-1.1605688174978306,-1.1643473937035136,-1.1681490875357614,-1.1719741126950416,-1.1758226857061038,-1.179695025969228,-1.183591355812675,-1.1875119005463703,-1.191456888516865,-1.1954265511636004,-1.1994211230765215,-1.203440842055075,-1.2074859491686345,-1.2115566888183915,-1.2156533088007604,-1.2197760603723382,-1.2239251983164667,-1.2281009810114456,-1.2323036705004458,-1.236533532563175,-1.2407908367893474,-1.2450758566540145,-1.249388869594812,-1.2537301570911854,-1.2581000047456496,-1.262498702367156,-1.2669265440566195,-1.2713838282946874,-1.275870858031811,-1.2803879407806988,-1.2849353887112231,-1.2895135187478657,-1.294122652669777,-1.2987631172135379,-1.3034352441787138,-1.3081393705362876,-1.3128758385400723,-1.3176449958411993,-1.3224471956057846,-1.327282796635882,-1.3321521634938303,-1.337055666630116,-1.3419936825148653,-1.3469665937730917,-1.3519747893238334,-1.3570186645233069,-1.3620986213122275,-1.3672150683674316,-1.3723684212579652,-1.377559102605784,-1.3827875422512423,-1.3880541774235347,-1.3933594529162727,-1.3987038212683809,-1.4040877429505136,-1.4095116865571848,-1.4149761290048337,-1.4204815557360393,-1.4260284609301177,-1.4316173477203453,-1.4372487284180535,-1.4429231247438616,-1.4486410680663229,-1.4544030996482675,-1.4602097709011446,-1.466061643647673,-1.4719592903931373,-1.4779032946056583,-1.4838942510058106,-1.489932765865954,-1.4960194573196761,-1.5021549556817557,-1.5083399037790812,-1.5145749572929765,-1.5208607851134044,-1.5271980697055525,-1.5335875074893164,-1.5400298092322338,-1.5465257004564403,-1.5530759218602537,-1.559681229755021,-1.5663423965178944,-1.573060211061235,-1.5798354793193878,-1.5866690247535986,-1.5935616888758881,-1.6005143317927486,-1.6075278327695617,-1.6146030908166964,-1.62174102529829,-1.6289425765647698,-1.6362087066102415,-1.6435403997559153,-1.6509386633608214,-1.6584045285611297,-1.6659390510394652,-1.6735433118256844,-1.6812184181306762,-1.6889655042148244,-1.6967857322928765,-1.704680293477065,-1.7126504087604317,-1.720697330042429,-1.728822341198995,-1.7370267591994346,-1.7453119352725794,-1.7536792561248595,-1.7621301452130778,-1.7706660640748606,-1.779288513719947,-1.7879990360856772,-1.796799215560272,-1.8056906805777135,-1.8146751052883139,-1.8237542113093035,-1.8329297695600908,-1.8422036021871446,-1.851577584583801,-1.8610536475106614,-1.8706337793226486,-1.8803200283092214,-1.8901145051547088,-1.9000193855262368,-1.9100369127972634,-1.9201694009153352,-1.9304192374233167,-1.9407888866440572,-1.9512808930392047,-1.9618978847537207,-1.972642577358542,-1.983517777804828,-1.9945263886043028,-2.0056714122513735,-2.016955955904001,-2.0283832363416896,-2.0399565852205135,-2.0516794546467865,-2.0635554230928377,-2.0755882016803837,-2.0877816408592564,-2.1001397375117006,-2.1126666425151903,-2.1253666687997366,-2.1382442999389815,-2.151304199318072,-2.164551219925413,-2.17799041481992,-2.1916270483304747,-2.2054666080499064,-2.2195148176920854,-2.233777650887757,-2.248261346002553,-2.26297242206943,-2.277917695937627,-2.2931043007513177,-2.308539705883625,-2.324231738465722,-2.3401886066666675,-2.3564189248976164,-2.3729317411345057,-2.389736566576514,-2.406843407884078,-2.4242628022704427,-2.4420058557552893,-2.4600842849286226,-2.478510462618673,-2.4972974679100637,-2.51645914101918,-2.536010143603957,-2.5559660251669443,-2.57634329630564,-2.597159509675202,-2.618433349658955,-2.6401847318952565,-2.6624349139900443,-2.6852066189583574,-2.7085241731924,-2.732413661057043,-2.756903098576883,-2.7820226291158683,-2.807804744478142,-2.834284535499068,-2.861499976976091,-2.8894922527458418,-2.9183061278925857,-2.9479903765334856,-2.9785982754462124,-3.01018817608706,-3.042824170429464,-3.0765768697167064,-3.1115243199157074,-3.1477530837184227,-3.1853595268280137,-3.224451356635561,-3.2651494751510466,-3.3075902264993444,-3.3519281443061937,-3.398339338633899,-3.4470257098804122,-3.498220244433146,-3.5521937434361215,-3.6092634768305305,-3.6698044640515506,-3.7342644002456393,-3.8031837400156534,-3.8772232370258037,-3.957202529247597,-4.044155553366893,-4.139412445542508,-4.244724741243645,-4.362464626815531,-4.4959579411973225,-4.650075616362258,-4.832369243581718,-5.0554899416852015,-5.343154238334272,-5.748606648860114,-6.441746210638492,null,6.441746210638492,5.748606648860114,5.343154238334272,5.0554899416852015,4.832369243581718,4.650075616362258,4.4959579411973225,4.362464626815531,4.244724741243645,4.139412445542508,4.044155553366893,3.957202529247597,3.8772232370258037,3.8031837400156534,3.7342644002456393,3.6698044640515506,3.6092634768305305,3.5521937434361215,3.498220244433146,3.4470257098804122,3.398339338633899,3.3519281443061937,3.3075902264993444,3.2651494751510466,3.224451356635561,3.1853595268280137,3.1477530837184227,3.1115243199157074,3.0765768697167064,3.042824170429464,3.01018817608706,2.9785982754462124,2.9479903765334856,2.9183061278925857,2.8894922527458418,2.861499976976091,2.834284535499068,2.807804744478142,2.7820226291158683,2.756903098576883,2.732413661057043,2.7085241731924,2.6852066189583574,2.6624349139900443,2.6401847318952565,2.618433349658955,2.597159509675202,2.57634329630564,2.5559660251669443,2.536010143603957,2.51645914101918,2.4972974679100637,2.478510462618673,2.4600842849286226,2.4420058557552893,2.4242628022704427,2.406843407884078,2.389736566576514,2.3729317411345057,2.3564189248976164,2.3401886066666675,2.324231738465722,2.308539705883625,2.2931043007513177,2.277917695937627,2.26297242206943,2.248261346002553,2.233777650887757,2.2195148176920854,2.2054666080499064,2.1916270483304747,2.17799041481992,2.164551219925413,2.151304199318072,2.1382442999389815,2.1253666687997366,2.1126666425151903,2.1001397375117006,2.0877816408592564,2.0755882016803837,2.0635554230928377,2.0516794546467865,2.0399565852205135,2.0283832363416896,2.016955955904001,2.0056714122513735,1.9945263886043028,1.983517777804828,1.972642577358542,1.9618978847537207,1.9512808930392047,1.9407888866440572,1.9304192374233167,1.9201694009153352,1.9100369127972634,1.9000193855262368,1.8901145051547088,1.8803200283092214,1.8706337793226486,1.8610536475106614,1.851577584583801,1.8422036021871446,1.8329297695600908,1.8237542113093035,1.8146751052883139,1.8056906805777135,1.796799215560272,1.7879990360856772,1.779288513719947,1.7706660640748606,1.7621301452130778,1.7536792561248595,1.7453119352725794,1.7370267591994346,1.728822341198995,1.720697330042429,1.7126504087604317,1.704680293477065,1.6967857322928765,1.6889655042148244,1.6812184181306762,1.6735433118256844,1.6659390510394652,1.6584045285611297,1.6509386633608214,1.6435403997559153,1.6362087066102415,1.6289425765647698,1.62174102529829,1.6146030908166964,1.6075278327695617,1.6005143317927486,1.5935616888758881,1.5866690247535986,1.5798354793193878,1.573060211061235,1.5663423965178944,1.559681229755021,1.5530759218602537,1.5465257004564403,1.5400298092322338,1.5335875074893164,1.5271980697055525,1.5208607851134044,1.5145749572929765,1.5083399037790812,1.5021549556817557,1.4960194573196761,1.489932765865954,1.4838942510058106,1.4779032946056583,1.4719592903931373,1.466061643647673,1.4602097709011446,1.4544030996482675,1.4486410680663229,1.4429231247438616,1.4372487284180535,1.4316173477203453,1.4260284609301177,1.4204815557360393,1.4149761290048337,1.4095116865571848,1.4040877429505136,1.3987038212683809,1.3933594529162727,1.3880541774235347,1.3827875422512423,1.377559102605784,1.3723684212579652,1.3672150683674316,1.3620986213122275,1.3570186645233069,1.3519747893238334,1.3469665937730917,1.3419936825148653,1.337055666630116,1.3321521634938303,1.327282796635882,1.3224471956057846,1.3176449958411993,1.3128758385400723,1.3081393705362876,1.3034352441787138,1.2987631172135379,1.294122652669777,1.2895135187478657,1.2849353887112231,1.2803879407806988,1.275870858031811,1.2713838282946874,1.2669265440566195,1.262498702367156,1.2581000047456496,1.2537301570911854,1.249388869594812,1.2450758566540145,1.2407908367893474,1.236533532563175,1.2323036705004458,1.2281009810114456,1.2239251983164667,1.2197760603723382,1.2156533088007604,1.2115566888183915,1.2074859491686345,1.203440842055075,1.1994211230765215,1.1954265511636004,1.191456888516865,1.1875119005463703,1.183591355812675,1.179695025969228,1.1758226857061038,1.1719741126950416,1.1681490875357614,1.1643473937035136,1.1605688174978306,1.1568131479924475,1.1530801769863606,1.1493696989559892,1.1456815110084138,1.142015412835662,1.1383712066700087,1.1347486972402698,1.131147691729059,1.127567999730982,1.1240094332117447,1.1204718064681511,1.1169549360889668,1.1134586409166232,1.1099827420097463,1.1065270626064847,1.1030914280886135,1.0996756659464004,1.0962796057442115,1.0929030790868344,1.0895459195865074,1.086207962830632,1.0828890463501508,1.0795890095885794,1.076307693871669,1.0730449423776909,1.069800600108321,1.0665745138601146,1.0633665321965549,1.0601765054206598,1.0570042855481372,1.0538497262810698,1.050712682982123,1.0475930126492587],"x":[-0.8,-0.796812749003984,-0.7936254980079681,-0.7904382470119522,-0.7872509960159363,-0.7840637450199203,-0.7808764940239044,-0.7776892430278884,-0.7745019920318725,-0.7713147410358566,-0.7681274900398406,-0.7649402390438247,-0.7617529880478088,-0.7585657370517929,-0.7553784860557768,-0.7521912350597609,-0.749003984063745,-0.7458167330677291,-0.7426294820717132,-0.7394422310756972,-0.7362549800796813,-0.7330677290836654,-0.7298804780876494,-0.7266932270916334,-0.7235059760956175,-0.7203187250996016,-0.7171314741035857,-0.7139442231075698,-0.7107569721115538,-0.7075697211155378,-0.7043824701195219,-0.701195219123506,-0.69800796812749,-0.6948207171314741,-0.6916334661354582,-0.6884462151394423,-0.6852589641434262,-0.6820717131474103,-0.6788844621513944,-0.6756972111553785,-0.6725099601593626,-0.6693227091633466,-0.6661354581673307,-0.6629482071713148,-0.6597609561752988,-0.6565737051792828,-0.6533864541832669,-0.650199203187251,-0.6470119521912351,-0.6438247011952192,-0.6406374501992032,-0.6374501992031872,-0.6342629482071713,-0.6310756972111554,-0.6278884462151394,-0.6247011952191235,-0.6215139442231076,-0.6183266932270917,-0.6151394422310758,-0.6119521912350597,-0.6087649402390438,-0.6055776892430279,-0.602390438247012,-0.599203187250996,-0.5960159362549801,-0.5928286852589641,-0.5896414342629482,-0.5864541832669322,-0.5832669322709163,-0.5800796812749004,-0.5768924302788845,-0.5737051792828686,-0.5705179282868525,-0.5673306772908366,-0.5641434262948207,-0.5609561752988048,-0.5577689243027888,-0.5545816733067729,-0.551394422310757,-0.5482071713147411,-0.5450199203187251,-0.5418326693227091,-0.5386454183266932,-0.5354581673306773,-0.5322709163346614,-0.5290836653386454,-0.5258964143426295,-0.5227091633466135,-0.5195219123505976,-0.5163346613545817,-0.5131474103585657,-0.5099601593625498,-0.5067729083665339,-0.503585657370518,-0.500398406374502,-0.49721115537848604,-0.4940239043824701,-0.49083665338645416,-0.48764940239043825,-0.48446215139442234,-0.48127490039840637,-0.47808764940239046,-0.4749003984063745,-0.4717131474103586,-0.4685258964143426,-0.4653386454183267,-0.46215139442231074,-0.4589641434262948,-0.45577689243027886,-0.45258964143426295,-0.44940239043824703,-0.44621513944223107,-0.44302788844621516,-0.4398406374501992,-0.4366533864541833,-0.4334661354581673,-0.4302788844621514,-0.42709163346613543,-0.4239043824701195,-0.4207171314741036,-0.41752988047808764,-0.41434262948207173,-0.41115537848605577,-0.40796812749003986,-0.4047808764940239,-0.401593625498008,-0.398406374501992,-0.3952191235059761,-0.39203187250996013,-0.3888446215139442,-0.3856573705179283,-0.38247011952191234,-0.37928286852589643,-0.37609561752988047,-0.37290836653386455,-0.3697211155378486,-0.3665338645418327,-0.3633466135458167,-0.3601593625498008,-0.3569721115537849,-0.3537848605577689,-0.350597609561753,-0.34741035856573704,-0.34422310756972113,-0.34103585657370517,-0.33784860557768925,-0.3346613545816733,-0.3314741035856574,-0.3282868525896414,-0.3250996015936255,-0.3219123505976096,-0.3187250996015936,-0.3155378486055777,-0.31235059760956174,-0.30916334661354583,-0.30597609561752986,-0.30278884462151395,-0.299601593625498,-0.2964143426294821,-0.2932270916334661,-0.2900398406374502,-0.2868525896414343,-0.2836653386454183,-0.2804780876494024,-0.27729083665338644,-0.27410358565737053,-0.27091633466135456,-0.26772908366533865,-0.2645418326693227,-0.2613545816733068,-0.25816733067729086,-0.2549800796812749,-0.251792828685259,-0.24860557768924302,-0.24541832669322708,-0.24223107569721117,-0.23904382470119523,-0.2358565737051793,-0.23266932270916335,-0.2294820717131474,-0.22629482071713147,-0.22310756972111553,-0.2199203187250996,-0.21673306772908366,-0.21354581673306772,-0.2103585657370518,-0.20717131474103587,-0.20398406374501993,-0.200796812749004,-0.19760956175298805,-0.1944223107569721,-0.19123505976095617,-0.18804780876494023,-0.1848605577689243,-0.18167330677290836,-0.17848605577689244,-0.1752988047808765,-0.17211155378486057,-0.16892430278884463,-0.1657370517928287,-0.16254980079681275,-0.1593625498007968,-0.15617529880478087,-0.15298804780876493,-0.149800796812749,-0.14661354581673305,-0.14342629482071714,-0.1402390438247012,-0.13705179282868526,-0.13386454183266933,-0.1306772908366534,-0.12749003984063745,-0.12430278884462151,-0.12111553784860558,-0.11792828685258964,-0.1147410358565737,-0.11155378486055777,-0.10836653386454183,-0.1051792828685259,-0.10199203187250996,-0.09880478087649402,-0.09561752988047809,-0.09243027888446215,-0.08924302788844622,-0.08605577689243028,-0.08286852589641434,-0.0796812749003984,-0.07649402390438247,-0.07330677290836653,-0.0701195219123506,-0.06693227091633466,-0.06374501992031872,-0.06055776892430279,-0.05737051792828685,-0.054183266932270914,-0.05099601593625498,-0.04780876494023904,-0.04462151394422311,-0.04143426294820717,-0.03824701195219123,-0.0350597609561753,-0.03187250996015936,-0.028685258964143426,-0.02549800796812749,-0.022310756972111555,-0.019123505976095617,-0.01593625498007968,-0.012749003984063745,-0.009561752988047808,-0.006374501992031873,-0.0031872509960159364,0.0,0.0031872509960159364,0.006374501992031873,0.009561752988047808,0.012749003984063745,0.01593625498007968,0.019123505976095617,0.022310756972111555,0.02549800796812749,0.028685258964143426,0.03187250996015936,0.0350597609561753,0.03824701195219123,0.04143426294820717,0.04462151394422311,0.04780876494023904,0.05099601593625498,0.054183266932270914,0.05737051792828685,0.06055776892430279,0.06374501992031872,0.06693227091633466,0.0701195219123506,0.07330677290836653,0.07649402390438247,0.0796812749003984,0.08286852589641434,0.08605577689243028,0.08924302788844622,0.09243027888446215,0.09561752988047809,0.09880478087649402,0.10199203187250996,0.1051792828685259,0.10836653386454183,0.11155378486055777,0.1147410358565737,0.11792828685258964,0.12111553784860558,0.12430278884462151,0.12749003984063745,0.1306772908366534,0.13386454183266933,0.13705179282868526,0.1402390438247012,0.14342629482071714,0.14661354581673305,0.149800796812749,0.15298804780876493,0.15617529880478087,0.1593625498007968,0.16254980079681275,0.1657370517928287,0.16892430278884463,0.17211155378486057,0.1752988047808765,0.17848605577689244,0.18167330677290836,0.1848605577689243,0.18804780876494023,0.19123505976095617,0.1944223107569721,0.19760956175298805,0.200796812749004,0.20398406374501993,0.20717131474103587,0.2103585657370518,0.21354581673306772,0.21673306772908366,0.2199203187250996,0.22310756972111553,0.22629482071713147,0.2294820717131474,0.23266932270916335,0.2358565737051793,0.23904382470119523,0.24223107569721117,0.24541832669322708,0.24860557768924302,0.251792828685259,0.2549800796812749,0.25816733067729086,0.2613545816733068,0.2645418326693227,0.26772908366533865,0.27091633466135456,0.27410358565737053,0.27729083665338644,0.2804780876494024,0.2836653386454183,0.2868525896414343,0.2900398406374502,0.2932270916334661,0.2964143426294821,0.299601593625498,0.30278884462151395,0.30597609561752986,0.30916334661354583,0.31235059760956174,0.3155378486055777,0.3187250996015936,0.3219123505976096,0.3250996015936255,0.3282868525896414,0.3314741035856574,0.3346613545816733,0.33784860557768925,0.34103585657370517,0.34422310756972113,0.34741035856573704,0.350597609561753,0.3537848605577689,0.3569721115537849,0.3601593625498008,0.3633466135458167,0.3665338645418327,0.3697211155378486,0.37290836653386455,0.37609561752988047,0.37928286852589643,0.38247011952191234,0.3856573705179283,0.3888446215139442,0.39203187250996013,0.3952191235059761,0.398406374501992,0.401593625498008,0.4047808764940239,0.40796812749003986,0.41115537848605577,0.41434262948207173,0.41752988047808764,0.4207171314741036,0.4239043824701195,0.42709163346613543,0.4302788844621514,0.4334661354581673,0.4366533864541833,0.4398406374501992,0.44302788844621516,0.44621513944223107,0.44940239043824703,0.45258964143426295,0.45577689243027886,0.4589641434262948,0.46215139442231074,0.4653386454183267,0.4685258964143426,0.4717131474103586,0.4749003984063745,0.47808764940239046,0.48127490039840637,0.48446215139442234,0.48764940239043825,0.49083665338645416,0.4940239043824701,0.49721115537848604,0.500398406374502,0.503585657370518,0.5067729083665339,0.5099601593625498,0.5131474103585657,0.5163346613545817,0.5195219123505976,0.5227091633466135,0.5258964143426295,0.5290836653386454,0.5322709163346614,0.5354581673306773,0.5386454183266932,0.5418326693227091,0.5450199203187251,0.5482071713147411,0.551394422310757,0.5545816733067729,0.5577689243027888,0.5609561752988048,0.5641434262948207,0.5673306772908366,0.5705179282868525,0.5737051792828686,0.5768924302788845,0.5800796812749004,0.5832669322709163,0.5864541832669322,0.5896414342629482,0.5928286852589641,0.5960159362549801,0.599203187250996,0.602390438247012,0.6055776892430279,0.6087649402390438,0.6119521912350597,0.6151394422310758,0.6183266932270917,0.6215139442231076,0.6247011952191235,0.6278884462151394,0.6310756972111554,0.6342629482071713,0.6374501992031872,0.6406374501992032,0.6438247011952192,0.6470119521912351,0.650199203187251,0.6533864541832669,0.6565737051792828,0.6597609561752988,0.6629482071713148,0.6661354581673307,0.6693227091633466,0.6725099601593626,0.6756972111553785,0.6788844621513944,0.6820717131474103,0.6852589641434262,0.6884462151394423,0.6916334661354582,0.6948207171314741,0.69800796812749,0.701195219123506,0.7043824701195219,0.7075697211155378,0.7107569721115538,0.7139442231075698,0.7171314741035857,0.7203187250996016,0.7235059760956175,0.7266932270916334,0.7298804780876494,0.7330677290836654,0.7362549800796813,0.7394422310756972,0.7426294820717132,0.7458167330677291,0.749003984063745,0.7521912350597609,0.7553784860557768,0.7585657370517929,0.7617529880478088,0.7649402390438247,0.7681274900398406,0.7713147410358566,0.7745019920318725,0.7776892430278884,0.7808764940239044,0.7840637450199203,0.7872509960159363,0.7904382470119522,0.7936254980079681,0.796812749003984,0.8]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json new file mode 100644 index 000000000000..7b46592775a9 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json @@ -0,0 +1 @@ +{"expected":[-691.4686750787736,-691.4706690973605,-691.4726671000032,-691.4746691026537,-691.4766751213604,-691.4786851722681,-691.4806992716194,-691.4827174357553,-691.4847396811155,-691.4867660242401,-691.4887964817698,-691.4908310704468,-691.4928698071158,-691.4949127087247,-691.4969597923252,-691.4990110750747,-691.5010665742357,-691.5031263071774,-691.5051902913768,-691.5072585444194,-691.5093310839998,-691.511407927923,-691.513489094105,-691.5155746005743,-691.5176644654717,-691.5197587070529,-691.5218573436877,-691.5239603938622,-691.5260678761796,-691.5281798093603,-691.5302962122441,-691.5324171037907,-691.5345425030804,-691.5366724293154,-691.5388069018212,-691.540945940047,-691.5430895635672,-691.5452377920823,-691.5473906454201,-691.5495481435368,-691.5517103065177,-691.5538771545793,-691.5560487080692,-691.558224987468,-691.5604060133904,-691.5625918065864,-691.5647823879422,-691.5669777784814,-691.5691779993667,-691.5713830719006,-691.573593017527,-691.5758078578318,-691.5780276145454,-691.5802523095426,-691.582481964845,-691.5847166026214,-691.5869562451896,-691.5892009150182,-691.5914506347268,-691.5937054270884,-691.5959653150302,-691.5982303216352,-691.600500470144,-691.602775783955,-691.6050562866277,-691.6073420018823,-691.6096329536025,-691.6119291658364,-691.6142306627981,-691.6165374688693,-691.6188496086008,-691.6211671067142,-691.6234899881033,-691.6258182778357,-691.6281520011546,-691.6304911834802,-691.6328358504119,-691.6351860277291,-691.6375417413938,-691.6399030175514,-691.6422698825336,-691.6446423628589,-691.6470204852355,-691.6494042765623,-691.651793763931,-691.6541889746281,-691.6565899361367,-691.6589966761383,-691.6614092225144,-691.6638276033493,-691.6662518469313,-691.668681981755,-691.671118036523,-691.6735600401487,-691.6760080217573,-691.6784620106886,-691.680922036499,-691.6833881289638,-691.6858603180784,-691.6883386340621,-691.6908231073587,-691.69331376864,-691.6958106488073,-691.698313778994,-691.7008231905678,-691.7033389151333,-691.7058609845341,-691.7083894308554,-691.7109242864262,-691.7134655838225,-691.7160133558688,-691.7185676356411,-691.7211284564698,-691.723695851942,-691.7262698559039,-691.728850502464,-691.7314378259953,-691.7340318611385,-691.7366326428047,-691.7392402061777,-691.7418545867174,-691.7444758201627,-691.7471039425344,-691.7497389901375,-691.7523809995653,-691.7550300077016,-691.7576860517244,-691.7603491691083,-691.7630193976283,-691.765696775363,-691.7683813406976,-691.7710731323269,-691.7737721892595,-691.7764785508205,-691.779192256655,-691.7819133467323,-691.7846418613481,-691.7873778411295,-691.7901213270374,-691.7928723603712,-691.7956309827722,-691.7983972362266,-691.8011711630708,-691.8039528059937,-691.8067422080422,-691.8095394126241,-691.8123444635122,-691.8151574048491,-691.8179782811508,-691.820807137311,-691.8236440186058,-691.8264889706975,-691.829342039639,-691.8322032718789,-691.8350727142656,-691.8379504140516,-691.8408364188989,-691.8437307768833,-691.8466335364989,-691.8495447466638,-691.8524644567243,-691.8553927164604,-691.8583295760905,-691.8612750862766,-691.8642292981302,-691.8671922632168,-691.8701640335617,-691.8731446616551,-691.8761342004586,-691.8791327034098,-691.8821402244283,-691.885156817922,-691.8881825387926,-691.8912174424416,-691.8942615847764,-691.8973150222164,-691.9003778116999,-691.9034500106894,-691.9065316771791,-691.9096228697009,-691.9127236473308,-691.9158340696966,-691.918954196984,-691.9220840899438,-691.925223809899,-691.9283734187521,-691.9315329789923,-691.9347025537032,-691.9378822065698,-691.9410720018868,-691.9442720045661,-691.9474822801446,-691.9507028947926,-691.9539339153216,-691.957175409193,-691.9604274445263,-691.9636900901077,-691.9669634153989,-691.970247490546,-691.9735423863883,-691.9768481744679,-691.9801649270387,-691.9834927170758,-691.9868316182854,-691.9901817051143,-691.9935430527603,-691.9969157371818,-692.0002998351085,-692.0036954240518,-692.0071025823152,-692.0105213890052,-692.013951924043,-692.0173942681745,-692.0208485029826,-692.0243147108988,-692.0277929752144,-692.031283380093,-692.0347860105826,-692.0383009526281,-692.0418282930835,-692.0453681197258,-692.0489205212668,-692.0524855873675,-692.0560634086511,-692.0596540767172,-692.0632576841552,-692.0668743245598,-692.0705040925442,-692.0741470837561,-692.077803394892,-692.0814731237134,-692.0851563690617,-692.0888532308744,-692.0925638102018,-692.0962882092231,-692.1000265312636,-692.1037788808114,-692.1075453635357,-692.1113260863038,-692.1151211572001,-692.1189306855439,-692.122754781909,-692.1265935581421,-692.1304471273836,-692.1343156040864,-692.1381991040371,-692.1420977443764,-692.1460116436206,-692.149940921683,-692.1538856998959,-692.1578461010332,-692.1618222493336,-692.1658142705231,-692.16982229184,-692.1738464420584,-692.1778868515134,-692.1819436521265,-692.1860169774308,-692.1901069625984,-692.1942137444663,-692.1983374615648,-692.2024782541448,-692.2066362642066,-692.2108116355296,-692.2150045137014,-692.2192150461487,-692.2234433821685,-692.2276896729595,-692.2319540716546,-692.2362367333545,-692.2405378151611,-692.2448574762119,-692.249195877716,-692.2535531829897,-692.2579295574933,-692.2623251688694,-692.2667401869807,-692.2711747839498,-692.2756291341996,-692.280103414494,-692.2845978039804,-692.2891124842326,-692.2936476392948,-692.2982034557265,-692.3027801226488,-692.3073778317912,-692.3119967775405,-692.3166371569888,-692.3212991699855,-692.3259830191878,-692.3306889101141,-692.3354170511977,-692.3401676538431,-692.3449409324813,-692.3497371046294,-692.3545563909488,-692.3593990153068,-692.3642652048391,-692.3691551900133,-692.3740692046945,-692.3790074862127,-692.3839702754311,-692.3889578168173,-692.3939703585147,-692.3990081524173,-692.4040714542451,-692.4091605236225,-692.414275624158,-692.4194170235257,-692.4245849935501,-692.4297798102917,-692.435001754136,-692.4402511098838,-692.4455281668448,-692.4508332189332,-692.4561665647658,-692.4615285077629,-692.4669193562519,-692.4723394235738,-692.4777890281922,-692.4832684938061,-692.4887781494647,-692.4943183296863,-692.4998893745799,-692.505491629971,-692.5111254475299,-692.5167911849045,-692.5224892058561,-692.5282198804002,-692.5339835849502,-692.5397807024658,-692.545611622606,-692.5514767418856,-692.5573764638381,-692.5633111991812,-692.5692813659887,-692.5752873898679,-692.5813297041406,-692.5874087500314,-692.593524976861,-692.5996788422453,-692.6058708123007,-692.6121013618565,-692.6183709746728,-692.6246801436662,-692.6310293711425,-692.6374191690363,-692.643850059159,-692.6503225734543,-692.6568372542624,-692.6633946545927,-692.6699953384053,-692.6766398809024,-692.6833288688285,-692.6900629007823,-692.6968425875369,-692.7036685523734,-692.7105414314241,-692.7174618740282,-692.7244305431005,-692.731448115512,-692.7385152824843,-692.7456327499989,-692.7528012392195,-692.7600214869314,-692.7672942459949,-692.7746202858175,-692.7820003928417,-692.7894353710517,-692.7969260424992,-692.8044732478487,-692.8120778469436,-692.8197407193943,-692.8274627651889,-692.8352449053269,-692.8430880824792,-692.8509932616726,-692.858961431003,-692.8669936023764,-692.87509081228,-692.8832541225845,-692.891484621381,-692.89978342385,-692.908151673169,-692.9165905414573,-692.9251012307616,-692.9336849740831,-692.9423430364499,-692.9510767160357,-692.9598873453282,-692.9687762923488,-692.9777449619278,-692.9867947970365,-692.9959272801811,-693.0051439348596,-693.0144463270875,-693.0238360669948,-693.0333148104983,-693.0428842610547,-693.0525461714979,-693.0623023459653,-693.0721546419211,-693.0821049722772,-693.0921553076237,-693.1023076785702,-693.1125641782094,-693.1229269647058,-693.1333982640227,-693.143980372791,-693.1546756613336,-693.1654865768511,-693.1764156467837,-693.1874654823573,-693.1986387823287,-693.2099383369417,-693.2213670321096,-693.2329278538397,-693.2446238929161,-693.25645834986,-693.2684345401868,-693.2805558999816,-693.2928259918176,-693.3052485110414,-693.317827292454,-693.3305663174168,-693.3434697214168,-693.3565418021263,-693.3697870279957,-693.3832100474233,-693.3968156985499,-693.4106090197271,-693.4245952607198,-693.4387798947017,-693.4531686311144,-693.4677674294657,-693.482582514149,-693.4976203903783,-693.5128878613389,-693.5283920466682,-693.5441404023912,-693.5601407424525,-693.5764012619969,-693.5929305625766,-693.6097376794748,-693.6268321113672,-693.6442238525606,-693.6619234280873,-693.6799419319601,-693.6982910689381,-693.7169832001962,-693.7360313933455,-693.7554494773096,-693.7752521026372,-693.7954548079057,-693.8160740929741,-693.8371274999467,-693.8586337028459,-693.8806126071395,-693.9030854604562,-693.9260749760276,-693.9496054706582,-693.973703019322,-693.9983956288514,-694.0237134336178,-694.0496889166337,-694.0763571601454,-694.1037561305648,-694.1319270035474,-694.1609145362021,-694.1907674948776,-694.2215391487906,-694.2532878420448,-694.2860776594698,-694.3199792053754,-694.3550705190045,-694.3914381565351,-694.4291784773669,-694.4683991827972,-694.5092211689507,-694.5517807742754,-694.5962325269252,-694.6427525316943,-694.6915426839114,-694.7428359650884,-694.7969031716804,-694.8540615691151,-694.9146861724756,-694.9792246726965,-695.0482175202787,-695.1223254648501,-695.2023681403441,-695.2893794793034,-695.3846896134714,-695.4900500733514,-695.6078330392857,-695.7413643422674,-695.895514902571,-696.0778362920317,-696.3009795923462,-696.5886612464652,-696.9941255179085,-697.6872701884779,-709.889355822726],"x":[-1.0e-300,-9.980079681474104e-301,-9.960159362948208e-301,-9.94023904442231e-301,-9.920318725896415e-301,-9.900398407370519e-301,-9.880478088844623e-301,-9.860557770318725e-301,-9.840637451792829e-301,-9.820717133266933e-301,-9.800796814741037e-301,-9.78087649621514e-301,-9.760956177689243e-301,-9.741035859163347e-301,-9.721115540637451e-301,-9.701195222111553e-301,-9.681274903585657e-301,-9.661354585059761e-301,-9.641434266533865e-301,-9.621513948007968e-301,-9.601593629482072e-301,-9.581673310956176e-301,-9.56175299243028e-301,-9.541832673904382e-301,-9.521912355378486e-301,-9.50199203685259e-301,-9.482071718326694e-301,-9.462151399800796e-301,-9.4422310812749e-301,-9.422310762749004e-301,-9.402390444223108e-301,-9.38247012569721e-301,-9.362549807171315e-301,-9.342629488645419e-301,-9.322709170119523e-301,-9.302788851593625e-301,-9.282868533067729e-301,-9.262948214541833e-301,-9.243027896015937e-301,-9.22310757749004e-301,-9.203187258964143e-301,-9.183266940438247e-301,-9.163346621912351e-301,-9.143426303386454e-301,-9.123505984860558e-301,-9.103585666334662e-301,-9.083665347808766e-301,-9.063745029282868e-301,-9.043824710756972e-301,-9.023904392231076e-301,-9.00398407370518e-301,-8.984063755179284e-301,-8.964143436653386e-301,-8.94422311812749e-301,-8.924302799601594e-301,-8.904382481075698e-301,-8.8844621625498e-301,-8.864541844023905e-301,-8.844621525498009e-301,-8.824701206972113e-301,-8.804780888446215e-301,-8.784860569920319e-301,-8.764940251394423e-301,-8.745019932868527e-301,-8.725099614342629e-301,-8.705179295816733e-301,-8.685258977290837e-301,-8.665338658764941e-301,-8.645418340239043e-301,-8.625498021713147e-301,-8.605577703187251e-301,-8.585657384661355e-301,-8.565737066135458e-301,-8.545816747609562e-301,-8.525896429083666e-301,-8.50597611055777e-301,-8.486055792031872e-301,-8.466135473505976e-301,-8.44621515498008e-301,-8.426294836454184e-301,-8.406374517928286e-301,-8.38645419940239e-301,-8.366533880876494e-301,-8.346613562350598e-301,-8.3266932438247e-301,-8.306772925298805e-301,-8.286852606772909e-301,-8.266932288247013e-301,-8.247011969721115e-301,-8.227091651195219e-301,-8.207171332669323e-301,-8.187251014143427e-301,-8.16733069561753e-301,-8.147410377091633e-301,-8.127490058565737e-301,-8.107569740039841e-301,-8.087649421513944e-301,-8.067729102988048e-301,-8.047808784462152e-301,-8.027888465936256e-301,-8.00796814741036e-301,-7.988047828884462e-301,-7.968127510358566e-301,-7.94820719183267e-301,-7.928286873306774e-301,-7.908366554780876e-301,-7.88844623625498e-301,-7.868525917729084e-301,-7.848605599203188e-301,-7.82868528067729e-301,-7.808764962151395e-301,-7.788844643625499e-301,-7.768924325099603e-301,-7.749004006573705e-301,-7.729083688047809e-301,-7.709163369521913e-301,-7.689243050996017e-301,-7.669322732470119e-301,-7.649402413944223e-301,-7.629482095418327e-301,-7.609561776892431e-301,-7.589641458366533e-301,-7.569721139840637e-301,-7.549800821314741e-301,-7.529880502788845e-301,-7.509960184262948e-301,-7.490039865737052e-301,-7.470119547211156e-301,-7.450199228685259e-301,-7.430278910159363e-301,-7.410358591633466e-301,-7.39043827310757e-301,-7.370517954581673e-301,-7.350597636055777e-301,-7.33067731752988e-301,-7.310756999003984e-301,-7.2908366804780875e-301,-7.2709163619521915e-301,-7.250996043426295e-301,-7.231075724900399e-301,-7.211155406374502e-301,-7.191235087848606e-301,-7.171314769322709e-301,-7.151394450796813e-301,-7.131474132270916e-301,-7.11155381374502e-301,-7.091633495219123e-301,-7.071713176693227e-301,-7.051792858167331e-301,-7.0318725396414344e-301,-7.0119522211155384e-301,-6.9920319025896416e-301,-6.9721115840637456e-301,-6.952191265537849e-301,-6.932270947011953e-301,-6.912350628486056e-301,-6.89243030996016e-301,-6.872509991434263e-301,-6.852589672908367e-301,-6.83266935438247e-301,-6.812749035856574e-301,-6.792828717330677e-301,-6.772908398804781e-301,-6.7529880802788845e-301,-6.7330677617529885e-301,-6.713147443227092e-301,-6.693227124701196e-301,-6.673306806175299e-301,-6.653386487649403e-301,-6.633466169123506e-301,-6.61354585059761e-301,-6.593625532071713e-301,-6.573705213545817e-301,-6.55378489501992e-301,-6.533864576494024e-301,-6.5139442579681274e-301,-6.494023939442231e-301,-6.4741036209163346e-301,-6.4541833023904386e-301,-6.434262983864542e-301,-6.414342665338646e-301,-6.394422346812749e-301,-6.374502028286853e-301,-6.354581709760956e-301,-6.33466139123506e-301,-6.314741072709163e-301,-6.294820754183267e-301,-6.27490043565737e-301,-6.254980117131474e-301,-6.2350597986055775e-301,-6.2151394800796815e-301,-6.195219161553785e-301,-6.175298843027889e-301,-6.155378524501992e-301,-6.135458205976096e-301,-6.115537887450199e-301,-6.095617568924303e-301,-6.075697250398407e-301,-6.05577693187251e-301,-6.035856613346614e-301,-6.015936294820717e-301,-5.996015976294821e-301,-5.976095657768924e-301,-5.956175339243028e-301,-5.9362550207171316e-301,-5.9163347021912356e-301,-5.896414383665339e-301,-5.876494065139443e-301,-5.856573746613546e-301,-5.83665342808765e-301,-5.816733109561753e-301,-5.796812791035857e-301,-5.77689247250996e-301,-5.756972153984064e-301,-5.737051835458167e-301,-5.717131516932271e-301,-5.6972111984063745e-301,-5.6772908798804785e-301,-5.657370561354582e-301,-5.637450242828686e-301,-5.617529924302789e-301,-5.597609605776893e-301,-5.577689287250996e-301,-5.5577689687251e-301,-5.537848650199203e-301,-5.517928331673307e-301,-5.49800801314741e-301,-5.478087694621514e-301,-5.458167376095617e-301,-5.438247057569721e-301,-5.4183267390438246e-301,-5.3984064205179285e-301,-5.378486101992032e-301,-5.358565783466136e-301,-5.338645464940239e-301,-5.318725146414343e-301,-5.298804827888446e-301,-5.27888450936255e-301,-5.258964190836653e-301,-5.239043872310757e-301,-5.21912355378486e-301,-5.199203235258964e-301,-5.1792829167330675e-301,-5.1593625982071715e-301,-5.139442279681275e-301,-5.119521961155379e-301,-5.099601642629482e-301,-5.079681324103586e-301,-5.05976100557769e-301,-5.039840687051793e-301,-5.019920368525897e-301,-5.00000005e-301,-4.980079731474104e-301,-4.960159412948207e-301,-4.940239094422311e-301,-4.920318775896414e-301,-4.900398457370518e-301,-4.8804781388446215e-301,-4.8605578203187255e-301,-4.840637501792829e-301,-4.820717183266933e-301,-4.800796864741036e-301,-4.78087654621514e-301,-4.760956227689243e-301,-4.741035909163347e-301,-4.72111559063745e-301,-4.701195272111554e-301,-4.681274953585657e-301,-4.661354635059761e-301,-4.6414343165338645e-301,-4.6215139980079685e-301,-4.601593679482072e-301,-4.581673360956176e-301,-4.561753042430279e-301,-4.541832723904383e-301,-4.521912405378486e-301,-4.50199208685259e-301,-4.482071768326693e-301,-4.462151449800797e-301,-4.4422311312749e-301,-4.422310812749004e-301,-4.402390494223107e-301,-4.382470175697211e-301,-4.3625498571713145e-301,-4.3426295386454185e-301,-4.322709220119522e-301,-4.302788901593626e-301,-4.282868583067729e-301,-4.262948264541833e-301,-4.243027946015936e-301,-4.22310762749004e-301,-4.203187308964143e-301,-4.183266990438247e-301,-4.16334667191235e-301,-4.143426353386454e-301,-4.1235060348605575e-301,-4.1035857163346615e-301,-4.0836653978087654e-301,-4.063745079282869e-301,-4.043824760756973e-301,-4.023904442231076e-301,-4.00398412370518e-301,-3.984063805179283e-301,-3.964143486653387e-301,-3.94422316812749e-301,-3.924302849601594e-301,-3.904382531075697e-301,-3.884462212549801e-301,-3.864541894023904e-301,-3.844621575498008e-301,-3.8247012569721115e-301,-3.8047809384462155e-301,-3.784860619920319e-301,-3.764940301394423e-301,-3.745019982868526e-301,-3.7250996643426294e-301,-3.705179345816733e-301,-3.6852590272908366e-301,-3.66533870876494e-301,-3.6454183902390437e-301,-3.6254980717131477e-301,-3.6055777531872513e-301,-3.585657434661355e-301,-3.5657371161354584e-301,-3.545816797609562e-301,-3.5258964790836656e-301,-3.505976160557769e-301,-3.4860558420318727e-301,-3.4661355235059763e-301,-3.44621520498008e-301,-3.4262948864541835e-301,-3.406374567928287e-301,-3.3864542494023906e-301,-3.366533930876494e-301,-3.3466136123505978e-301,-3.3266932938247014e-301,-3.306772975298805e-301,-3.2868526567729085e-301,-3.266932338247012e-301,-3.2470120197211157e-301,-3.2270917011952192e-301,-3.207171382669323e-301,-3.1872510641434264e-301,-3.16733074561753e-301,-3.1474104270916335e-301,-3.127490108565737e-301,-3.1075697900398407e-301,-3.0876494715139443e-301,-3.067729152988048e-301,-3.0478088344621514e-301,-3.027888515936255e-301,-3.0079681974103586e-301,-2.988047878884462e-301,-2.9681275603585657e-301,-2.9482072418326693e-301,-2.928286923306773e-301,-2.9083666047808765e-301,-2.88844628625498e-301,-2.8685259677290836e-301,-2.848605649203187e-301,-2.8286853306772908e-301,-2.8087650121513944e-301,-2.788844693625498e-301,-2.7689243750996015e-301,-2.749004056573705e-301,-2.7290837380478087e-301,-2.7091634195219122e-301,-2.689243100996016e-301,-2.6693227824701194e-301,-2.649402463944223e-301,-2.629482145418327e-301,-2.6095618268924305e-301,-2.589641508366534e-301,-2.5697211898406377e-301,-2.5498008713147413e-301,-2.529880552788845e-301,-2.5099602342629484e-301,-2.490039915737052e-301,-2.4701195972111556e-301,-2.450199278685259e-301,-2.4302789601593627e-301,-2.4103586416334663e-301,-2.39043832310757e-301,-2.3705180045816735e-301,-2.350597686055777e-301,-2.3306773675298806e-301,-2.310757049003984e-301,-2.2908367304780878e-301,-2.2709164119521913e-301,-2.250996093426295e-301,-2.2310757749003985e-301,-2.211155456374502e-301,-2.1912351378486056e-301,-2.1713148193227092e-301,-2.151394500796813e-301,-2.1314741822709164e-301,-2.11155386374502e-301,-2.0916335452191235e-301,-2.071713226693227e-301,-2.0517929081673307e-301,-2.0318725896414343e-301,-2.011952271115538e-301,-1.9920319525896414e-301,-1.972111634063745e-301,-1.9521913155378486e-301,-1.932270997011952e-301,-1.9123506784860557e-301,-1.8924303599601593e-301,-1.872510041434263e-301,-1.8525897229083667e-301,-1.8326694043824702e-301,-1.8127490858565738e-301,-1.7928287673306774e-301,-1.772908448804781e-301,-1.7529881302788845e-301,-1.7330678117529881e-301,-1.7131474932270917e-301,-1.6932271747011953e-301,-1.6733068561752988e-301,-1.6533865376494024e-301,-1.633466219123506e-301,-1.6135459005976096e-301,-1.5936255820717132e-301,-1.5737052635458167e-301,-1.5537849450199203e-301,-1.5338646264940239e-301,-1.5139443079681275e-301,-1.494023989442231e-301,-1.4741036709163346e-301,-1.4541833523904382e-301,-1.4342630338645418e-301,-1.4143427153386456e-301,-1.3944223968127491e-301,-1.3745020782868527e-301,-1.3545817597609563e-301,-1.3346614412350599e-301,-1.3147411227091634e-301,-1.294820804183267e-301,-1.2749004856573706e-301,-1.2549801671314742e-301,-1.2350598486055777e-301,-1.2151395300796813e-301,-1.195219211553785e-301,-1.1752988930278885e-301,-1.155378574501992e-301,-1.1354582559760956e-301,-1.1155379374501992e-301,-1.0956176189243028e-301,-1.0756973003984064e-301,-1.05577698187251e-301,-1.0358566633466135e-301,-1.015936344820717e-301,-9.960160262948207e-302,-9.760957077689242e-302,-9.561753892430278e-302,-9.362550707171314e-302,-9.163347521912351e-302,-8.964144336653387e-302,-8.764941151394422e-302,-8.565737966135458e-302,-8.366534780876494e-302,-8.16733159561753e-302,-7.968128410358566e-302,-7.768925225099602e-302,-7.569722039840638e-302,-7.370518854581674e-302,-7.171315669322709e-302,-6.972112484063745e-302,-6.772909298804781e-302,-6.573706113545817e-302,-6.374502928286853e-302,-6.175299743027888e-302,-5.976096557768924e-302,-5.77689337250996e-302,-5.577690187250997e-302,-5.378487001992032e-302,-5.179283816733068e-302,-4.980080631474104e-302,-4.78087744621514e-302,-4.5816742609561755e-302,-4.382471075697211e-302,-4.183267890438247e-302,-3.984064705179283e-302,-3.784861519920319e-302,-3.585658334661355e-302,-3.3864551494023906e-302,-3.1872519641434264e-302,-2.988048778884462e-302,-2.788845593625498e-302,-2.589642408366534e-302,-2.39043922310757e-302,-2.1912360378486057e-302,-1.9920328525896415e-302,-1.7928296673306773e-302,-1.5936264820717133e-302,-1.394423296812749e-302,-1.1952201115537848e-302,-9.960169262948207e-303,-7.968137410358566e-303,-5.976105557768925e-303,-3.984073705179283e-303,-1.9920418525896414e-303,-9.999999999999456e-309]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json new file mode 100644 index 000000000000..55a2d49011e0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json @@ -0,0 +1 @@ +{"expected":[691.4686750787736,691.4706690973605,691.4726671000032,691.4746691026537,691.4766751213604,691.4786851722681,691.4806992716194,691.4827174357553,691.4847396811155,691.4867660242401,691.4887964817698,691.4908310704468,691.4928698071158,691.4949127087247,691.4969597923252,691.4990110750747,691.5010665742357,691.5031263071774,691.5051902913768,691.5072585444194,691.5093310839998,691.511407927923,691.513489094105,691.5155746005743,691.5176644654717,691.5197587070529,691.5218573436877,691.5239603938622,691.5260678761796,691.5281798093603,691.5302962122441,691.5324171037907,691.5345425030804,691.5366724293154,691.5388069018212,691.540945940047,691.5430895635672,691.5452377920823,691.5473906454201,691.5495481435368,691.5517103065177,691.5538771545793,691.5560487080692,691.558224987468,691.5604060133904,691.5625918065864,691.5647823879422,691.5669777784814,691.5691779993667,691.5713830719006,691.573593017527,691.5758078578318,691.5780276145454,691.5802523095426,691.582481964845,691.5847166026214,691.5869562451896,691.5892009150182,691.5914506347268,691.5937054270884,691.5959653150302,691.5982303216352,691.600500470144,691.602775783955,691.6050562866277,691.6073420018823,691.6096329536025,691.6119291658364,691.6142306627981,691.6165374688693,691.6188496086008,691.6211671067142,691.6234899881033,691.6258182778357,691.6281520011546,691.6304911834802,691.6328358504119,691.6351860277291,691.6375417413938,691.6399030175514,691.6422698825336,691.6446423628589,691.6470204852355,691.6494042765623,691.651793763931,691.6541889746281,691.6565899361367,691.6589966761383,691.6614092225144,691.6638276033493,691.6662518469313,691.668681981755,691.671118036523,691.6735600401487,691.6760080217573,691.6784620106886,691.680922036499,691.6833881289638,691.6858603180784,691.6883386340621,691.6908231073587,691.69331376864,691.6958106488073,691.698313778994,691.7008231905678,691.7033389151333,691.7058609845341,691.7083894308554,691.7109242864262,691.7134655838225,691.7160133558688,691.7185676356411,691.7211284564698,691.723695851942,691.7262698559039,691.728850502464,691.7314378259953,691.7340318611385,691.7366326428047,691.7392402061777,691.7418545867174,691.7444758201627,691.7471039425344,691.7497389901375,691.7523809995653,691.7550300077016,691.7576860517244,691.7603491691083,691.7630193976283,691.765696775363,691.7683813406976,691.7710731323269,691.7737721892595,691.7764785508205,691.779192256655,691.7819133467323,691.7846418613481,691.7873778411295,691.7901213270374,691.7928723603712,691.7956309827722,691.7983972362266,691.8011711630708,691.8039528059937,691.8067422080422,691.8095394126241,691.8123444635122,691.8151574048491,691.8179782811508,691.820807137311,691.8236440186058,691.8264889706975,691.829342039639,691.8322032718789,691.8350727142656,691.8379504140516,691.8408364188989,691.8437307768833,691.8466335364989,691.8495447466638,691.8524644567243,691.8553927164604,691.8583295760905,691.8612750862766,691.8642292981302,691.8671922632168,691.8701640335617,691.8731446616551,691.8761342004586,691.8791327034098,691.8821402244283,691.885156817922,691.8881825387926,691.8912174424416,691.8942615847764,691.8973150222164,691.9003778116999,691.9034500106894,691.9065316771791,691.9096228697009,691.9127236473308,691.9158340696966,691.918954196984,691.9220840899438,691.925223809899,691.9283734187521,691.9315329789923,691.9347025537032,691.9378822065698,691.9410720018868,691.9442720045661,691.9474822801446,691.9507028947926,691.9539339153216,691.957175409193,691.9604274445263,691.9636900901077,691.9669634153989,691.970247490546,691.9735423863883,691.9768481744679,691.9801649270387,691.9834927170758,691.9868316182854,691.9901817051143,691.9935430527603,691.9969157371818,692.0002998351085,692.0036954240518,692.0071025823152,692.0105213890052,692.013951924043,692.0173942681745,692.0208485029826,692.0243147108988,692.0277929752144,692.031283380093,692.0347860105826,692.0383009526281,692.0418282930835,692.0453681197258,692.0489205212668,692.0524855873675,692.0560634086511,692.0596540767172,692.0632576841552,692.0668743245598,692.0705040925442,692.0741470837561,692.077803394892,692.0814731237134,692.0851563690617,692.0888532308744,692.0925638102018,692.0962882092231,692.1000265312636,692.1037788808114,692.1075453635357,692.1113260863038,692.1151211572001,692.1189306855439,692.122754781909,692.1265935581421,692.1304471273836,692.1343156040864,692.1381991040371,692.1420977443764,692.1460116436206,692.149940921683,692.1538856998959,692.1578461010332,692.1618222493336,692.1658142705231,692.16982229184,692.1738464420584,692.1778868515134,692.1819436521265,692.1860169774308,692.1901069625984,692.1942137444663,692.1983374615648,692.2024782541448,692.2066362642066,692.2108116355296,692.2150045137014,692.2192150461487,692.2234433821685,692.2276896729595,692.2319540716546,692.2362367333545,692.2405378151611,692.2448574762119,692.249195877716,692.2535531829897,692.2579295574933,692.2623251688694,692.2667401869807,692.2711747839498,692.2756291341996,692.280103414494,692.2845978039804,692.2891124842326,692.2936476392948,692.2982034557265,692.3027801226488,692.3073778317912,692.3119967775405,692.3166371569888,692.3212991699855,692.3259830191878,692.3306889101141,692.3354170511977,692.3401676538431,692.3449409324813,692.3497371046294,692.3545563909488,692.3593990153068,692.3642652048391,692.3691551900133,692.3740692046945,692.3790074862127,692.3839702754311,692.3889578168173,692.3939703585147,692.3990081524173,692.4040714542451,692.4091605236225,692.414275624158,692.4194170235257,692.4245849935501,692.4297798102917,692.435001754136,692.4402511098838,692.4455281668448,692.4508332189332,692.4561665647658,692.4615285077629,692.4669193562519,692.4723394235738,692.4777890281922,692.4832684938061,692.4887781494647,692.4943183296863,692.4998893745799,692.505491629971,692.5111254475299,692.5167911849045,692.5224892058561,692.5282198804002,692.5339835849502,692.5397807024658,692.545611622606,692.5514767418856,692.5573764638381,692.5633111991812,692.5692813659887,692.5752873898679,692.5813297041406,692.5874087500314,692.593524976861,692.5996788422453,692.6058708123007,692.6121013618565,692.6183709746728,692.6246801436662,692.6310293711425,692.6374191690363,692.643850059159,692.6503225734543,692.6568372542624,692.6633946545927,692.6699953384053,692.6766398809024,692.6833288688285,692.6900629007823,692.6968425875369,692.7036685523734,692.7105414314241,692.7174618740282,692.7244305431005,692.731448115512,692.7385152824843,692.7456327499989,692.7528012392195,692.7600214869314,692.7672942459949,692.7746202858175,692.7820003928417,692.7894353710517,692.7969260424992,692.8044732478487,692.8120778469436,692.8197407193943,692.8274627651889,692.8352449053269,692.8430880824792,692.8509932616726,692.858961431003,692.8669936023764,692.87509081228,692.8832541225845,692.891484621381,692.89978342385,692.908151673169,692.9165905414573,692.9251012307616,692.9336849740831,692.9423430364499,692.9510767160357,692.9598873453282,692.9687762923488,692.9777449619278,692.9867947970365,692.9959272801811,693.0051439348596,693.0144463270875,693.0238360669948,693.0333148104983,693.0428842610547,693.0525461714979,693.0623023459653,693.0721546419211,693.0821049722772,693.0921553076237,693.1023076785702,693.1125641782094,693.1229269647058,693.1333982640227,693.143980372791,693.1546756613336,693.1654865768511,693.1764156467837,693.1874654823573,693.1986387823287,693.2099383369417,693.2213670321096,693.2329278538397,693.2446238929161,693.25645834986,693.2684345401868,693.2805558999816,693.2928259918176,693.3052485110414,693.317827292454,693.3305663174168,693.3434697214168,693.3565418021263,693.3697870279957,693.3832100474233,693.3968156985499,693.4106090197271,693.4245952607198,693.4387798947017,693.4531686311144,693.4677674294657,693.482582514149,693.4976203903783,693.5128878613389,693.5283920466682,693.5441404023912,693.5601407424525,693.5764012619969,693.5929305625766,693.6097376794748,693.6268321113672,693.6442238525606,693.6619234280873,693.6799419319601,693.6982910689381,693.7169832001962,693.7360313933455,693.7554494773096,693.7752521026372,693.7954548079057,693.8160740929741,693.8371274999467,693.8586337028459,693.8806126071395,693.9030854604562,693.9260749760276,693.9496054706582,693.973703019322,693.9983956288514,694.0237134336178,694.0496889166337,694.0763571601454,694.1037561305648,694.1319270035474,694.1609145362021,694.1907674948776,694.2215391487906,694.2532878420448,694.2860776594698,694.3199792053754,694.3550705190045,694.3914381565351,694.4291784773669,694.4683991827972,694.5092211689507,694.5517807742754,694.5962325269252,694.6427525316943,694.6915426839114,694.7428359650884,694.7969031716804,694.8540615691151,694.9146861724756,694.9792246726965,695.0482175202787,695.1223254648501,695.2023681403441,695.2893794793034,695.3846896134714,695.4900500733514,695.6078330392857,695.7413643422674,695.895514902571,696.0778362920317,696.3009795923462,696.5886612464652,696.9941255179085,697.6872701884779,709.889355822726],"x":[1.0e-300,9.980079681474104e-301,9.960159362948208e-301,9.94023904442231e-301,9.920318725896415e-301,9.900398407370519e-301,9.880478088844623e-301,9.860557770318725e-301,9.840637451792829e-301,9.820717133266933e-301,9.800796814741037e-301,9.78087649621514e-301,9.760956177689243e-301,9.741035859163347e-301,9.721115540637451e-301,9.701195222111553e-301,9.681274903585657e-301,9.661354585059761e-301,9.641434266533865e-301,9.621513948007968e-301,9.601593629482072e-301,9.581673310956176e-301,9.56175299243028e-301,9.541832673904382e-301,9.521912355378486e-301,9.50199203685259e-301,9.482071718326694e-301,9.462151399800796e-301,9.4422310812749e-301,9.422310762749004e-301,9.402390444223108e-301,9.38247012569721e-301,9.362549807171315e-301,9.342629488645419e-301,9.322709170119523e-301,9.302788851593625e-301,9.282868533067729e-301,9.262948214541833e-301,9.243027896015937e-301,9.22310757749004e-301,9.203187258964143e-301,9.183266940438247e-301,9.163346621912351e-301,9.143426303386454e-301,9.123505984860558e-301,9.103585666334662e-301,9.083665347808766e-301,9.063745029282868e-301,9.043824710756972e-301,9.023904392231076e-301,9.00398407370518e-301,8.984063755179284e-301,8.964143436653386e-301,8.94422311812749e-301,8.924302799601594e-301,8.904382481075698e-301,8.8844621625498e-301,8.864541844023905e-301,8.844621525498009e-301,8.824701206972113e-301,8.804780888446215e-301,8.784860569920319e-301,8.764940251394423e-301,8.745019932868527e-301,8.725099614342629e-301,8.705179295816733e-301,8.685258977290837e-301,8.665338658764941e-301,8.645418340239043e-301,8.625498021713147e-301,8.605577703187251e-301,8.585657384661355e-301,8.565737066135458e-301,8.545816747609562e-301,8.525896429083666e-301,8.50597611055777e-301,8.486055792031872e-301,8.466135473505976e-301,8.44621515498008e-301,8.426294836454184e-301,8.406374517928286e-301,8.38645419940239e-301,8.366533880876494e-301,8.346613562350598e-301,8.3266932438247e-301,8.306772925298805e-301,8.286852606772909e-301,8.266932288247013e-301,8.247011969721115e-301,8.227091651195219e-301,8.207171332669323e-301,8.187251014143427e-301,8.16733069561753e-301,8.147410377091633e-301,8.127490058565737e-301,8.107569740039841e-301,8.087649421513944e-301,8.067729102988048e-301,8.047808784462152e-301,8.027888465936256e-301,8.00796814741036e-301,7.988047828884462e-301,7.968127510358566e-301,7.94820719183267e-301,7.928286873306774e-301,7.908366554780876e-301,7.88844623625498e-301,7.868525917729084e-301,7.848605599203188e-301,7.82868528067729e-301,7.808764962151395e-301,7.788844643625499e-301,7.768924325099603e-301,7.749004006573705e-301,7.729083688047809e-301,7.709163369521913e-301,7.689243050996017e-301,7.669322732470119e-301,7.649402413944223e-301,7.629482095418327e-301,7.609561776892431e-301,7.589641458366533e-301,7.569721139840637e-301,7.549800821314741e-301,7.529880502788845e-301,7.509960184262948e-301,7.490039865737052e-301,7.470119547211156e-301,7.450199228685259e-301,7.430278910159363e-301,7.410358591633466e-301,7.39043827310757e-301,7.370517954581673e-301,7.350597636055777e-301,7.33067731752988e-301,7.310756999003984e-301,7.2908366804780875e-301,7.2709163619521915e-301,7.250996043426295e-301,7.231075724900399e-301,7.211155406374502e-301,7.191235087848606e-301,7.171314769322709e-301,7.151394450796813e-301,7.131474132270916e-301,7.11155381374502e-301,7.091633495219123e-301,7.071713176693227e-301,7.051792858167331e-301,7.0318725396414344e-301,7.0119522211155384e-301,6.9920319025896416e-301,6.9721115840637456e-301,6.952191265537849e-301,6.932270947011953e-301,6.912350628486056e-301,6.89243030996016e-301,6.872509991434263e-301,6.852589672908367e-301,6.83266935438247e-301,6.812749035856574e-301,6.792828717330677e-301,6.772908398804781e-301,6.7529880802788845e-301,6.7330677617529885e-301,6.713147443227092e-301,6.693227124701196e-301,6.673306806175299e-301,6.653386487649403e-301,6.633466169123506e-301,6.61354585059761e-301,6.593625532071713e-301,6.573705213545817e-301,6.55378489501992e-301,6.533864576494024e-301,6.5139442579681274e-301,6.494023939442231e-301,6.4741036209163346e-301,6.4541833023904386e-301,6.434262983864542e-301,6.414342665338646e-301,6.394422346812749e-301,6.374502028286853e-301,6.354581709760956e-301,6.33466139123506e-301,6.314741072709163e-301,6.294820754183267e-301,6.27490043565737e-301,6.254980117131474e-301,6.2350597986055775e-301,6.2151394800796815e-301,6.195219161553785e-301,6.175298843027889e-301,6.155378524501992e-301,6.135458205976096e-301,6.115537887450199e-301,6.095617568924303e-301,6.075697250398407e-301,6.05577693187251e-301,6.035856613346614e-301,6.015936294820717e-301,5.996015976294821e-301,5.976095657768924e-301,5.956175339243028e-301,5.9362550207171316e-301,5.9163347021912356e-301,5.896414383665339e-301,5.876494065139443e-301,5.856573746613546e-301,5.83665342808765e-301,5.816733109561753e-301,5.796812791035857e-301,5.77689247250996e-301,5.756972153984064e-301,5.737051835458167e-301,5.717131516932271e-301,5.6972111984063745e-301,5.6772908798804785e-301,5.657370561354582e-301,5.637450242828686e-301,5.617529924302789e-301,5.597609605776893e-301,5.577689287250996e-301,5.5577689687251e-301,5.537848650199203e-301,5.517928331673307e-301,5.49800801314741e-301,5.478087694621514e-301,5.458167376095617e-301,5.438247057569721e-301,5.4183267390438246e-301,5.3984064205179285e-301,5.378486101992032e-301,5.358565783466136e-301,5.338645464940239e-301,5.318725146414343e-301,5.298804827888446e-301,5.27888450936255e-301,5.258964190836653e-301,5.239043872310757e-301,5.21912355378486e-301,5.199203235258964e-301,5.1792829167330675e-301,5.1593625982071715e-301,5.139442279681275e-301,5.119521961155379e-301,5.099601642629482e-301,5.079681324103586e-301,5.05976100557769e-301,5.039840687051793e-301,5.019920368525897e-301,5.00000005e-301,4.980079731474104e-301,4.960159412948207e-301,4.940239094422311e-301,4.920318775896414e-301,4.900398457370518e-301,4.8804781388446215e-301,4.8605578203187255e-301,4.840637501792829e-301,4.820717183266933e-301,4.800796864741036e-301,4.78087654621514e-301,4.760956227689243e-301,4.741035909163347e-301,4.72111559063745e-301,4.701195272111554e-301,4.681274953585657e-301,4.661354635059761e-301,4.6414343165338645e-301,4.6215139980079685e-301,4.601593679482072e-301,4.581673360956176e-301,4.561753042430279e-301,4.541832723904383e-301,4.521912405378486e-301,4.50199208685259e-301,4.482071768326693e-301,4.462151449800797e-301,4.4422311312749e-301,4.422310812749004e-301,4.402390494223107e-301,4.382470175697211e-301,4.3625498571713145e-301,4.3426295386454185e-301,4.322709220119522e-301,4.302788901593626e-301,4.282868583067729e-301,4.262948264541833e-301,4.243027946015936e-301,4.22310762749004e-301,4.203187308964143e-301,4.183266990438247e-301,4.16334667191235e-301,4.143426353386454e-301,4.1235060348605575e-301,4.1035857163346615e-301,4.0836653978087654e-301,4.063745079282869e-301,4.043824760756973e-301,4.023904442231076e-301,4.00398412370518e-301,3.984063805179283e-301,3.964143486653387e-301,3.94422316812749e-301,3.924302849601594e-301,3.904382531075697e-301,3.884462212549801e-301,3.864541894023904e-301,3.844621575498008e-301,3.8247012569721115e-301,3.8047809384462155e-301,3.784860619920319e-301,3.764940301394423e-301,3.745019982868526e-301,3.7250996643426294e-301,3.705179345816733e-301,3.6852590272908366e-301,3.66533870876494e-301,3.6454183902390437e-301,3.6254980717131477e-301,3.6055777531872513e-301,3.585657434661355e-301,3.5657371161354584e-301,3.545816797609562e-301,3.5258964790836656e-301,3.505976160557769e-301,3.4860558420318727e-301,3.4661355235059763e-301,3.44621520498008e-301,3.4262948864541835e-301,3.406374567928287e-301,3.3864542494023906e-301,3.366533930876494e-301,3.3466136123505978e-301,3.3266932938247014e-301,3.306772975298805e-301,3.2868526567729085e-301,3.266932338247012e-301,3.2470120197211157e-301,3.2270917011952192e-301,3.207171382669323e-301,3.1872510641434264e-301,3.16733074561753e-301,3.1474104270916335e-301,3.127490108565737e-301,3.1075697900398407e-301,3.0876494715139443e-301,3.067729152988048e-301,3.0478088344621514e-301,3.027888515936255e-301,3.0079681974103586e-301,2.988047878884462e-301,2.9681275603585657e-301,2.9482072418326693e-301,2.928286923306773e-301,2.9083666047808765e-301,2.88844628625498e-301,2.8685259677290836e-301,2.848605649203187e-301,2.8286853306772908e-301,2.8087650121513944e-301,2.788844693625498e-301,2.7689243750996015e-301,2.749004056573705e-301,2.7290837380478087e-301,2.7091634195219122e-301,2.689243100996016e-301,2.6693227824701194e-301,2.649402463944223e-301,2.629482145418327e-301,2.6095618268924305e-301,2.589641508366534e-301,2.5697211898406377e-301,2.5498008713147413e-301,2.529880552788845e-301,2.5099602342629484e-301,2.490039915737052e-301,2.4701195972111556e-301,2.450199278685259e-301,2.4302789601593627e-301,2.4103586416334663e-301,2.39043832310757e-301,2.3705180045816735e-301,2.350597686055777e-301,2.3306773675298806e-301,2.310757049003984e-301,2.2908367304780878e-301,2.2709164119521913e-301,2.250996093426295e-301,2.2310757749003985e-301,2.211155456374502e-301,2.1912351378486056e-301,2.1713148193227092e-301,2.151394500796813e-301,2.1314741822709164e-301,2.11155386374502e-301,2.0916335452191235e-301,2.071713226693227e-301,2.0517929081673307e-301,2.0318725896414343e-301,2.011952271115538e-301,1.9920319525896414e-301,1.972111634063745e-301,1.9521913155378486e-301,1.932270997011952e-301,1.9123506784860557e-301,1.8924303599601593e-301,1.872510041434263e-301,1.8525897229083667e-301,1.8326694043824702e-301,1.8127490858565738e-301,1.7928287673306774e-301,1.772908448804781e-301,1.7529881302788845e-301,1.7330678117529881e-301,1.7131474932270917e-301,1.6932271747011953e-301,1.6733068561752988e-301,1.6533865376494024e-301,1.633466219123506e-301,1.6135459005976096e-301,1.5936255820717132e-301,1.5737052635458167e-301,1.5537849450199203e-301,1.5338646264940239e-301,1.5139443079681275e-301,1.494023989442231e-301,1.4741036709163346e-301,1.4541833523904382e-301,1.4342630338645418e-301,1.4143427153386456e-301,1.3944223968127491e-301,1.3745020782868527e-301,1.3545817597609563e-301,1.3346614412350599e-301,1.3147411227091634e-301,1.294820804183267e-301,1.2749004856573706e-301,1.2549801671314742e-301,1.2350598486055777e-301,1.2151395300796813e-301,1.195219211553785e-301,1.1752988930278885e-301,1.155378574501992e-301,1.1354582559760956e-301,1.1155379374501992e-301,1.0956176189243028e-301,1.0756973003984064e-301,1.05577698187251e-301,1.0358566633466135e-301,1.015936344820717e-301,9.960160262948207e-302,9.760957077689242e-302,9.561753892430278e-302,9.362550707171314e-302,9.163347521912351e-302,8.964144336653387e-302,8.764941151394422e-302,8.565737966135458e-302,8.366534780876494e-302,8.16733159561753e-302,7.968128410358566e-302,7.768925225099602e-302,7.569722039840638e-302,7.370518854581674e-302,7.171315669322709e-302,6.972112484063745e-302,6.772909298804781e-302,6.573706113545817e-302,6.374502928286853e-302,6.175299743027888e-302,5.976096557768924e-302,5.77689337250996e-302,5.577690187250997e-302,5.378487001992032e-302,5.179283816733068e-302,4.980080631474104e-302,4.78087744621514e-302,4.5816742609561755e-302,4.382471075697211e-302,4.183267890438247e-302,3.984064705179283e-302,3.784861519920319e-302,3.585658334661355e-302,3.3864551494023906e-302,3.1872519641434264e-302,2.988048778884462e-302,2.788845593625498e-302,2.589642408366534e-302,2.39043922310757e-302,2.1912360378486057e-302,1.9920328525896415e-302,1.7928296673306773e-302,1.5936264820717133e-302,1.394423296812749e-302,1.1952201115537848e-302,9.960169262948207e-303,7.968137410358566e-303,5.976105557768925e-303,3.984073705179283e-303,1.9920418525896414e-303,9.999999999999456e-309]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js new file mode 100644 index 000000000000..f49d35a7466b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js @@ -0,0 +1,406 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var abs = require( '@stdlib/math/base/special/abs' ); +var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); +var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' ); +var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' ); +var acschf = require( './../lib' ); + + +// FIXTURES // + +var largerNegative = require( './fixtures/julia/larger_negative.json' ); +var largerPositive = require( './fixtures/julia/larger_positive.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var smallNegative = require( './fixtures/julia/small_negative.json' ); +var smallPositive = require( './fixtures/julia/small_positive.json' ); +var smaller = require( './fixtures/julia/smaller.json' ); +var hugeNegative = require( './fixtures/julia/huge_negative.json' ); +var hugePositive = require( './fixtures/julia/huge_positive.json' ); +var tinyNegative = require( './fixtures/julia/tiny_negative.json' ); +var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof acschf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function handles signed zero', function test( t ) { + t.strictEqual( acschf( 0.0 ), PINF, 'positive zero returns +infinity' ); + t.strictEqual( acschf( -0.0 ), NINF, 'negative zero returns -infinity' ); + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-0.8,0.8]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smaller.x; + expected = smaller.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + + if ( expected[ i ] === null ) { + t.strictEqual( y, PINF, 'x: '+x[ i ]+'. E: +infinity' ); + } else { + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.'); + } + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-1.0,-0.8]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smallNegative.x; + expected = smallNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[0.8,1.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smallPositive.x; + expected = smallPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-3.0,-1.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = mediumNegative.x; + expected = mediumNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[1.0,3.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = mediumPositive.x; + expected = mediumPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[3.0,28.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largePositive.x; + expected = largePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-28.0,-3.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largeNegative.x; + expected = largeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[28.0,100.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largerPositive.x; + expected = largerPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-100.0,-28.0]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largerNegative.x; + expected = largerNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e200,-1e208]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = hugeNegative.x; + expected = hugeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[1e300,1e308]`', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = hugePositive.x; + expected = hugePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { + var v = acschf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns -0 if provided -infinity', function test( t ) { + var v = acschf( NINF ); + t.strictEqual( isNegativeZerof( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns +0 if provided +infinity', function test( t ) { + var v = acschf( PINF ); + t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function evaluates the inverse hyperbolic arccosecant for tiny negative values', function test( t ) { + var i; + var v; + + for ( i = 0; i < tinyNegative.length; i++ ) { + v = acschf( tinyNegative[ i ] ); + t.strictEqual( isnanf( v ), false, 'does not return NaN' ); + } + t.end(); +}); + +tape( 'the function evaluates the inverse hyperbolic arccosecant for tiny positive values', function test( t ) { + var i; + var v; + + for ( i = 0; i < tinyPositive.length; i++ ) { + v = acschf( tinyPositive[ i ] ); + t.strictEqual( isnanf( v ), false, 'does not return NaN' ); + } + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js new file mode 100644 index 000000000000..3341dfeba87f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js @@ -0,0 +1,425 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var tape = require( 'tape' ); +var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' ); +var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' ); +var EPS = require( '@stdlib/constants/float32/eps' ); +var PINF = require( '@stdlib/constants/float32/pinf' ); +var NINF = require( '@stdlib/constants/float32/ninf' ); +var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); +var abs = require( '@stdlib/math/base/special/abs' ); +var tryRequire = require( '@stdlib/utils/try-require' ); + + +// FIXTURES // + +var tinyNegative = require( './fixtures/julia/tiny_negative.json' ); +var tinyPositive = require( './fixtures/julia/tiny_positive.json' ); +var largerNegative = require( './fixtures/julia/larger_negative.json' ); +var largerPositive = require( './fixtures/julia/larger_positive.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var smallNegative = require( './fixtures/julia/small_negative.json' ); +var smallPositive = require( './fixtures/julia/small_positive.json' ); +var smaller = require( './fixtures/julia/smaller.json' ); +var hugeNegative = require( './fixtures/julia/huge_negative.json' ); +var hugePositive = require( './fixtures/julia/huge_positive.json' ); + + +// VARIABLES // + +var acschf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( acschf instanceof Error ) +}; + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof acschf, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-0.8,0.8]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smaller.x; + expected = smaller.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + + if ( expected[ i ] === null ) { + t.strictEqual( y, PINF, 'x: '+x[ i ]+'. E: +infinity' ); + } else { + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ + '. y: '+y+ + '. E: '+e+ + '. tol: '+tol+ + '. Δ: '+delta+'.' ); + } + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-1.0,-0.8]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smallNegative.x; + expected = smallNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[0.8,1.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = smallPositive.x; + expected = smallPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-3.0,-1.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = mediumNegative.x; + expected = mediumNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[1.0,3.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = mediumPositive.x; + expected = mediumPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[3.0,28.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largePositive.x; + expected = largePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-28.0,-3.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largeNegative.x; + expected = largeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[28.0,100.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largerPositive.x; + expected = largerPositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-100.0,-28.0]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = largerNegative.x; + expected = largerNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e200,-1e208]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = hugeNegative.x; + expected = hugeNegative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the hyperbolic arccosecant on the interval `[1e300,1e308]`', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + var e; + + x = hugePositive.x; + expected = hugePositive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = acschf( x[ i ] ); + e = float64ToFloat32( expected[ i ] ); + + if ( y === e ) { + t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); + } else { + delta = abs( y - e ); + tol = 1.8 * EPS * abs( e ); + t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', opts, function test( t ) { + var v = acschf( NaN ); + t.strictEqual( isnanf( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `+infinity` if provided `+0`', opts, function test( t ) { + var v = acschf( +0.0 ); + t.strictEqual( v, PINF, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `-infinity` if provided `-0`', opts, function test( t ) { + var v = acschf( -0.0 ); + t.strictEqual( v, NINF, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `-0` if provided `-infinity`', opts, function test( t ) { + var v = acschf( NINF ); + t.strictEqual( isNegativeZerof( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function returns `+0` if provided `+infinity`', opts, function test( t ) { + var v = acschf( PINF ); + t.strictEqual( isPositiveZerof( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the native function evaluates the inverse hyperbolic arccosecant for tiny negative values', opts, function test( t ) { + var i; + var v; + + for ( i = 0; i < tinyNegative.length; i++ ) { + v = acschf( tinyNegative[ i ] ); + t.strictEqual( isnanf( v ), false, 'does not return NaN' ); + } + t.end(); +}); + +tape( 'the native function evaluates the inverse hyperbolic arccosecant for tiny positive values', opts, function test( t ) { + var i; + var v; + + for ( i = 0; i < tinyPositive.length; i++ ) { + v = acschf( tinyPositive[ i ] ); + t.strictEqual( isnanf( v ), false, 'does not return NaN' ); + } + t.end(); +}); From 4a9b08358776624c80a7bd5859c78e3445bb723c Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Mon, 9 Feb 2026 17:13:20 +0530 Subject: [PATCH 2/8] refactor: update acschf native tests to use isAlmostSameValue --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../math/base/special/acschf/README.md | 23 --- .../math/base/special/acschf/test/test.js | 167 ++++-------------- .../base/special/acschf/test/test.native.js | 127 ++----------- 3 files changed, 46 insertions(+), 271 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/README.md b/lib/node_modules/@stdlib/math/base/special/acschf/README.md index 5398de54da07..f092305fa5e3 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acschf/README.md @@ -172,17 +172,6 @@ int main( void ) { @@ -195,18 +184,6 @@ int main( void ) { -[@stdlib/math/base/special/acothf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/acothf - -[@stdlib/math/base/special/acscf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/acscf - -[@stdlib/math/base/special/asechf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/asechf - -[@stdlib/math/base/special/asinhf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/asinhf - -[@stdlib/math/base/special/cscf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cscf - -[@stdlib/math/base/special/cschf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/cschf - diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js index f49d35a7466b..b155d1d95a1a 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js @@ -22,13 +22,12 @@ var tape = require( 'tape' ); var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); -var EPS = require( '@stdlib/constants/float32/eps' ); var PINF = require( '@stdlib/constants/float32/pinf' ); var NINF = require( '@stdlib/constants/float32/ninf' ); -var abs = require( '@stdlib/math/base/special/abs' ); var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' ); var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' ); +var isAlmostSameValue = require( '@stdlib/number/float32/base/assert/is-almost-same-value' ); var acschf = require( './../lib' ); @@ -63,14 +62,12 @@ tape( 'the function handles signed zero', function test( t ) { t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[-0.8,0.8]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [-0.8,0.8]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = smaller.x; expected = smaller.expected; @@ -82,27 +79,18 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-0.8,0 t.strictEqual( y, PINF, 'x: '+x[ i ]+'. E: +infinity' ); } else { e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.'); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } } t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[-1.0,-0.8]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [-1.0,-0.8]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = smallNegative.x; expected = smallNegative.expected; @@ -110,26 +98,17 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-1.0,- for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[0.8,1.0]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [0.8,1.0]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = smallPositive.x; expected = smallPositive.expected; @@ -137,26 +116,17 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[0.8,1. for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[-3.0,-1.0]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [-3.0,-1.0]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = mediumNegative.x; expected = mediumNegative.expected; @@ -164,26 +134,17 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-3.0,- for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[1.0,3.0]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [1.0,3.0]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = mediumPositive.x; expected = mediumPositive.expected; @@ -191,26 +152,17 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[1.0,3. for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[3.0,28.0]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [3.0,28.0]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = largePositive.x; expected = largePositive.expected; @@ -218,26 +170,17 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[3.0,28 for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[-28.0,-3.0]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [-28.0,-3.0]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = largeNegative.x; expected = largeNegative.expected; @@ -246,25 +189,17 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-28.0, y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[28.0,100.0]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [28.0,100.0]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = largerPositive.x; expected = largerPositive.expected; @@ -272,26 +207,16 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[28.0,1 for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); - -tape( 'the function computes the hyperbolic arccosecant on the interval `[-100.0,-28.0]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [-100.0,-28.0]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = largerNegative.x; expected = largerNegative.expected; @@ -299,26 +224,17 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-100.0 for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e200,-1e208]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [-1e200,-1e208]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = hugeNegative.x; expected = hugeNegative.expected; @@ -326,26 +242,17 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e200 for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[1e300,1e308]`', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [1e300,1e308]', function test( t ) { var expected; - var delta; - var tol; var x; var y; - var i; var e; + var i; x = hugePositive.x; expected = hugePositive.expected; @@ -354,13 +261,7 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[1e300, y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js index 3341dfeba87f..9fab59a8d344 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js @@ -25,12 +25,11 @@ var tape = require( 'tape' ); var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); var isNegativeZerof = require( '@stdlib/math/base/assert/is-negative-zerof' ); var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' ); -var EPS = require( '@stdlib/constants/float32/eps' ); var PINF = require( '@stdlib/constants/float32/pinf' ); var NINF = require( '@stdlib/constants/float32/ninf' ); var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' ); -var abs = require( '@stdlib/math/base/special/abs' ); var tryRequire = require( '@stdlib/utils/try-require' ); +var isAlmostSameValue = require( '@stdlib/number/float32/base/assert/is-almost-same-value' ); // FIXTURES // @@ -68,8 +67,6 @@ tape( 'main export is a function', opts, function test( t ) { tape( 'the function computes the hyperbolic arccosecant on the interval `[-0.8,0.8]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -80,23 +77,11 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-0.8,0 for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); - if ( expected[ i ] === null ) { t.strictEqual( y, PINF, 'x: '+x[ i ]+'. E: +infinity' ); } else { e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok(delta <= tol, 'within tolerance. x: '+x[ i ]+ - '. y: '+y+ - '. E: '+e+ - '. tol: '+tol+ - '. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } } t.end(); @@ -104,8 +89,6 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-0.8,0 tape( 'the function computes the hyperbolic arccosecant on the interval `[-1.0,-0.8]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -117,22 +100,12 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-1.0,- for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); - tape( 'the function computes the hyperbolic arccosecant on the interval `[0.8,1.0]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -144,22 +117,13 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[0.8,1. for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); tape( 'the function computes the hyperbolic arccosecant on the interval `[-3.0,-1.0]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -171,22 +135,13 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-3.0,- for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); tape( 'the function computes the hyperbolic arccosecant on the interval `[1.0,3.0]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -198,22 +153,13 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[1.0,3. for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); tape( 'the function computes the hyperbolic arccosecant on the interval `[3.0,28.0]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -225,22 +171,13 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[3.0,28 for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); tape( 'the function computes the hyperbolic arccosecant on the interval `[-28.0,-3.0]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -252,22 +189,13 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-28.0, for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); tape( 'the function computes the hyperbolic arccosecant on the interval `[28.0,100.0]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -279,22 +207,13 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[28.0,1 for ( i = 0; i < x.length; i++ ) { y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); tape( 'the function computes the hyperbolic arccosecant on the interval `[-100.0,-28.0]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -307,21 +226,13 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-100.0 y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e200,-1e208]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -334,21 +245,13 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e200 y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); tape( 'the function computes the hyperbolic arccosecant on the interval `[1e300,1e308]`', opts, function test( t ) { var expected; - var delta; - var tol; var x; var y; var i; @@ -361,13 +264,7 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[1e300, y = acschf( x[ i ] ); e = float64ToFloat32( expected[ i ] ); - if ( y === e ) { - t.strictEqual( y, e, 'x: '+x[ i ]+'. E: '+e ); - } else { - delta = abs( y - e ); - tol = 1.8 * EPS * abs( e ); - t.ok( delta <= tol, 'within tolerance. x: '+x[ i ]+'. y: '+y+'. E: '+e+'. tol: '+tol+'. Δ: '+delta+'.' ); - } + t.strictEqual( isAlmostSameValue( y, e, 3 ), true, 'x: '+x[ i ]+'. y: '+y+'. E: '+e+'.' ); } t.end(); }); From 086fcda06454d41cef928129828b9fe34e4dbb89 Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Wed, 11 Feb 2026 18:59:51 +0530 Subject: [PATCH 3/8] bench: refactor to use string interpolation in bechmark --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../base/special/acschf/benchmark/benchmark.js | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js index d86396a9d8f0..3c19b51b8e2a 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js @@ -20,21 +20,32 @@ // MODULES // +var resolve = require( 'path' ).resolve; var bench = require( '@stdlib/bench' ); +var tryRequire = require( '@stdlib/utils/try-require' ); var uniform = require( '@stdlib/random/array/uniform' ); var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var format = require( '@stdlib/string/format' ); var pkg = require( './../package.json' ).name; -var acschf = require( './../lib' ); + + +// VARIABLES // + +var acschf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( acschf instanceof Error ) +}; // MAIN // -bench( pkg, function benchmark( b ) { +bench( format( '%s::native', pkg ), opts, function benchmark( b ) { var x; var y; var i; - x = uniform( 100, -50.0, 50.0, { + // Generate input data once (valid domain: |x| >= 1) + x = uniform( 100, 1.0, 50.0, { 'dtype': 'float32' }); From 21c78eb9a6c57b09cf1c2907734692ffcd32ab5b Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Wed, 11 Feb 2026 19:24:26 +0530 Subject: [PATCH 4/8] chore: trigger CI --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- From 9a42555453f7498e26ae2d995b5bc25ecf06980f Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Wed, 11 Feb 2026 19:34:48 +0530 Subject: [PATCH 5/8] bench: refactor to use string interpolation in bechmark --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../base/special/acschf/benchmark/benchmark.js | 17 +++-------------- .../acschf/benchmark/benchmark.native.js | 3 ++- 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js index 3c19b51b8e2a..d86396a9d8f0 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.js @@ -20,32 +20,21 @@ // MODULES // -var resolve = require( 'path' ).resolve; var bench = require( '@stdlib/bench' ); -var tryRequire = require( '@stdlib/utils/try-require' ); var uniform = require( '@stdlib/random/array/uniform' ); var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); -var format = require( '@stdlib/string/format' ); var pkg = require( './../package.json' ).name; - - -// VARIABLES // - -var acschf = tryRequire( resolve( __dirname, './../lib/native.js' ) ); -var opts = { - 'skip': ( acschf instanceof Error ) -}; +var acschf = require( './../lib' ); // MAIN // -bench( format( '%s::native', pkg ), opts, function benchmark( b ) { +bench( pkg, function benchmark( b ) { var x; var y; var i; - // Generate input data once (valid domain: |x| >= 1) - x = uniform( 100, 1.0, 50.0, { + x = uniform( 100, -50.0, 50.0, { 'dtype': 'float32' }); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js index 679d9180d013..3c19b51b8e2a 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/benchmark/benchmark.native.js @@ -25,6 +25,7 @@ var bench = require( '@stdlib/bench' ); var tryRequire = require( '@stdlib/utils/try-require' ); var uniform = require( '@stdlib/random/array/uniform' ); var isnanf = require( '@stdlib/math/base/assert/is-nanf' ); +var format = require( '@stdlib/string/format' ); var pkg = require( './../package.json' ).name; @@ -38,7 +39,7 @@ var opts = { // MAIN // -bench( pkg+'::native', opts, function benchmark( b ) { +bench( format( '%s::native', pkg ), opts, function benchmark( b ) { var x; var y; var i; From 3ee1eff901ff65cf977315753d5495ec6b647d6f Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Sat, 14 Feb 2026 14:47:46 +0530 Subject: [PATCH 6/8] chore: changes according review --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../@stdlib/math/base/special/acschf/README.md | 8 ++++---- .../test/fixtures/julia/huge_negative.json | 2 +- .../test/fixtures/julia/huge_positive.json | 2 +- .../test/fixtures/julia/large_negative.json | 2 +- .../test/fixtures/julia/large_positive.json | 2 +- .../test/fixtures/julia/larger_negative.json | 2 +- .../test/fixtures/julia/larger_positive.json | 2 +- .../test/fixtures/julia/medium_negative.json | 2 +- .../test/fixtures/julia/medium_positive.json | 2 +- .../special/acschf/test/fixtures/julia/runner.jl | 16 ++++++++-------- .../test/fixtures/julia/small_negative.json | 2 +- .../test/fixtures/julia/small_positive.json | 2 +- .../acschf/test/fixtures/julia/smaller.json | 2 +- .../test/fixtures/julia/tiny_negative.json | 2 +- .../test/fixtures/julia/tiny_positive.json | 2 +- .../math/base/special/acschf/test/test.js | 1 + .../math/base/special/acschf/test/test.native.js | 1 + 17 files changed, 27 insertions(+), 25 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/README.md b/lib/node_modules/@stdlib/math/base/special/acschf/README.md index f092305fa5e3..6198f2566c4f 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acschf/README.md @@ -20,7 +20,7 @@ limitations under the License. # acschf -> Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number. +> Compute the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number.
@@ -111,10 +111,10 @@ logEachMap( 'acschf(%0.4f) = %0.4f', x, acschf ); #### stdlib_base_acschf( x ) -> Compute the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number. +> Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number. ```c -float out = stdlib_base_acschf( 1.0 ); +float out = stdlib_base_acschf( 1.0f ); // returns ~0.881 ``` @@ -155,7 +155,7 @@ int main( void ) { int i; for ( i = 0; i < 10; i++ ) { v = stdlib_base_acschf( x[ i ] ); - printf( "acsch(%f) = %f\n", x[ i ], v ); + printf( "acschf(%f) = %f\n", x[ i ], v ); } } ``` diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json index ada599e16e22..222eec94edaf 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_negative.json @@ -1 +1 @@ -{"expected":[-1.0e-200,-5.019974849926002e-206,-2.509993725015688e-206,-1.6733305500268516e-206,-1.2549984375269452e-206,-1.003999002024992e-206,-8.36665975022794e-207,-7.171423500207668e-207,-6.274996125189893e-207,-5.5777747223967364e-207,-5.0199975301612156e-207,-4.563634326595951e-207,-4.1833316251395865e-207,-3.8615370090064635e-207,-3.58571303583717e-207,-3.3466655801159086e-207,-3.1374990469846644e-207,-2.9529403340140812e-207,-2.7888881389878562e-207,-2.642104591507096e-207,-2.5099993950901458e-207,-2.3904756429434362e-207,-2.281817683967051e-207,-2.1826082411002838e-207,-2.091666250076472e-207,-2.0079996168736732e-207,-1.9307688772900055e-207,-1.85925893216741e-207,-1.7928568393520922e-207,-1.7310342004209735e-207,-1.6733330700622636e-207,-1.619354592672254e-207,-1.5687497695898776e-207,-1.5212119050156414e-207,-1.4764703850034883e-207,-1.4342855229110461e-207,-1.3944442639413815e-207,-1.3567565862454559e-207,-1.3210524702714879e-207,-1.287179334368197e-207,-1.2549998550475168e-207,-1.2243901062332101e-207,-1.1952379643310801e-207,-1.1674417358474984e-207,-1.1409089721508387e-207,-1.1155554422647029e-207,-1.0913042396446232e-207,-1.0680850029832605e-207,-1.04583323441494e-207,-1.0244897012053398e-207,-1.0039999092384082e-207,-9.8431363844599e-208,-9.653845318417232e-208,-9.471697310793945e-208,-9.296295525048076e-208,-9.127271985474441e-208,-8.964285000344445e-208,-8.807016856294298e-208,-8.655171751224783e-208,-8.508473937414584e-208,-8.366666050322268e-208,-8.229507601768385e-208,-8.096773618938647e-208,-7.968253413005834e-208,-7.843749463193396e-208,-7.723076403848556e-208,-7.606060103599666e-208,-7.492536826977087e-208,-7.382352470008681e-208,-7.275361862285264e-208,-7.171428128849008e-208,-7.07042210600677e-208,-6.972221805825642e-208,-6.876711924642546e-208,-6.7837833914244195e-208,-6.693332952259577e-208,-6.605262787652375e-208,-6.519480159639082e-208,-6.435897086048672e-208,-6.354430039503303e-208,-6.274999668993768e-208,-6.197530542078969e-208,-6.1219509059488565e-208,-6.048192465759923e-208,-5.976190178803869e-208,-5.90588206320555e-208,-5.837209019967563e-208,-5.770114667287634e-208,-5.704545186172533e-208,-5.640449176460055e-208,-5.577777522439518e-208,-5.516483267332459e-208,-5.456521495959368e-208,-5.397849224976309e-208,-5.340425300117711e-208,-5.284210299929096e-208,-5.229166445516502e-208,-5.175257515878423e-208,-5.122448768421499e-208,-5.070706864293447e-208,-5.019999798196008e-208,-4.970296832367423e-208,-4.921568434448297e-208,-4.8737862189669224e-208,-4.826922892200451e-208,-4.780952200186855e-208,-4.7358488796796086e-208,-4.691588611852571e-208,-4.648147978576824e-208,-4.60550442110429e-208,-4.563636201004964e-208,-4.522522363215654e-208,-4.482142701068245e-208,-4.442477723174882e-208,-4.403508622056022e-208,-4.365217244405298e-208,-4.3275860628923946e-208,-4.290598149411941e-208,-4.254237149692622e-208,-4.218487259186503e-208,-4.183333200163893e-208,-4.1487601999439965e-208,-4.114753970196188e-208,-4.0813006872509785e-208,-4.048386973363687e-208,-4.015999878877444e-208,-3.9841268652355795e-208,-3.952755788796581e-208,-3.921874885407718e-208,-3.8914727556961756e-208,-3.8615383510390566e-208,-3.832060960175984e-208,-3.8030301964302143e-208,-3.77443598550625e-208,-3.746268553833819e-208,-3.718518417429907e-208,-3.6911763712521655e-208,-3.6642334790185974e-208,-3.637681063469862e-208,-3.6115106970519154e-208,-3.5857141929979613e-208,-3.560283596789902e-208,-3.5352111779805616e-208,-3.5104894223590417e-208,-3.4861110244425173e-208,-3.462068880278718e-208,-3.438356080544194e-208,-3.4149659039242926e-208,-3.3918918107615066e-208,-3.3691274369595984e-208,-3.3466665881315573e-208,-3.3245032339800905e-208,-3.3026315028999326e-208,-3.281045676791834e-208,-3.2597401860785986e-208,-3.2387096049140495e-208,-3.2179486465762673e-208,-3.1974521590368795e-208,-3.1772151206986077e-208,-3.157232636293661e-208,-3.1374999329359393e-208,-3.1180123563203596e-208,-3.0987653670629493e-208,-3.0797545371756573e-208,-3.0609755466701383e-208,-3.0424241802850332e-208,-3.024096324331544e-208,-3.005987963652337e-208,-2.98809517868906e-208,-2.9704141426539696e-208,-2.952941118801385e-208,-2.9356724577948783e-208,-2.918604595166307e-208,-2.9017340488629767e-208,-2.8850574168793775e-208,-2.8685713749701234e-208,-2.8522726744408582e-208,-2.8361581400140456e-208,-2.820224667766697e-208,-2.8044692231372315e-208,-2.7888888389987665e-208,-2.7734806137962833e-208,-2.7582417097452006e-208,-2.7431693510890154e-208,-2.7282608224137533e-208,-2.7135134670170936e-208,-2.698924685330097e-208,-2.6844919333895745e-208,-2.6702127213592132e-208,-2.6560846120976465e-208,-2.6421052197717457e-208,-2.6282722085134735e-208,-2.614583291118707e-208,-2.6010362277865185e-208,-2.587628824897439e-208,-2.5743589338293235e-208,-2.561224449809455e-208,-2.5482233108016187e-208,-2.5353534964268957e-208,-2.5226130269169975e-208,-2.5099999620990004e-208,-2.4975124004103865e-208,-2.4851484779433395e-208,-2.4729063675172906e-208,-2.4607842777787394e-208,-2.4487804523274247e-208,-2.436893168867943e-208,-2.425120738385961e-208,-2.4134615043481884e-208,-2.4019138419253227e-208,-2.3904761572371887e-208,-2.379146886619349e-208,-2.367924495910467e-208,-2.3568074797597483e-208,-2.3457943609537956e-208,-2.33488368976225e-208,-2.324074043301612e-208,-2.3133640249166475e-208,-2.3027522635788237e-208,-2.2922374133012244e-208,-2.2818181525694216e-208,-2.2714931837878014e-208,-2.261261232740849e-208,-2.2511210480689338e-208,-2.2410714007581317e-208,-2.2311110836436547e-208,-2.221238910926463e-208,-2.2114537177026534e-208,-2.2017543595052328e-208,-2.192139711857898e-208,-2.182608669840454e-208,-2.173160147665524e-208,-2.1637930782662015e-208,-2.1545064128943253e-208,-2.1452991207290528e-208,-2.1361701884954283e-208,-2.1271186200926463e-208,-2.1181434362317296e-208,-2.1092436740823393e-208,-2.1004183869284506e-208,-2.091666643832639e-208,-2.0829875293087243e-208,-2.0743801430025273e-208,-2.0658435993805146e-208,-2.0573770274260955e-208,-2.048979570343357e-208,-2.0406503852680287e-208,-2.0323886429854614e-208,-2.0241935276554375e-208,-2.0160642365436046e-208,-2.00799997975936e-208,-1.99999998e-208,-1.9920634723009578e-208,-1.984189703791967e-208,-1.976377933458987e-208,-1.9686274319117264e-208,-1.9609374811566166e-208,-1.9533073743750855e-208,-1.945736415706989e-208,-1.9382239200390575e-208,-1.9307692127982252e-208,-1.9233716297497104e-208,-1.9160305167997206e-208,-1.9087452298026575e-208,-1.9015151343727046e-208,-1.8943396056996799e-208,-1.8872180283690431e-208,-1.8801497961859477e-208,-1.8731343120032303e-208,-1.8661709875532403e-208,-1.8592592432834023e-208,-1.8523985081954225e-208,-1.845588219688041e-208,-1.8388278234032393e-208,-1.8321167730758168e-208,-1.8254545303862484e-208,-1.8188405648167406e-208,-1.8122743535104067e-208,-1.8057553811334816e-208,-1.7992831397404967e-208,-1.7928571286423468e-208,-1.7864768542771747e-208,-1.7801418300839998e-208,-1.7738515763790282e-208,-1.7676056202345766e-208,-1.7614034953605416e-208,-1.7552447419883613e-208,-1.7491289067573966e-208,-1.7430555426036844e-208,-1.737024208650998e-208,-1.7310344701041617e-208,-1.7250858981445661e-208,-1.719178069827829e-208,-1.7133105679835526e-208,-1.7074829811171271e-208,-1.7016949033135306e-208,-1.695945934143079e-208,-1.6902356785690802e-208,-1.6845637468573488e-208,-1.6789297544875337e-208,-1.6733333220662223e-208,-1.6677740752417744e-208,-1.66225164462085e-208,-1.6567656656865886e-208,-1.651315778718404e-208,-1.6459016287133568e-208,-1.6405228653090692e-208,-1.6351791427081457e-208,-1.6298701196040649e-208,-1.6245954591085138e-208,-1.619354828680125e-208,-1.6141479000545902e-208,-1.6089743491761178e-208,-1.6038338561302046e-208,-1.5987261050776909e-208,-1.5936507841900732e-208,-1.5886075855860441e-208,-1.5835962052692336e-208,-1.5786163430671257e-208,-1.5736677025711226e-208,-1.5687499910777346e-208,-1.5638629195308666e-208,-1.5590062024651828e-208,-1.554179557950522e-208,-1.549382707537342e-208,-1.5446153762031718e-208,-1.539877292300049e-208,-1.5351681875029224e-208,-1.5304877967589976e-208,-1.5258358582380058e-208,-1.5212121132833792e-208,-1.5166163063643084e-208,-1.5120481850286688e-208,-1.5075074998567936e-208,-1.502994004416078e-208,-1.4985074552163957e-208,-1.4940476116663124e-208,-1.4896142360300787e-208,-1.4852070933853856e-208,-1.4808259515818692e-208,-1.4764705812003461e-208,-1.4721407555127666e-208,-1.4678362504428714e-208,-1.4635568445275353e-208,-1.459302318878786e-208,-1.455072457146482e-208,-1.4508670454816398e-208,-1.4466858725003944e-208,-1.4425287292485799e-208,-1.43839540916692e-208,-1.4342857080568164e-208,-1.4301994240467204e-208,-1.426136357559078e-208,-1.4220963112778372e-208,-1.4180790901165055e-208,-1.4140845011867488e-208,-1.4101123537675169e-208,-1.4061624592746903e-208,-1.4022346312312351e-208,-1.3983286852378551e-208,-1.3944444389441359e-208,-1.3905817120201658e-208,-1.3867403261286286e-208,-1.3829201048973583e-208,-1.379120873892344e-208,-1.3753424605911804e-208,-1.371584694356953e-208,-1.3678474064125506e-208,-1.3641304298153947e-208,-1.3604335994325837e-208,-1.3567567519164355e-208,-1.3530997256804297e-208,-1.3494623608755348e-208,-1.3458444993669186e-208,-1.34224598471103e-208,-1.338666662133049e-208,-1.335106378504697e-208,-1.331564982322397e-208,-1.328042323685787e-208,-1.3245382542765644e-208,-1.3210526273376732e-208,-1.317585297652813e-208,-1.314136121526274e-208,-1.3107049567630839e-208,-1.3072916626494683e-208,-1.3038960999336144e-208,-1.300518130806733e-208,-1.2971576188844153e-208,-1.2938144291882772e-208,-1.290488428127887e-208,-1.2871794834829718e-208,-1.2838874643858948e-208,-1.2806122413044044e-208,-1.2773536860246424e-208,-1.2741116716344147e-208,-1.2708860725067136e-208,-1.2676767642834915e-208,-1.264483623859678e-208,-1.2613065293674402e-208,-1.2581453601606774e-208,-1.25499999679975e-208,-1.2518703210364363e-208,-1.248756215799114e-208,-1.2456575651781613e-208,-1.2425742544115774e-208,-1.2395061698708123e-208,-1.2364531990468102e-208,-1.2334152305362544e-208,-1.230392154028018e-208,-1.2273838602898118e-208,-1.2243902411550268e-208,-1.221411189509771e-208,-1.2184465992800925e-208,-1.2154963654193905e-208,-1.212560383896007e-208,-1.2096385516809988e-208,-1.2067307667360855e-208,-1.2038369280017714e-208,-1.2009569353856369e-208,-1.198090689750799e-208,-1.1952380929045352e-208,-1.1923990475870708e-208,-1.1895734574605244e-208,-1.186761227098011e-208,-1.1839622619728996e-208,-1.1811764684482216e-208,-1.1784037537662282e-208,-1.175644026038096e-208,-1.1728971942337758e-208,-1.1701631681719833e-208,-1.16744185851033e-208,-1.1647331767355904e-208,-1.1620370351541067e-208,-1.1593533468823236e-208,-1.1566820258374567e-208,-1.1540229867282864e-208,-1.151376145046082e-208,-1.1487414170556478e-208,-1.1461187197864932e-208,-1.143507971024123e-208,-1.1409090893014463e-208,-1.1383219938903028e-208,-1.1357466047931041e-208,-1.1331828427345871e-208,-1.1306306291536808e-208,-1.1280898861954804e-208,-1.125560536703332e-208,-1.1230425042110215e-208,-1.1205357129350686e-208,-1.1180400877671242e-208,-1.1155555542664692e-208,-1.1130820386526123e-208,-1.1106194677979874e-208,-1.1081677692207456e-208,-1.1057268710776457e-208,-1.1032967021570342e-208,-1.100877191871922e-208,-1.0984682702531494e-208,-1.0960698679426404e-208,-1.0936819161867468e-208,-1.0913043468296786e-208,-1.088937092307019e-208,-1.0865800856393246e-208,-1.084233260425808e-208,-1.081896550838102e-208,-1.0795698916141057e-208,-1.0772532180519074e-208,-1.0749464660037874e-208,-1.0726495718702974e-208,-1.0703624725944146e-208,-1.0680851056557719e-208,-1.065817409064961e-208,-1.0635593213579073e-208,-1.061310781590317e-208,-1.059071729332194e-208,-1.0568421046624266e-208,-1.0546218481634418e-208,-1.0524109009159271e-208,-1.0502092044936188e-208,-1.0480167009581548e-208,-1.045833332853993e-208,-1.043659043203392e-208,-1.0414937755014549e-208,-1.0393374737112336e-208,-1.0371900822588962e-208,-1.035051546028951e-208,-1.032921810359532e-208,-1.030800821037741e-208,-1.0286885242950484e-208,-1.0265848668027484e-208,-1.0244897956674718e-208,-1.0224032584267528e-208,-1.0203252030446493e-208,-1.0182555779074177e-208,-1.0161943318192398e-208,-1.0141414139980003e-208,-1.0120967740711173e-208,-1.0100603620714225e-208,-1.0080321284330898e-208,-1.0060120239876146e-208,-1.00399999995984e-208,-1.001996007964032e-208,-1.0e-208],"x":[-1.0e200,-1.9920418525896414e205,-3.9840737051792828e205,-5.9761055577689245e205,-7.9681374103585654e205,-9.960169262948207e205,-1.1952201115537848e206,-1.3944232968127489e206,-1.5936264820717132e206,-1.792829667330677e206,-1.9920328525896414e206,-2.1912360378486056e206,-2.3904392231075695e206,-2.5896424083665338e206,-2.788845593625498e206,-2.988048778884462e206,-3.1872519641434262e206,-3.3864551494023905e206,-3.5856583346613544e206,-3.784861519920318e206,-3.984064705179283e206,-4.183267890438247e206,-4.382471075697211e206,-4.5816742609561754e206,-4.780877446215139e206,-4.980080631474103e206,-5.179283816733068e206,-5.378487001992032e206,-5.577690187250996e206,-5.77689337250996e206,-5.976096557768924e206,-6.175299743027888e206,-6.374502928286853e206,-6.573706113545817e206,-6.77290929880478e206,-6.972112484063744e206,-7.171315669322708e206,-7.370518854581674e206,-7.569722039840638e206,-7.768925225099602e206,-7.968128410358565e206,-8.16733159561753e206,-8.366534780876493e206,-8.565737966135459e206,-8.764941151394423e206,-8.964144336653386e206,-9.16334752191235e206,-9.362550707171314e206,-9.561753892430278e206,-9.760957077689244e206,-9.960160262948207e206,-1.0159363448207171e207,-1.0358566633466135e207,-1.0557769818725099e207,-1.0756973003984063e207,-1.0956176189243027e207,-1.1155379374501992e207,-1.1354582559760956e207,-1.155378574501992e207,-1.1752988930278884e207,-1.1952192115537848e207,-1.2151395300796812e207,-1.2350598486055777e207,-1.2549801671314741e207,-1.2749004856573705e207,-1.294820804183267e207,-1.3147411227091633e207,-1.3346614412350597e207,-1.354581759760956e207,-1.3745020782868525e207,-1.3944223968127489e207,-1.4143427153386455e207,-1.434263033864542e207,-1.4541833523904383e207,-1.4741036709163347e207,-1.494023989442231e207,-1.5139443079681275e207,-1.533864626494024e207,-1.5537849450199203e207,-1.5737052635458167e207,-1.593625582071713e207,-1.6135459005976094e207,-1.6334662191235058e207,-1.6533865376494022e207,-1.673306856175299e207,-1.6932271747011953e207,-1.7131474932270917e207,-1.733067811752988e207,-1.7529881302788845e207,-1.7729084488047809e207,-1.7928287673306772e207,-1.8127490858565736e207,-1.83266940438247e207,-1.8525897229083664e207,-1.8725100414342628e207,-1.8924303599601592e207,-1.912350678486056e207,-1.9322709970119523e207,-1.9521913155378487e207,-1.972111634063745e207,-1.9920319525896414e207,-2.0119522711155378e207,-2.0318725896414342e207,-2.0517929081673306e207,-2.071713226693227e207,-2.0916335452191234e207,-2.1115538637450198e207,-2.1314741822709162e207,-2.1513945007968126e207,-2.1713148193227092e207,-2.1912351378486056e207,-2.211155456374502e207,-2.2310757749003984e207,-2.2509960934262948e207,-2.2709164119521912e207,-2.2908367304780876e207,-2.310757049003984e207,-2.3306773675298804e207,-2.3505976860557768e207,-2.3705180045816732e207,-2.3904383231075696e207,-2.4103586416334662e207,-2.4302789601593626e207,-2.450199278685259e207,-2.4701195972111554e207,-2.4900399157370518e207,-2.5099602342629482e207,-2.5298805527888446e207,-2.549800871314741e207,-2.5697211898406374e207,-2.589641508366534e207,-2.60956182689243e207,-2.6294821454183265e207,-2.649402463944223e207,-2.6693227824701193e207,-2.6892431009960157e207,-2.709163419521912e207,-2.7290837380478085e207,-2.749004056573705e207,-2.768924375099601e207,-2.788844693625498e207,-2.8087650121513946e207,-2.828685330677291e207,-2.8486056492031874e207,-2.868525967729084e207,-2.88844628625498e207,-2.9083666047808766e207,-2.928286923306773e207,-2.9482072418326694e207,-2.968127560358566e207,-2.988047878884462e207,-3.0079681974103585e207,-3.027888515936255e207,-3.0478088344621513e207,-3.0677291529880477e207,-3.087649471513944e207,-3.1075697900398405e207,-3.127490108565737e207,-3.147410427091633e207,-3.1673307456175297e207,-3.187251064143426e207,-3.2071713826693224e207,-3.227091701195219e207,-3.247012019721115e207,-3.2669323382470116e207,-3.2868526567729086e207,-3.306772975298805e207,-3.3266932938247014e207,-3.346613612350598e207,-3.366533930876494e207,-3.3864542494023905e207,-3.406374567928287e207,-3.4262948864541833e207,-3.4462152049800797e207,-3.466135523505976e207,-3.4860558420318725e207,-3.505976160557769e207,-3.525896479083665e207,-3.5458167976095617e207,-3.565737116135458e207,-3.5856574346613544e207,-3.605577753187251e207,-3.625498071713147e207,-3.6454183902390436e207,-3.66533870876494e207,-3.6852590272908364e207,-3.705179345816733e207,-3.725099664342629e207,-3.7450199828685256e207,-3.764940301394422e207,-3.784860619920319e207,-3.8047809384462153e207,-3.8247012569721117e207,-3.844621575498008e207,-3.8645418940239045e207,-3.884462212549801e207,-3.904382531075697e207,-3.9243028496015937e207,-3.94422316812749e207,-3.9641434866533865e207,-3.984063805179283e207,-4.003984123705179e207,-4.0239044422310756e207,-4.043824760756972e207,-4.0637450792828684e207,-4.083665397808765e207,-4.103585716334661e207,-4.1235060348605576e207,-4.143426353386454e207,-4.1633466719123504e207,-4.183266990438247e207,-4.203187308964143e207,-4.2231076274900395e207,-4.243027946015936e207,-4.2629482645418323e207,-4.282868583067729e207,-4.3027889015936257e207,-4.322709220119522e207,-4.3426295386454185e207,-4.362549857171315e207,-4.382470175697211e207,-4.4023904942231076e207,-4.422310812749004e207,-4.4422311312749004e207,-4.462151449800797e207,-4.482071768326693e207,-4.5019920868525896e207,-4.521912405378486e207,-4.5418327239043824e207,-4.561753042430279e207,-4.581673360956175e207,-4.6015936794820715e207,-4.621513998007968e207,-4.6414343165338643e207,-4.6613546350597607e207,-4.681274953585657e207,-4.7011952721115535e207,-4.72111559063745e207,-4.741035909163346e207,-4.7609562276892427e207,-4.7808765462151396e207,-4.800796864741036e207,-4.8207171832669324e207,-4.840637501792829e207,-4.860557820318725e207,-4.8804781388446216e207,-4.900398457370518e207,-4.9203187758964144e207,-4.940239094422311e207,-4.960159412948207e207,-4.9800797314741035e207,-5.00000005e207,-5.0199203685258963e207,-5.0398406870517927e207,-5.059761005577689e207,-5.0796813241035855e207,-5.099601642629482e207,-5.119521961155378e207,-5.139442279681275e207,-5.159362598207171e207,-5.179282916733067e207,-5.199203235258964e207,-5.21912355378486e207,-5.239043872310757e207,-5.258964190836653e207,-5.278884509362549e207,-5.298804827888446e207,-5.318725146414342e207,-5.338645464940239e207,-5.358565783466135e207,-5.378486101992031e207,-5.398406420517928e207,-5.418326739043824e207,-5.43824705756972e207,-5.458167376095617e207,-5.478087694621513e207,-5.49800801314741e207,-5.517928331673307e207,-5.537848650199204e207,-5.5577689687251e207,-5.577689287250996e207,-5.597609605776893e207,-5.617529924302789e207,-5.637450242828686e207,-5.657370561354582e207,-5.677290879880478e207,-5.697211198406375e207,-5.717131516932271e207,-5.737051835458168e207,-5.756972153984064e207,-5.77689247250996e207,-5.796812791035857e207,-5.816733109561753e207,-5.83665342808765e207,-5.856573746613546e207,-5.876494065139442e207,-5.896414383665339e207,-5.916334702191235e207,-5.936255020717131e207,-5.956175339243028e207,-5.976095657768924e207,-5.996015976294821e207,-6.015936294820717e207,-6.035856613346613e207,-6.05577693187251e207,-6.075697250398406e207,-6.095617568924303e207,-6.115537887450199e207,-6.135458205976095e207,-6.155378524501992e207,-6.175298843027888e207,-6.195219161553785e207,-6.215139480079681e207,-6.235059798605577e207,-6.254980117131474e207,-6.27490043565737e207,-6.294820754183266e207,-6.314741072709163e207,-6.334661391235059e207,-6.354581709760956e207,-6.374502028286852e207,-6.394422346812748e207,-6.414342665338645e207,-6.434262983864541e207,-6.454183302390438e207,-6.474103620916334e207,-6.49402393944223e207,-6.513944257968128e207,-6.533864576494024e207,-6.553784895019921e207,-6.573705213545817e207,-6.593625532071714e207,-6.61354585059761e207,-6.633466169123506e207,-6.653386487649403e207,-6.673306806175299e207,-6.693227124701195e207,-6.713147443227092e207,-6.733067761752988e207,-6.752988080278885e207,-6.772908398804781e207,-6.792828717330677e207,-6.812749035856574e207,-6.83266935438247e207,-6.852589672908367e207,-6.872509991434263e207,-6.892430309960159e207,-6.912350628486056e207,-6.932270947011952e207,-6.952191265537849e207,-6.972111584063745e207,-6.992031902589641e207,-7.011952221115538e207,-7.031872539641434e207,-7.05179285816733e207,-7.071713176693227e207,-7.091633495219123e207,-7.11155381374502e207,-7.131474132270916e207,-7.151394450796812e207,-7.171314769322709e207,-7.191235087848605e207,-7.211155406374502e207,-7.231075724900398e207,-7.250996043426294e207,-7.270916361952191e207,-7.290836680478087e207,-7.310756999003984e207,-7.33067731752988e207,-7.350597636055776e207,-7.370517954581673e207,-7.390438273107569e207,-7.410358591633466e207,-7.430278910159362e207,-7.450199228685258e207,-7.470119547211155e207,-7.490039865737051e207,-7.509960184262949e207,-7.529880502788845e207,-7.549800821314741e207,-7.569721139840638e207,-7.589641458366534e207,-7.609561776892431e207,-7.629482095418327e207,-7.649402413944223e207,-7.66932273247012e207,-7.689243050996016e207,-7.709163369521913e207,-7.729083688047809e207,-7.749004006573705e207,-7.768924325099602e207,-7.788844643625498e207,-7.808764962151395e207,-7.828685280677291e207,-7.848605599203187e207,-7.868525917729084e207,-7.88844623625498e207,-7.908366554780876e207,-7.928286873306773e207,-7.948207191832669e207,-7.968127510358566e207,-7.988047828884462e207,-8.007968147410358e207,-8.027888465936255e207,-8.047808784462151e207,-8.067729102988048e207,-8.087649421513944e207,-8.10756974003984e207,-8.127490058565737e207,-8.147410377091633e207,-8.16733069561753e207,-8.187251014143426e207,-8.207171332669322e207,-8.227091651195219e207,-8.247011969721115e207,-8.266932288247012e207,-8.286852606772908e207,-8.306772925298804e207,-8.326693243824701e207,-8.346613562350597e207,-8.366533880876493e207,-8.38645419940239e207,-8.406374517928286e207,-8.426294836454183e207,-8.446215154980079e207,-8.466135473505975e207,-8.486055792031872e207,-8.505976110557769e207,-8.525896429083666e207,-8.545816747609562e207,-8.565737066135459e207,-8.585657384661355e207,-8.605577703187251e207,-8.625498021713148e207,-8.645418340239044e207,-8.66533865876494e207,-8.685258977290837e207,-8.705179295816733e207,-8.72509961434263e207,-8.745019932868526e207,-8.764940251394422e207,-8.784860569920319e207,-8.804780888446215e207,-8.824701206972112e207,-8.844621525498008e207,-8.864541844023904e207,-8.884462162549801e207,-8.904382481075697e207,-8.924302799601594e207,-8.94422311812749e207,-8.964143436653386e207,-8.984063755179283e207,-9.003984073705179e207,-9.023904392231076e207,-9.043824710756972e207,-9.063745029282868e207,-9.083665347808765e207,-9.103585666334661e207,-9.123505984860557e207,-9.143426303386454e207,-9.16334662191235e207,-9.183266940438247e207,-9.203187258964143e207,-9.223107577490039e207,-9.243027896015936e207,-9.262948214541832e207,-9.282868533067729e207,-9.302788851593625e207,-9.322709170119521e207,-9.342629488645418e207,-9.362549807171314e207,-9.38247012569721e207,-9.402390444223107e207,-9.422310762749003e207,-9.4422310812749e207,-9.462151399800796e207,-9.482071718326693e207,-9.50199203685259e207,-9.521912355378486e207,-9.541832673904383e207,-9.561752992430279e207,-9.581673310956176e207,-9.601593629482072e207,-9.621513948007968e207,-9.641434266533865e207,-9.661354585059761e207,-9.681274903585658e207,-9.701195222111554e207,-9.72111554063745e207,-9.741035859163347e207,-9.760956177689243e207,-9.78087649621514e207,-9.800796814741036e207,-9.820717133266932e207,-9.840637451792829e207,-9.860557770318725e207,-9.880478088844621e207,-9.900398407370518e207,-9.920318725896414e207,-9.940239044422311e207,-9.960159362948207e207,-9.980079681474103e207,-1.0e208]} +{"expected":[-1.0000001e-38,-1.0019961e-38,-1.0040001e-38,-1.006012e-38,-1.008032e-38,-1.0100603e-38,-1.0120968e-38,-1.0141414e-38,-1.0161943e-38,-1.0182555e-38,-1.0203252e-38,-1.0224032e-38,-1.0244897e-38,-1.0265848e-38,-1.0286886e-38,-1.0308009e-38,-1.0329218e-38,-1.0350516e-38,-1.0371901e-38,-1.0393375e-38,-1.0414938e-38,-1.0436591e-38,-1.0458333e-38,-1.0480167e-38,-1.0502092e-38,-1.0524109e-38,-1.0546218e-38,-1.056842e-38,-1.0590717e-38,-1.0613108e-38,-1.0635593e-38,-1.0658174e-38,-1.0680851e-38,-1.0703625e-38,-1.0726496e-38,-1.0749464e-38,-1.0772532e-38,-1.0795699e-38,-1.0818966e-38,-1.0842332e-38,-1.0865801e-38,-1.0889371e-38,-1.0913043e-38,-1.0936819e-38,-1.0960699e-38,-1.0984682e-38,-1.1008772e-38,-1.1032967e-38,-1.1057268e-38,-1.1081677e-38,-1.1106194e-38,-1.113082e-38,-1.1155555e-38,-1.1180401e-38,-1.1205357e-38,-1.1230425e-38,-1.1255605e-38,-1.12809e-38,-1.1306307e-38,-1.1331828e-38,-1.1357467e-38,-1.1383221e-38,-1.1409092e-38,-1.143508e-38,-1.1461188e-38,-1.1487413e-38,-1.151376e-38,-1.154023e-38,-1.1566819e-38,-1.1593534e-38,-1.162037e-38,-1.1647332e-38,-1.1674418e-38,-1.1701631e-38,-1.1728972e-38,-1.175644e-38,-1.1784037e-38,-1.1811765e-38,-1.1839623e-38,-1.1867612e-38,-1.1895735e-38,-1.192399e-38,-1.1952381e-38,-1.1980907e-38,-1.2009569e-38,-1.2038369e-38,-1.2067308e-38,-1.2096385e-38,-1.2125604e-38,-1.2154964e-38,-1.2184465e-38,-1.2214111e-38,-1.2243903e-38,-1.2273839e-38,-1.2303922e-38,-1.2334152e-38,-1.2364532e-38,-1.2395062e-38,-1.2425742e-38,-1.2456576e-38,-1.2487562e-38,-1.2518703e-38,-1.255e-38,-1.2581453e-38,-1.2613065e-38,-1.2644837e-38,-1.2676768e-38,-1.270886e-38,-1.2741117e-38,-1.2773538e-38,-1.2806123e-38,-1.2838874e-38,-1.2871795e-38,-1.2904884e-38,-1.2938144e-38,-1.2971576e-38,-1.3005182e-38,-1.3038962e-38,-1.3072917e-38,-1.310705e-38,-1.3141362e-38,-1.3175853e-38,-1.3210525e-38,-1.3245383e-38,-1.3280424e-38,-1.331565e-38,-1.3351064e-38,-1.3386667e-38,-1.342246e-38,-1.3458446e-38,-1.3494625e-38,-1.3530997e-38,-1.3567567e-38,-1.3604335e-38,-1.3641304e-38,-1.3678474e-38,-1.3715846e-38,-1.3753425e-38,-1.379121e-38,-1.3829202e-38,-1.3867404e-38,-1.3905816e-38,-1.3944444e-38,-1.3983287e-38,-1.4022347e-38,-1.4061625e-38,-1.4101124e-38,-1.4140845e-38,-1.4180792e-38,-1.4220964e-38,-1.4261363e-38,-1.4301994e-38,-1.4342857e-38,-1.4383953e-38,-1.4425287e-38,-1.4466858e-38,-1.450867e-38,-1.4550725e-38,-1.4593024e-38,-1.4635569e-38,-1.4678363e-38,-1.4721407e-38,-1.4764706e-38,-1.480826e-38,-1.4852071e-38,-1.4896142e-38,-1.4940476e-38,-1.4985075e-38,-1.502994e-38,-1.5075075e-38,-1.5120483e-38,-1.5166162e-38,-1.521212e-38,-1.5258358e-38,-1.5304878e-38,-1.5351681e-38,-1.5398774e-38,-1.5446154e-38,-1.5493828e-38,-1.5541796e-38,-1.5590062e-38,-1.5638628e-38,-1.56875e-38,-1.5736677e-38,-1.5786162e-38,-1.5835962e-38,-1.5886076e-38,-1.5936508e-38,-1.5987261e-38,-1.6038339e-38,-1.6089744e-38,-1.614148e-38,-1.6193548e-38,-1.6245954e-38,-1.6298701e-38,-1.6351791e-38,-1.6405228e-38,-1.6459017e-38,-1.6513158e-38,-1.6567657e-38,-1.6622518e-38,-1.6677741e-38,-1.6733332e-38,-1.6789297e-38,-1.6845637e-38,-1.6902357e-38,-1.695946e-38,-1.701695e-38,-1.707483e-38,-1.7133106e-38,-1.7191781e-38,-1.725086e-38,-1.7310344e-38,-1.7370242e-38,-1.7430555e-38,-1.7491289e-38,-1.7552447e-38,-1.7614034e-38,-1.7676056e-38,-1.7738516e-38,-1.7801419e-38,-1.7864769e-38,-1.792857e-38,-1.799283e-38,-1.8057554e-38,-1.8122744e-38,-1.8188406e-38,-1.8254546e-38,-1.8321167e-38,-1.8388278e-38,-1.8455883e-38,-1.8523986e-38,-1.8592592e-38,-1.866171e-38,-1.8731343e-38,-1.8801498e-38,-1.887218e-38,-1.8943396e-38,-1.9015152e-38,-1.9087452e-38,-1.9160306e-38,-1.9233717e-38,-1.9307691e-38,-1.9382239e-38,-1.9457364e-38,-1.9533073e-38,-1.9609374e-38,-1.9686275e-38,-1.9763779e-38,-1.9841897e-38,-1.9920635e-38,-2.0e-38,-2.0079999e-38,-2.0160642e-38,-2.0241934e-38,-2.0323886e-38,-2.0406504e-38,-2.0489796e-38,-2.057377e-38,-2.0658437e-38,-2.0743802e-38,-2.0829876e-38,-2.0916668e-38,-2.1004183e-38,-2.1092436e-38,-2.1181433e-38,-2.1271187e-38,-2.1361702e-38,-2.1452991e-38,-2.1545065e-38,-2.1637932e-38,-2.1731603e-38,-2.1826088e-38,-2.1921396e-38,-2.2017543e-38,-2.2114537e-38,-2.2212388e-38,-2.2311111e-38,-2.2410714e-38,-2.2511211e-38,-2.2612613e-38,-2.2714933e-38,-2.2818182e-38,-2.2922373e-38,-2.3027522e-38,-2.313364e-38,-2.324074e-38,-2.3348837e-38,-2.3457944e-38,-2.3568075e-38,-2.3679245e-38,-2.379147e-38,-2.3904762e-38,-2.4019138e-38,-2.4134617e-38,-2.4251208e-38,-2.436893e-38,-2.4487806e-38,-2.4607844e-38,-2.4729064e-38,-2.4851485e-38,-2.4975124e-38,-2.51e-38,-2.522613e-38,-2.5353536e-38,-2.5482234e-38,-2.5612244e-38,-2.574359e-38,-2.5876288e-38,-2.6010364e-38,-2.6145833e-38,-2.628272e-38,-2.642105e-38,-2.6560847e-38,-2.670213e-38,-2.684492e-38,-2.6989247e-38,-2.7135133e-38,-2.7282608e-38,-2.7431693e-38,-2.758242e-38,-2.7734805e-38,-2.788889e-38,-2.8044693e-38,-2.8202247e-38,-2.8361583e-38,-2.8522727e-38,-2.8685715e-38,-2.8850575e-38,-2.901734e-38,-2.9186048e-38,-2.9356724e-38,-2.952941e-38,-2.9704142e-38,-2.9880952e-38,-3.005988e-38,-3.0240963e-38,-3.042424e-38,-3.0609756e-38,-3.0797547e-38,-3.0987656e-38,-3.1180124e-38,-3.1375e-38,-3.1572325e-38,-3.1772153e-38,-3.1974523e-38,-3.2179485e-38,-3.2387096e-38,-3.2597403e-38,-3.2810456e-38,-3.3026315e-38,-3.3245033e-38,-3.3466665e-38,-3.3691273e-38,-3.391892e-38,-3.414966e-38,-3.438356e-38,-3.4620687e-38,-3.486111e-38,-3.5104895e-38,-3.5352112e-38,-3.5602835e-38,-3.585714e-38,-3.6115108e-38,-3.637681e-38,-3.6642335e-38,-3.6911763e-38,-3.7185184e-38,-3.7462686e-38,-3.774436e-38,-3.8030304e-38,-3.8320608e-38,-3.8615383e-38,-3.8914728e-38,-3.9218748e-38,-3.9527558e-38,-3.9841267e-38,-4.0159998e-38,-4.0483869e-38,-4.0813008e-38,-4.114754e-38,-4.1487605e-38,-4.183333e-38,-4.218487e-38,-4.2542373e-38,-4.2905982e-38,-4.3275863e-38,-4.365217e-38,-4.4035087e-38,-4.4424777e-38,-4.4821428e-38,-4.5225226e-38,-4.563636e-38,-4.6055044e-38,-4.648148e-38,-4.6915887e-38,-4.735849e-38,-4.7809523e-38,-4.826923e-38,-4.873786e-38,-4.921568e-38,-4.970297e-38,-5.02e-38,-5.0707067e-38,-5.122449e-38,-5.1752576e-38,-5.2291666e-38,-5.28421e-38,-5.340425e-38,-5.3978493e-38,-5.4565217e-38,-5.516483e-38,-5.577778e-38,-5.640449e-38,-5.7045454e-38,-5.770115e-38,-5.837209e-38,-5.905882e-38,-5.97619e-38,-6.0481925e-38,-6.121951e-38,-6.1975306e-38,-6.275e-38,-6.35443e-38,-6.435897e-38,-6.5194806e-38,-6.6052625e-38,-6.693333e-38,-6.7837834e-38,-6.876712e-38,-6.972222e-38,-7.070422e-38,-7.171428e-38,-7.2753617e-38,-7.3823525e-38,-7.492537e-38,-7.60606e-38,-7.7230766e-38,-7.843749e-38,-7.9682533e-38,-8.0967737e-38,-8.2295075e-38,-8.366666e-38,-8.5084746e-38,-8.6551715e-38,-8.8070174e-38,-8.9642845e-38,-9.127272e-38,-9.296296e-38,-9.471697e-38,-9.653846e-38,-9.843136e-38,-1.004e-37,-1.0244896e-37,-1.0458332e-37,-1.068085e-37,-1.0913042e-37,-1.1155554e-37,-1.140909e-37,-1.1674417e-37,-1.195238e-37,-1.2243901e-37,-1.2549999e-37,-1.2871793e-37,-1.3210524e-37,-1.3567567e-37,-1.3944443e-37,-1.4342855e-37,-1.4764704e-37,-1.5212118e-37,-1.5687498e-37,-1.6193546e-37,-1.6733331e-37,-1.7310341e-37,-1.7928569e-37,-1.859259e-37,-1.9307689e-37,-2.0079995e-37,-2.0916662e-37,-2.1826082e-37,-2.2818177e-37,-2.3904757e-37,-2.5099993e-37,-2.6421045e-37,-2.788888e-37,-2.9529403e-37,-3.137499e-37,-3.3466657e-37,-3.5857131e-37,-3.861537e-37,-4.183332e-37,-4.563634e-37,-5.0199973e-37,-5.5777746e-37,-6.274996e-37,-7.1714236e-37,-8.366659e-37,-1.003999e-36,-1.2549985e-36,-1.6733306e-36,-2.5099938e-36,-5.019975e-36,-1.0e-30],"x":[-1.0e38,-9.980079e37,-9.960159e37,-9.940239e37,-9.920319e37,-9.900399e37,-9.880478e37,-9.860558e37,-9.840638e37,-9.820717e37,-9.800797e37,-9.780877e37,-9.760956e37,-9.741036e37,-9.721116e37,-9.701195e37,-9.681275e37,-9.661354e37,-9.641434e37,-9.621514e37,-9.601593e37,-9.581673e37,-9.561753e37,-9.541832e37,-9.521913e37,-9.501992e37,-9.482072e37,-9.462152e37,-9.442231e37,-9.422311e37,-9.402391e37,-9.38247e37,-9.36255e37,-9.34263e37,-9.322709e37,-9.302789e37,-9.282868e37,-9.262948e37,-9.243028e37,-9.223107e37,-9.203187e37,-9.183267e37,-9.163346e37,-9.143426e37,-9.123505e37,-9.103586e37,-9.083666e37,-9.063745e37,-9.043825e37,-9.023905e37,-9.003984e37,-8.984064e37,-8.964144e37,-8.944223e37,-8.924303e37,-8.904382e37,-8.884462e37,-8.864542e37,-8.844621e37,-8.824701e37,-8.804781e37,-8.78486e37,-8.76494e37,-8.74502e37,-8.725099e37,-8.70518e37,-8.685259e37,-8.665339e37,-8.645419e37,-8.625498e37,-8.605578e37,-8.585658e37,-8.565737e37,-8.545817e37,-8.525896e37,-8.505976e37,-8.4860557e37,-8.4661354e37,-8.446215e37,-8.4262946e37,-8.406375e37,-8.3864544e37,-8.366534e37,-8.3466137e37,-8.3266933e37,-8.306773e37,-8.2868525e37,-8.266932e37,-8.247012e37,-8.2270914e37,-8.2071716e37,-8.187251e37,-8.167331e37,-8.1474105e37,-8.12749e37,-8.1075697e37,-8.0876494e37,-8.067729e37,-8.0478086e37,-8.0278883e37,-8.0079684e37,-7.988048e37,-7.9681277e37,-7.9482073e37,-7.928287e37,-7.9083666e37,-7.888446e37,-7.868526e37,-7.8486054e37,-7.828685e37,-7.8087647e37,-7.788845e37,-7.7689245e37,-7.749004e37,-7.7290837e37,-7.7091634e37,-7.689243e37,-7.6693226e37,-7.6494023e37,-7.629482e37,-7.6095615e37,-7.5896417e37,-7.5697213e37,-7.549801e37,-7.5298806e37,-7.50996e37,-7.49004e37,-7.4701195e37,-7.450199e37,-7.4302787e37,-7.4103584e37,-7.3904385e37,-7.370518e37,-7.350598e37,-7.3306774e37,-7.310757e37,-7.2908367e37,-7.2709163e37,-7.250996e37,-7.2310755e37,-7.211155e37,-7.1912353e37,-7.171315e37,-7.1513946e37,-7.131474e37,-7.111554e37,-7.0916335e37,-7.071713e37,-7.0517927e37,-7.0318724e37,-7.011952e37,-6.992032e37,-6.972112e37,-6.9521914e37,-6.932271e37,-6.9123507e37,-6.8924303e37,-6.87251e37,-6.8525896e37,-6.832669e37,-6.812749e37,-6.792829e37,-6.7729086e37,-6.752988e37,-6.733068e37,-6.7131475e37,-6.693227e37,-6.6733067e37,-6.6533864e37,-6.633466e37,-6.6135456e37,-6.593626e37,-6.5737054e37,-6.553785e37,-6.5338647e37,-6.5139443e37,-6.494024e37,-6.4741036e37,-6.454183e37,-6.434263e37,-6.4143425e37,-6.3944226e37,-6.374502e37,-6.354582e37,-6.3346615e37,-6.314741e37,-6.294821e37,-6.2749004e37,-6.25498e37,-6.2350597e37,-6.2151393e37,-6.195219e37,-6.175299e37,-6.1553787e37,-6.1354583e37,-6.115538e37,-6.0956176e37,-6.075697e37,-6.055777e37,-6.0358565e37,-6.015936e37,-5.9960157e37,-5.976096e37,-5.9561755e37,-5.936255e37,-5.916335e37,-5.8964144e37,-5.876494e37,-5.8565737e37,-5.8366533e37,-5.816733e37,-5.7968126e37,-5.7768927e37,-5.7569723e37,-5.737052e37,-5.7171316e37,-5.697211e37,-5.677291e37,-5.6573705e37,-5.63745e37,-5.6175297e37,-5.5976094e37,-5.5776895e37,-5.557769e37,-5.537849e37,-5.5179284e37,-5.498008e37,-5.4780877e37,-5.4581673e37,-5.438247e37,-5.4183266e37,-5.398406e37,-5.3784863e37,-5.358566e37,-5.3386456e37,-5.318725e37,-5.298805e37,-5.2788845e37,-5.258964e37,-5.239044e37,-5.2191234e37,-5.199203e37,-5.179283e37,-5.159363e37,-5.1394424e37,-5.119522e37,-5.0996017e37,-5.0796813e37,-5.059761e37,-5.0398406e37,-5.01992e37,-5.0e37,-4.98008e37,-4.9601596e37,-4.940239e37,-4.920319e37,-4.9003985e37,-4.880478e37,-4.860558e37,-4.8406374e37,-4.820717e37,-4.8007967e37,-4.7808763e37,-4.7609564e37,-4.741036e37,-4.7211157e37,-4.7011953e37,-4.681275e37,-4.6613546e37,-4.641434e37,-4.621514e37,-4.6015935e37,-4.581673e37,-4.561753e37,-4.541833e37,-4.5219125e37,-4.501992e37,-4.482072e37,-4.4621514e37,-4.442231e37,-4.4223107e37,-4.4023903e37,-4.38247e37,-4.36255e37,-4.3426297e37,-4.3227093e37,-4.302789e37,-4.2828686e37,-4.262948e37,-4.2430279e37,-4.2231077e37,-4.2031874e37,-4.183267e37,-4.1633466e37,-4.1434263e37,-4.1235062e37,-4.1035858e37,-4.0836654e37,-4.063745e37,-4.0438247e37,-4.0239046e37,-4.0039842e37,-3.9840638e37,-3.9641435e37,-3.944223e37,-3.9243027e37,-3.9043826e37,-3.8844622e37,-3.8645419e37,-3.8446215e37,-3.8247011e37,-3.804781e37,-3.7848607e37,-3.7649403e37,-3.74502e37,-3.7250995e37,-3.7051794e37,-3.685259e37,-3.6653387e37,-3.6454183e37,-3.625498e37,-3.6055778e37,-3.5856575e37,-3.565737e37,-3.5458167e37,-3.5258964e37,-3.5059763e37,-3.486056e37,-3.4661355e37,-3.4462151e37,-3.4262948e37,-3.4063747e37,-3.3864543e37,-3.366534e37,-3.3466136e37,-3.3266932e37,-3.306773e37,-3.2868527e37,-3.2669323e37,-3.247012e37,-3.2270916e37,-3.2071715e37,-3.187251e37,-3.1673307e37,-3.1474104e37,-3.12749e37,-3.10757e37,-3.0876495e37,-3.0677292e37,-3.0478088e37,-3.0278884e37,-3.0079683e37,-2.988048e37,-2.9681276e37,-2.9482072e37,-2.9282868e37,-2.9083667e37,-2.8884463e37,-2.868526e37,-2.8486056e37,-2.8286852e37,-2.808765e37,-2.7888448e37,-2.7689244e37,-2.749004e37,-2.7290837e37,-2.7091635e37,-2.6892432e37,-2.6693228e37,-2.6494024e37,-2.629482e37,-2.609562e37,-2.5896416e37,-2.5697212e37,-2.5498008e37,-2.5298805e37,-2.5099604e37,-2.49004e37,-2.4701196e37,-2.4501993e37,-2.430279e37,-2.4103585e37,-2.3904384e37,-2.370518e37,-2.3505977e37,-2.3306773e37,-2.310757e37,-2.2908368e37,-2.2709164e37,-2.250996e37,-2.2310757e37,-2.2111553e37,-2.1912352e37,-2.1713149e37,-2.1513945e37,-2.131474e37,-2.1115539e37,-2.0916335e37,-2.0717133e37,-2.0517929e37,-2.0318727e37,-2.0119523e37,-1.9920319e37,-1.9721117e37,-1.9521913e37,-1.9322709e37,-1.9123507e37,-1.8924303e37,-1.8725101e37,-1.8525897e37,-1.8326693e37,-1.8127491e37,-1.7928287e37,-1.7729085e37,-1.7529881e37,-1.7330678e37,-1.7131475e37,-1.6932271e37,-1.6733069e37,-1.6533865e37,-1.6334662e37,-1.6135459e37,-1.5936256e37,-1.5737053e37,-1.553785e37,-1.5338646e37,-1.5139443e37,-1.494024e37,-1.4741037e37,-1.4541834e37,-1.434263e37,-1.4143427e37,-1.3944224e37,-1.3745021e37,-1.3545818e37,-1.3346614e37,-1.3147412e37,-1.2948208e37,-1.2749005e37,-1.2549802e37,-1.2350598e37,-1.2151396e37,-1.1952192e37,-1.1752988e37,-1.1553786e37,-1.1354582e37,-1.115538e37,-1.0956176e37,-1.0756972e37,-1.055777e37,-1.0358567e37,-1.0159363e37,-9.96016e36,-9.760957e36,-9.561754e36,-9.3625504e36,-9.1633474e36,-8.964144e36,-8.764941e36,-8.565738e36,-8.3665345e36,-8.1673315e36,-7.9681284e36,-7.7689254e36,-7.5697223e36,-7.3705186e36,-7.1713156e36,-6.9721125e36,-6.7729095e36,-6.5737064e36,-6.374503e36,-6.1753e36,-5.9760966e36,-5.7768936e36,-5.57769e36,-5.378487e36,-5.1792838e36,-4.9800807e36,-4.7808774e36,-4.5816743e36,-4.382471e36,-4.183268e36,-3.984065e36,-3.7848615e36,-3.5856584e36,-3.386455e36,-3.187252e36,-2.9880486e36,-2.7888456e36,-2.5896424e36,-2.3904392e36,-2.1912361e36,-1.9920329e36,-1.7928297e36,-1.5936265e36,-1.3944233e36,-1.1952201e36,-9.960169e35,-7.968137e35,-5.9761054e35,-3.9840737e35,-1.9920418e35,-1.0e30]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json index d408d2259c5a..e9b43a3bce5d 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/huge_positive.json @@ -1 +1 @@ -{"expected":[1.0e-300,5.0199748499260014e-306,2.5099937250156875e-306,1.6733305500268516e-306,1.2549984375269454e-306,1.003999002024992e-306,8.366659750227939e-307,7.171423500207668e-307,6.2749961251898935e-307,5.5777747223967356e-307,5.0199975301612154e-307,4.563634326595951e-307,4.183331625139586e-307,3.861537009006463e-307,3.585713035837171e-307,3.346665580115908e-307,3.1374990469846647e-307,2.952940334014081e-307,2.788888138987856e-307,2.642104591507096e-307,2.5099993950901456e-307,2.3904756429434363e-307,2.2818176839670507e-307,2.1826082411002836e-307,2.0916662500764718e-307,2.007999616873673e-307,1.9307688772900056e-307,1.85925893216741e-307,1.7928568393520923e-307,1.7310342004209736e-307,1.6733330700622637e-307,1.6193545926722538e-307,1.5687497695898777e-307,1.5212119050156414e-307,1.4764703850034881e-307,1.4342855229110458e-307,1.3944442639413815e-307,1.356756586245456e-307,1.3210524702714877e-307,1.287179334368197e-307,1.2549998550475168e-307,1.22439010623321e-307,1.1952379643310803e-307,1.1674417358474985e-307,1.1409089721508388e-307,1.1155554422647027e-307,1.0913042396446232e-307,1.0680850029832604e-307,1.04583323441494e-307,1.0244897012053398e-307,1.0039999092384082e-307,9.8431363844599e-308,9.653845318417233e-308,9.471697310793945e-308,9.296295525048074e-308,9.12727198547444e-308,8.964285000344444e-308,8.807016856294298e-308,8.655171751224784e-308,8.508473937414583e-308,8.366666050322267e-308,8.229507601768385e-308,8.096773618938646e-308,7.968253413005834e-308,7.843749463193397e-308,7.723076403848555e-308,7.606060103599666e-308,7.492536826977087e-308,7.382352470008681e-308,7.275361862285263e-308,7.171428128849006e-308,7.070422106006771e-308,6.972221805825643e-308,6.876711924642545e-308,6.78378339142442e-308,6.693332952259577e-308,6.605262787652375e-308,6.519480159639082e-308,6.435897086048671e-308,6.354430039503302e-308,6.274999668993767e-308,6.197530542078968e-308,6.121950905948856e-308,6.048192465759922e-308,5.97619017880387e-308,5.90588206320555e-308,5.837209019967564e-308,5.770114667287633e-308,5.704545186172533e-308,5.640449176460055e-308,5.577777522439517e-308,5.516483267332459e-308,5.456521495959369e-308,5.397849224976308e-308,5.340425300117711e-308,5.284210299929095e-308,5.229166445516502e-308,5.175257515878424e-308,5.1224487684215e-308,5.070706864293448e-308,5.019999798196008e-308,4.970296832367423e-308,4.921568434448296e-308,4.873786218966922e-308,4.826922892200451e-308,4.780952200186855e-308,4.735848879679608e-308,4.69158861185257e-308,4.648147978576823e-308,4.60550442110429e-308,4.563636201004964e-308,4.522522363215654e-308,4.482142701068245e-308,4.4424777231748815e-308,4.4035086220560225e-308,4.365217244405298e-308,4.327586062892395e-308,4.2905981494119407e-308,4.254237149692621e-308,4.218487259186502e-308,4.183333200163893e-308,4.1487601999439974e-308,4.114753970196188e-308,4.081300687250978e-308,4.0483869733636873e-308,4.0159998788774436e-308,3.984126865235579e-308,3.952755788796581e-308,3.9218748854077183e-308,3.891472755696175e-308,3.861538351039056e-308,3.832060960175983e-308,3.8030301964302143e-308,3.77443598550625e-308,3.746268553833819e-308,3.7185184174299063e-308,3.6911763712521654e-308,3.664233479018597e-308,3.637681063469862e-308,3.6115106970519153e-308,3.585714192997961e-308,3.560283596789902e-308,3.5352111779805616e-308,3.5104894223590417e-308,3.486111024442518e-308,3.462068880278718e-308,3.4383560805441937e-308,3.414965903924293e-308,3.391891810761507e-308,3.3691274369595983e-308,3.3466665881315576e-308,3.3245032339800904e-308,3.3026315028999325e-308,3.2810456767918336e-308,3.2597401860785983e-308,3.23870960491405e-308,3.217948646576267e-308,3.197452159036879e-308,3.1772151206986073e-308,3.1572326362936607e-308,3.137499932935939e-308,3.1180123563203597e-308,3.098765367062949e-308,3.079754537175657e-308,3.060975546670138e-308,3.0424241802850334e-308,3.0240963243315443e-308,3.0059879636523373e-308,2.9880951786890605e-308,2.97041414265397e-308,2.9529411188013853e-308,2.9356724577948783e-308,2.9186045951663073e-308,2.901734048862977e-308,2.8850574168793774e-308,2.8685713749701233e-308,2.852272674440858e-308,2.8361581400140456e-308,2.8202246677666973e-308,2.804469223137231e-308,2.788888838998766e-308,2.773480613796283e-308,2.7582417097452005e-308,2.743169351089015e-308,2.7282608224137534e-308,2.713513467017094e-308,2.6989246853300965e-308,2.684491933389574e-308,2.670212721359213e-308,2.6560846120976464e-308,2.642105219771746e-308,2.6282722085134736e-308,2.614583291118707e-308,2.6010362277865185e-308,2.587628824897439e-308,2.5743589338293234e-308,2.561224449809455e-308,2.5482233108016185e-308,2.5353534964268957e-308,2.5226130269169975e-308,2.5099999620990007e-308,2.4975124004103863e-308,2.4851484779433393e-308,2.4729063675172905e-308,2.4607842777787393e-308,2.448780452327425e-308,2.4368931688679427e-308,2.425120738385961e-308,2.4134615043481885e-308,2.4019138419253227e-308,2.3904761572371884e-308,2.3791468866193485e-308,2.367924495910467e-308,2.356807479759748e-308,2.345794360953795e-308,2.33488368976225e-308,2.324074043301612e-308,2.3133640249166474e-308,2.302752263578824e-308,2.2922374133012245e-308,2.2818181525694215e-308,2.2714931837878016e-308,2.261261232740849e-308,2.251121048068934e-308,2.2410714007581317e-308,2.231111083643655e-308,2.221238910926463e-308,2.211453717702653e-308,2.201754359505233e-308,2.1921397118578976e-308,2.182608669840454e-308,2.173160147665524e-308,2.1637930782662015e-308,2.1545064128943254e-308,2.1452991207290524e-308,2.136170188495428e-308,2.1271186200926457e-308,2.1181434362317293e-308,2.109243674082339e-308,2.1004183869284505e-308,2.091666643832639e-308,2.082987529308724e-308,2.0743801430025275e-308,2.065843599380515e-308,2.0573770274260954e-308,2.0489795703433574e-308,2.0406503852680285e-308,2.032388642985461e-308,2.024193527655437e-308,2.0160642365436043e-308,2.00799997975936e-308,1.99999998e-308,1.9920634723009577e-308,1.984189703791967e-308,1.976377933458987e-308,1.9686274319117267e-308,1.9609374811566163e-308,1.953307374375085e-308,1.945736415706989e-308,1.938223920039057e-308,1.9307692127982247e-308,1.92337162974971e-308,1.9160305167997205e-308,1.9087452298026575e-308,1.9015151343727044e-308,1.89433960569968e-308,1.887218028369043e-308,1.8801497961859476e-308,1.87313431200323e-308,1.86617098755324e-308,1.859259243283402e-308,1.852398508195422e-308,1.845588219688041e-308,1.838827823403239e-308,1.832116773075817e-308,1.825454530386248e-308,1.8188405648167404e-308,1.812274353510407e-308,1.8057553811334817e-308,1.799283139740497e-308,1.792857128642347e-308,1.786476854277175e-308,1.7801418300839997e-308,1.773851576379028e-308,1.767605620234577e-308,1.761403495360542e-308,1.7552447419883614e-308,1.7491289067573967e-308,1.7430555426036845e-308,1.737024208650998e-308,1.731034470104162e-308,1.725085898144566e-308,1.7191780698278286e-308,1.7133105679835524e-308,1.707482981117127e-308,1.7016949033135307e-308,1.695945934143079e-308,1.69023567856908e-308,1.684563746857349e-308,1.6789297544875336e-308,1.6733333220662223e-308,1.6677740752417747e-308,1.66225164462085e-308,1.6567656656865886e-308,1.6513157787184035e-308,1.6459016287133565e-308,1.640522865309069e-308,1.6351791427081456e-308,1.629870119604065e-308,1.624595459108514e-308,1.6193548286801248e-308,1.6141479000545904e-308,1.6089743491761176e-308,1.6038338561302044e-308,1.5987261050776905e-308,1.593650784190073e-308,1.588607585586044e-308,1.583596205269233e-308,1.5786163430671255e-308,1.5736677025711226e-308,1.5687499910777345e-308,1.563862919530866e-308,1.5590062024651827e-308,1.554179557950522e-308,1.549382707537342e-308,1.544615376203172e-308,1.539877292300049e-308,1.5351681875029223e-308,1.530487796758998e-308,1.525835858238006e-308,1.521212113283379e-308,1.5166163063643086e-308,1.512048185028669e-308,1.507507499856794e-308,1.502994004416078e-308,1.498507455216396e-308,1.4940476116663124e-308,1.4896142360300783e-308,1.485207093385386e-308,1.4808259515818693e-308,1.476470581200346e-308,1.4721407555127665e-308,1.4678362504428715e-308,1.463556844527535e-308,1.459302318878786e-308,1.455072457146482e-308,1.4508670454816397e-308,1.4466858725003944e-308,1.4425287292485796e-308,1.43839540916692e-308,1.4342857080568163e-308,1.43019942404672e-308,1.426136357559078e-308,1.422096311277837e-308,1.4180790901165055e-308,1.4140845011867487e-308,1.4101123537675166e-308,1.40616245927469e-308,1.402234631231235e-308,1.3983286852378553e-308,1.3944444389441358e-308,1.3905817120201655e-308,1.3867403261286285e-308,1.3829201048973584e-308,1.379120873892344e-308,1.3753424605911806e-308,1.371584694356953e-308,1.3678474064125505e-308,1.3641304298153946e-308,1.3604335994325834e-308,1.3567567519164357e-308,1.3530997256804295e-308,1.349462360875535e-308,1.3458444993669186e-308,1.3422459847110297e-308,1.338666662133049e-308,1.3351063785046965e-308,1.331564982322397e-308,1.328042323685787e-308,1.3245382542765645e-308,1.321052627337673e-308,1.317585297652813e-308,1.314136121526274e-308,1.310704956763084e-308,1.307291662649468e-308,1.3038960999336143e-308,1.300518130806733e-308,1.297157618884415e-308,1.2938144291882773e-308,1.290488428127887e-308,1.287179483482972e-308,1.283887464385895e-308,1.2806122413044047e-308,1.2773536860246425e-308,1.274111671634415e-308,1.2708860725067137e-308,1.2676767642834913e-308,1.264483623859678e-308,1.26130652936744e-308,1.2581453601606775e-308,1.25499999679975e-308,1.2518703210364366e-308,1.248756215799114e-308,1.2456575651781613e-308,1.2425742544115773e-308,1.2395061698708126e-308,1.23645319904681e-308,1.2334152305362545e-308,1.230392154028018e-308,1.2273838602898116e-308,1.224390241155027e-308,1.221411189509771e-308,1.2184465992800926e-308,1.21549636541939e-308,1.212560383896007e-308,1.209638551680999e-308,1.2067307667360853e-308,1.203836928001771e-308,1.2009569353856366e-308,1.198090689750799e-308,1.195238092904535e-308,1.1923990475870706e-308,1.189573457460524e-308,1.186761227098011e-308,1.1839622619728997e-308,1.1811764684482214e-308,1.178403753766228e-308,1.175644026038096e-308,1.172897194233776e-308,1.1701631681719834e-308,1.16744185851033e-308,1.16473317673559e-308,1.1620370351541066e-308,1.1593533468823235e-308,1.1566820258374566e-308,1.1540229867282865e-308,1.151376145046082e-308,1.148741417055648e-308,1.1461187197864934e-308,1.143507971024123e-308,1.1409090893014463e-308,1.138321993890303e-308,1.1357466047931043e-308,1.133182842734587e-308,1.130630629153681e-308,1.12808988619548e-308,1.125560536703332e-308,1.1230425042110214e-308,1.1205357129350684e-308,1.1180400877671244e-308,1.115555554266469e-308,1.113082038652612e-308,1.110619467797987e-308,1.1081677692207457e-308,1.1057268710776455e-308,1.1032967021570343e-308,1.100877191871922e-308,1.0984682702531495e-308,1.0960698679426404e-308,1.093681916186747e-308,1.0913043468296788e-308,1.088937092307019e-308,1.086580085639325e-308,1.0842332604258076e-308,1.081896550838102e-308,1.0795698916141057e-308,1.0772532180519075e-308,1.074946466003787e-308,1.0726495718702973e-308,1.0703624725944145e-308,1.0680851056557716e-308,1.065817409064961e-308,1.063559321357907e-308,1.0613107815903167e-308,1.059071729332194e-308,1.056842104662427e-308,1.0546218481634417e-308,1.0524109009159273e-308,1.050209204493619e-308,1.048016700958155e-308,1.045833332853993e-308,1.043659043203392e-308,1.041493775501455e-308,1.0393374737112336e-308,1.0371900822588965e-308,1.035051546028951e-308,1.032921810359532e-308,1.030800821037741e-308,1.028688524295048e-308,1.0265848668027483e-308,1.024489795667472e-308,1.022403258426753e-308,1.020325203044649e-308,1.018255577907418e-308,1.0161943318192396e-308,1.014141413998e-308,1.0120967740711173e-308,1.0100603620714223e-308,1.0080321284330897e-308,1.0060120239876145e-308,1.00399999995984e-308,1.0019960079640323e-308,1.0e-308],"x":[1.0e300,1.9920418525896416e305,3.9840737051792825e305,5.9761055577689246e305,7.968137410358565e305,9.960169262948207e305,1.195220111553785e306,1.394423296812749e306,1.593626482071713e306,1.7928296673306772e306,1.9920328525896414e306,2.1912360378486056e306,2.39043922310757e306,2.5896424083665337e306,2.788845593625498e306,2.988048778884462e306,3.187251964143426e306,3.3864551494023906e306,3.5856583346613545e306,3.784861519920319e306,3.984064705179283e306,4.183267890438247e306,4.382471075697211e306,4.581674260956175e306,4.78087744621514e306,4.9800806314741036e306,5.1792838167330675e306,5.378487001992032e306,5.577690187250996e306,5.77689337250996e306,5.976096557768924e306,6.175299743027889e306,6.374502928286852e306,6.573706113545817e306,6.772909298804781e306,6.972112484063746e306,7.171315669322709e306,7.370518854581673e306,7.569722039840638e306,7.768925225099601e306,7.968128410358566e306,8.16733159561753e306,8.366534780876494e306,8.565737966135458e306,8.764941151394423e306,8.964144336653387e306,9.16334752191235e306,9.362550707171315e306,9.56175389243028e306,9.760957077689243e306,9.960160262948207e306,1.0159363448207172e307,1.0358566633466135e307,1.05577698187251e307,1.0756973003984064e307,1.0956176189243029e307,1.1155379374501992e307,1.1354582559760956e307,1.155378574501992e307,1.1752988930278885e307,1.1952192115537849e307,1.2151395300796812e307,1.2350598486055778e307,1.254980167131474e307,1.2749004856573704e307,1.294820804183267e307,1.3147411227091633e307,1.3346614412350597e307,1.3545817597609562e307,1.3745020782868526e307,1.3944223968127491e307,1.4143427153386455e307,1.4342630338645418e307,1.4541833523904384e307,1.4741036709163347e307,1.494023989442231e307,1.5139443079681276e307,1.533864626494024e307,1.5537849450199202e307,1.5737052635458168e307,1.5936255820717132e307,1.6135459005976095e307,1.633466219123506e307,1.6533865376494024e307,1.6733068561752987e307,1.6932271747011953e307,1.7131474932270916e307,1.7330678117529882e307,1.7529881302788845e307,1.7729084488047808e307,1.7928287673306774e307,1.8127490858565737e307,1.83266940438247e307,1.8525897229083667e307,1.872510041434263e307,1.8924303599601593e307,1.912350678486056e307,1.9322709970119522e307,1.9521913155378485e307,1.972111634063745e307,1.9920319525896414e307,2.0119522711155378e307,2.0318725896414343e307,2.0517929081673307e307,2.071713226693227e307,2.0916335452191236e307,2.11155386374502e307,2.1314741822709165e307,2.1513945007968128e307,2.1713148193227091e307,2.1912351378486057e307,2.211155456374502e307,2.2310757749003984e307,2.250996093426295e307,2.2709164119521913e307,2.2908367304780876e307,2.310757049003984e307,2.3306773675298807e307,2.350597686055777e307,2.3705180045816734e307,2.3904383231075697e307,2.410358641633466e307,2.4302789601593624e307,2.450199278685259e307,2.4701195972111555e307,2.490039915737052e307,2.509960234262948e307,2.5298805527888445e307,2.549800871314741e307,2.5697211898406377e307,2.589641508366534e307,2.6095618268924303e307,2.6294821454183267e307,2.649402463944223e307,2.6693227824701193e307,2.689243100996016e307,2.7091634195219125e307,2.729083738047809e307,2.749004056573705e307,2.7689243750996014e307,2.7888446936254983e307,2.8087650121513946e307,2.828685330677291e307,2.848605649203187e307,2.8685259677290836e307,2.88844628625498e307,2.9083666047808767e307,2.928286923306773e307,2.9482072418326694e307,2.9681275603585657e307,2.988047878884462e307,3.0079681974103584e307,3.027888515936255e307,3.0478088344621515e307,3.067729152988048e307,3.087649471513944e307,3.1075697900398405e307,3.1274901085657373e307,3.1474104270916337e307,3.16733074561753e307,3.1872510641434263e307,3.2071713826693226e307,3.227091701195219e307,3.247012019721116e307,3.266932338247012e307,3.2868526567729084e307,3.306772975298805e307,3.326693293824701e307,3.3466136123505974e307,3.366533930876494e307,3.3864542494023906e307,3.406374567928287e307,3.426294886454183e307,3.4462152049800796e307,3.4661355235059764e307,3.4860558420318727e307,3.505976160557769e307,3.5258964790836654e307,3.5458167976095617e307,3.565737116135458e307,3.585657434661355e307,3.605577753187251e307,3.6254980717131475e307,3.645418390239044e307,3.66533870876494e307,3.6852590272908365e307,3.7051793458167333e307,3.7250996643426296e307,3.745019982868526e307,3.7649403013944223e307,3.7848606199203186e307,3.804780938446215e307,3.824701256972112e307,3.844621575498008e307,3.8645418940239044e307,3.8844622125498007e307,3.904382531075697e307,3.924302849601594e307,3.94422316812749e307,3.9641434866533866e307,3.984063805179283e307,4.003984123705179e307,4.0239044422310755e307,4.0438247607569724e307,4.0637450792828687e307,4.083665397808765e307,4.1035857163346613e307,4.1235060348605577e307,4.143426353386454e307,4.163346671912351e307,4.183266990438247e307,4.2031873089641435e307,4.22310762749004e307,4.243027946015936e307,4.262948264541833e307,4.2828685830677293e307,4.3027889015936256e307,4.322709220119522e307,4.3426295386454183e307,4.3625498571713146e307,4.3824701756972114e307,4.4023904942231077e307,4.422310812749004e307,4.4422311312749004e307,4.4621514498007967e307,4.482071768326693e307,4.50199208685259e307,4.521912405378486e307,4.541832723904383e307,4.561753042430279e307,4.581673360956175e307,4.601593679482072e307,4.621513998007968e307,4.641434316533864e307,4.661354635059761e307,4.681274953585658e307,4.701195272111554e307,4.72111559063745e307,4.741035909163347e307,4.760956227689243e307,4.780876546215139e307,4.800796864741036e307,4.820717183266932e307,4.840637501792828e307,4.860557820318725e307,4.880478138844621e307,4.900398457370518e307,4.920318775896415e307,4.940239094422311e307,4.960159412948207e307,4.980079731474104e307,5.00000005e307,5.019920368525896e307,5.039840687051793e307,5.059761005577689e307,5.079681324103585e307,5.099601642629482e307,5.119521961155379e307,5.139442279681275e307,5.159362598207172e307,5.179282916733068e307,5.199203235258964e307,5.219123553784861e307,5.239043872310757e307,5.258964190836653e307,5.27888450936255e307,5.298804827888446e307,5.318725146414342e307,5.338645464940239e307,5.358565783466136e307,5.378486101992032e307,5.398406420517929e307,5.418326739043825e307,5.438247057569721e307,5.458167376095618e307,5.478087694621514e307,5.49800801314741e307,5.517928331673307e307,5.537848650199203e307,5.557768968725099e307,5.577689287250997e307,5.597609605776893e307,5.617529924302789e307,5.637450242828686e307,5.657370561354582e307,5.677290879880478e307,5.697211198406374e307,5.717131516932271e307,5.737051835458167e307,5.756972153984063e307,5.77689247250996e307,5.796812791035857e307,5.816733109561753e307,5.83665342808765e307,5.856573746613546e307,5.876494065139442e307,5.896414383665339e307,5.916334702191235e307,5.936255020717131e307,5.956175339243028e307,5.976095657768924e307,5.99601597629482e307,6.015936294820717e307,6.035856613346614e307,6.05577693187251e307,6.075697250398407e307,6.095617568924303e307,6.115537887450199e307,6.135458205976096e307,6.155378524501992e307,6.175298843027888e307,6.195219161553785e307,6.215139480079681e307,6.235059798605577e307,6.254980117131475e307,6.274900435657371e307,6.294820754183267e307,6.314741072709164e307,6.33466139123506e307,6.354581709760956e307,6.374502028286853e307,6.394422346812749e307,6.414342665338645e307,6.434262983864542e307,6.454183302390438e307,6.474103620916334e307,6.494023939442232e307,6.513944257968128e307,6.533864576494024e307,6.553784895019921e307,6.573705213545817e307,6.593625532071713e307,6.61354585059761e307,6.633466169123506e307,6.653386487649402e307,6.673306806175299e307,6.693227124701195e307,6.713147443227092e307,6.733067761752988e307,6.752988080278885e307,6.772908398804781e307,6.792828717330677e307,6.812749035856574e307,6.83266935438247e307,6.852589672908366e307,6.872509991434263e307,6.892430309960159e307,6.912350628486055e307,6.932270947011953e307,6.952191265537849e307,6.972111584063745e307,6.992031902589642e307,7.011952221115538e307,7.031872539641434e307,7.051792858167331e307,7.071713176693227e307,7.091633495219123e307,7.11155381374502e307,7.131474132270916e307,7.151394450796812e307,7.17131476932271e307,7.191235087848606e307,7.211155406374502e307,7.231075724900399e307,7.250996043426295e307,7.270916361952191e307,7.290836680478088e307,7.310756999003984e307,7.33067731752988e307,7.350597636055777e307,7.370517954581673e307,7.39043827310757e307,7.410358591633467e307,7.430278910159363e307,7.450199228685259e307,7.470119547211156e307,7.490039865737052e307,7.509960184262948e307,7.529880502788845e307,7.549800821314741e307,7.569721139840637e307,7.589641458366534e307,7.60956177689243e307,7.629482095418327e307,7.649402413944224e307,7.66932273247012e307,7.689243050996016e307,7.709163369521913e307,7.729083688047809e307,7.749004006573705e307,7.768924325099601e307,7.788844643625498e307,7.808764962151394e307,7.82868528067729e307,7.848605599203188e307,7.868525917729084e307,7.88844623625498e307,7.908366554780877e307,7.928286873306773e307,7.948207191832669e307,7.968127510358566e307,7.988047828884462e307,8.007968147410358e307,8.027888465936255e307,8.047808784462151e307,8.067729102988047e307,8.087649421513945e307,8.107569740039841e307,8.127490058565737e307,8.147410377091634e307,8.16733069561753e307,8.187251014143426e307,8.207171332669323e307,8.227091651195219e307,8.247011969721115e307,8.266932288247012e307,8.286852606772908e307,8.306772925298805e307,8.326693243824702e307,8.346613562350598e307,8.366533880876494e307,8.386454199402391e307,8.406374517928287e307,8.426294836454183e307,8.44621515498008e307,8.466135473505976e307,8.486055792031872e307,8.505976110557769e307,8.525896429083666e307,8.545816747609562e307,8.565737066135459e307,8.585657384661355e307,8.605577703187251e307,8.625498021713148e307,8.645418340239044e307,8.66533865876494e307,8.685258977290837e307,8.705179295816733e307,8.725099614342629e307,8.745019932868526e307,8.764940251394423e307,8.784860569920319e307,8.804780888446215e307,8.824701206972112e307,8.844621525498008e307,8.864541844023904e307,8.884462162549801e307,8.904382481075697e307,8.924302799601593e307,8.94422311812749e307,8.964143436653386e307,8.984063755179283e307,9.00398407370518e307,9.023904392231075e307,9.043824710756972e307,9.063745029282868e307,9.083665347808765e307,9.103585666334662e307,9.123505984860558e307,9.143426303386455e307,9.16334662191235e307,9.183266940438248e307,9.203187258964143e307,9.22310757749004e307,9.243027896015936e307,9.262948214541833e307,9.282868533067728e307,9.302788851593626e307,9.322709170119523e307,9.342629488645418e307,9.362549807171316e307,9.38247012569721e307,9.402390444223108e307,9.422310762749004e307,9.4422310812749e307,9.462151399800796e307,9.482071718326694e307,9.501992036852589e307,9.521912355378486e307,9.541832673904382e307,9.561752992430279e307,9.581673310956176e307,9.601593629482072e307,9.621513948007969e307,9.641434266533864e307,9.661354585059762e307,9.681274903585657e307,9.701195222111554e307,9.72111554063745e307,9.741035859163347e307,9.760956177689242e307,9.78087649621514e307,9.800796814741037e307,9.820717133266932e307,9.84063745179283e307,9.860557770318725e307,9.880478088844622e307,9.900398407370517e307,9.920318725896415e307,9.94023904442231e307,9.960159362948207e307,9.980079681474103e307,1.0e308]} +{"expected":[1.0e-30,5.019975e-36,2.5099938e-36,1.6733306e-36,1.2549985e-36,1.003999e-36,8.366659e-37,7.1714236e-37,6.274996e-37,5.5777746e-37,5.0199973e-37,4.563634e-37,4.183332e-37,3.861537e-37,3.5857131e-37,3.3466657e-37,3.137499e-37,2.9529403e-37,2.788888e-37,2.6421045e-37,2.5099993e-37,2.3904757e-37,2.2818177e-37,2.1826082e-37,2.0916662e-37,2.0079995e-37,1.9307689e-37,1.859259e-37,1.7928569e-37,1.7310341e-37,1.6733331e-37,1.6193546e-37,1.5687498e-37,1.5212118e-37,1.4764704e-37,1.4342855e-37,1.3944443e-37,1.3567567e-37,1.3210524e-37,1.2871793e-37,1.2549999e-37,1.2243901e-37,1.195238e-37,1.1674417e-37,1.140909e-37,1.1155554e-37,1.0913042e-37,1.068085e-37,1.0458332e-37,1.0244896e-37,1.004e-37,9.843136e-38,9.653846e-38,9.471697e-38,9.296296e-38,9.127272e-38,8.9642845e-38,8.8070174e-38,8.6551715e-38,8.5084746e-38,8.366666e-38,8.2295075e-38,8.0967737e-38,7.9682533e-38,7.843749e-38,7.7230766e-38,7.60606e-38,7.492537e-38,7.3823525e-38,7.2753617e-38,7.171428e-38,7.070422e-38,6.972222e-38,6.876712e-38,6.7837834e-38,6.693333e-38,6.6052625e-38,6.5194806e-38,6.435897e-38,6.35443e-38,6.275e-38,6.1975306e-38,6.121951e-38,6.0481925e-38,5.97619e-38,5.905882e-38,5.837209e-38,5.770115e-38,5.7045454e-38,5.640449e-38,5.577778e-38,5.516483e-38,5.4565217e-38,5.3978493e-38,5.340425e-38,5.28421e-38,5.2291666e-38,5.1752576e-38,5.122449e-38,5.0707067e-38,5.02e-38,4.970297e-38,4.921568e-38,4.873786e-38,4.826923e-38,4.7809523e-38,4.735849e-38,4.6915887e-38,4.648148e-38,4.6055044e-38,4.563636e-38,4.5225226e-38,4.4821428e-38,4.4424777e-38,4.4035087e-38,4.365217e-38,4.3275863e-38,4.2905982e-38,4.2542373e-38,4.218487e-38,4.183333e-38,4.1487605e-38,4.114754e-38,4.0813008e-38,4.0483869e-38,4.0159998e-38,3.9841267e-38,3.9527558e-38,3.9218748e-38,3.8914728e-38,3.8615383e-38,3.8320608e-38,3.8030304e-38,3.774436e-38,3.7462686e-38,3.7185184e-38,3.6911763e-38,3.6642335e-38,3.637681e-38,3.6115108e-38,3.585714e-38,3.5602835e-38,3.5352112e-38,3.5104895e-38,3.486111e-38,3.4620687e-38,3.438356e-38,3.414966e-38,3.391892e-38,3.3691273e-38,3.3466665e-38,3.3245033e-38,3.3026315e-38,3.2810456e-38,3.2597403e-38,3.2387096e-38,3.2179485e-38,3.1974523e-38,3.1772153e-38,3.1572325e-38,3.1375e-38,3.1180124e-38,3.0987656e-38,3.0797547e-38,3.0609756e-38,3.042424e-38,3.0240963e-38,3.005988e-38,2.9880952e-38,2.9704142e-38,2.952941e-38,2.9356724e-38,2.9186048e-38,2.901734e-38,2.8850575e-38,2.8685715e-38,2.8522727e-38,2.8361583e-38,2.8202247e-38,2.8044693e-38,2.788889e-38,2.7734805e-38,2.758242e-38,2.7431693e-38,2.7282608e-38,2.7135133e-38,2.6989247e-38,2.684492e-38,2.670213e-38,2.6560847e-38,2.642105e-38,2.628272e-38,2.6145833e-38,2.6010364e-38,2.5876288e-38,2.574359e-38,2.5612244e-38,2.5482234e-38,2.5353536e-38,2.522613e-38,2.51e-38,2.4975124e-38,2.4851485e-38,2.4729064e-38,2.4607844e-38,2.4487806e-38,2.436893e-38,2.4251208e-38,2.4134617e-38,2.4019138e-38,2.3904762e-38,2.379147e-38,2.3679245e-38,2.3568075e-38,2.3457944e-38,2.3348837e-38,2.324074e-38,2.313364e-38,2.3027522e-38,2.2922373e-38,2.2818182e-38,2.2714933e-38,2.2612613e-38,2.2511211e-38,2.2410714e-38,2.2311111e-38,2.2212388e-38,2.2114537e-38,2.2017543e-38,2.1921396e-38,2.1826088e-38,2.1731603e-38,2.1637932e-38,2.1545065e-38,2.1452991e-38,2.1361702e-38,2.1271187e-38,2.1181433e-38,2.1092436e-38,2.1004183e-38,2.0916668e-38,2.0829876e-38,2.0743802e-38,2.0658437e-38,2.057377e-38,2.0489796e-38,2.0406504e-38,2.0323886e-38,2.0241934e-38,2.0160642e-38,2.0079999e-38,2.0e-38,1.9920635e-38,1.9841897e-38,1.9763779e-38,1.9686275e-38,1.9609374e-38,1.9533073e-38,1.9457364e-38,1.9382239e-38,1.9307691e-38,1.9233717e-38,1.9160306e-38,1.9087452e-38,1.9015152e-38,1.8943396e-38,1.887218e-38,1.8801498e-38,1.8731343e-38,1.866171e-38,1.8592592e-38,1.8523986e-38,1.8455883e-38,1.8388278e-38,1.8321167e-38,1.8254546e-38,1.8188406e-38,1.8122744e-38,1.8057554e-38,1.799283e-38,1.792857e-38,1.7864769e-38,1.7801419e-38,1.7738516e-38,1.7676056e-38,1.7614034e-38,1.7552447e-38,1.7491289e-38,1.7430555e-38,1.7370242e-38,1.7310344e-38,1.725086e-38,1.7191781e-38,1.7133106e-38,1.707483e-38,1.701695e-38,1.695946e-38,1.6902357e-38,1.6845637e-38,1.6789297e-38,1.6733332e-38,1.6677741e-38,1.6622518e-38,1.6567657e-38,1.6513158e-38,1.6459017e-38,1.6405228e-38,1.6351791e-38,1.6298701e-38,1.6245954e-38,1.6193548e-38,1.614148e-38,1.6089744e-38,1.6038339e-38,1.5987261e-38,1.5936508e-38,1.5886076e-38,1.5835962e-38,1.5786162e-38,1.5736677e-38,1.56875e-38,1.5638628e-38,1.5590062e-38,1.5541796e-38,1.5493828e-38,1.5446154e-38,1.5398774e-38,1.5351681e-38,1.5304878e-38,1.5258358e-38,1.521212e-38,1.5166162e-38,1.5120483e-38,1.5075075e-38,1.502994e-38,1.4985075e-38,1.4940476e-38,1.4896142e-38,1.4852071e-38,1.480826e-38,1.4764706e-38,1.4721407e-38,1.4678363e-38,1.4635569e-38,1.4593024e-38,1.4550725e-38,1.450867e-38,1.4466858e-38,1.4425287e-38,1.4383953e-38,1.4342857e-38,1.4301994e-38,1.4261363e-38,1.4220964e-38,1.4180792e-38,1.4140845e-38,1.4101124e-38,1.4061625e-38,1.4022347e-38,1.3983287e-38,1.3944444e-38,1.3905816e-38,1.3867404e-38,1.3829202e-38,1.379121e-38,1.3753425e-38,1.3715846e-38,1.3678474e-38,1.3641304e-38,1.3604335e-38,1.3567567e-38,1.3530997e-38,1.3494625e-38,1.3458446e-38,1.342246e-38,1.3386667e-38,1.3351064e-38,1.331565e-38,1.3280424e-38,1.3245383e-38,1.3210525e-38,1.3175853e-38,1.3141362e-38,1.310705e-38,1.3072917e-38,1.3038962e-38,1.3005182e-38,1.2971576e-38,1.2938144e-38,1.2904884e-38,1.2871795e-38,1.2838874e-38,1.2806123e-38,1.2773538e-38,1.2741117e-38,1.270886e-38,1.2676768e-38,1.2644837e-38,1.2613065e-38,1.2581453e-38,1.255e-38,1.2518703e-38,1.2487562e-38,1.2456576e-38,1.2425742e-38,1.2395062e-38,1.2364532e-38,1.2334152e-38,1.2303922e-38,1.2273839e-38,1.2243903e-38,1.2214111e-38,1.2184465e-38,1.2154964e-38,1.2125604e-38,1.2096385e-38,1.2067308e-38,1.2038369e-38,1.2009569e-38,1.1980907e-38,1.1952381e-38,1.192399e-38,1.1895735e-38,1.1867612e-38,1.1839623e-38,1.1811765e-38,1.1784037e-38,1.175644e-38,1.1728972e-38,1.1701631e-38,1.1674418e-38,1.1647332e-38,1.162037e-38,1.1593534e-38,1.1566819e-38,1.154023e-38,1.151376e-38,1.1487413e-38,1.1461188e-38,1.143508e-38,1.1409092e-38,1.1383221e-38,1.1357467e-38,1.1331828e-38,1.1306307e-38,1.12809e-38,1.1255605e-38,1.1230425e-38,1.1205357e-38,1.1180401e-38,1.1155555e-38,1.113082e-38,1.1106194e-38,1.1081677e-38,1.1057268e-38,1.1032967e-38,1.1008772e-38,1.0984682e-38,1.0960699e-38,1.0936819e-38,1.0913043e-38,1.0889371e-38,1.0865801e-38,1.0842332e-38,1.0818966e-38,1.0795699e-38,1.0772532e-38,1.0749464e-38,1.0726496e-38,1.0703625e-38,1.0680851e-38,1.0658174e-38,1.0635593e-38,1.0613108e-38,1.0590717e-38,1.056842e-38,1.0546218e-38,1.0524109e-38,1.0502092e-38,1.0480167e-38,1.0458333e-38,1.0436591e-38,1.0414938e-38,1.0393375e-38,1.0371901e-38,1.0350516e-38,1.0329218e-38,1.0308009e-38,1.0286886e-38,1.0265848e-38,1.0244897e-38,1.0224032e-38,1.0203252e-38,1.0182555e-38,1.0161943e-38,1.0141414e-38,1.0120968e-38,1.0100603e-38,1.008032e-38,1.006012e-38,1.0040001e-38,1.0019961e-38,1.0000001e-38],"x":[1.0e30,1.9920418e35,3.9840737e35,5.9761054e35,7.968137e35,9.960169e35,1.1952201e36,1.3944233e36,1.5936265e36,1.7928297e36,1.9920329e36,2.1912361e36,2.3904392e36,2.5896424e36,2.7888456e36,2.9880486e36,3.187252e36,3.386455e36,3.5856584e36,3.7848615e36,3.984065e36,4.183268e36,4.382471e36,4.5816743e36,4.7808774e36,4.9800807e36,5.1792838e36,5.378487e36,5.57769e36,5.7768936e36,5.9760966e36,6.1753e36,6.374503e36,6.5737064e36,6.7729095e36,6.9721125e36,7.1713156e36,7.3705186e36,7.5697223e36,7.7689254e36,7.9681284e36,8.1673315e36,8.3665345e36,8.565738e36,8.764941e36,8.964144e36,9.1633474e36,9.3625504e36,9.561754e36,9.760957e36,9.96016e36,1.0159363e37,1.0358567e37,1.055777e37,1.0756972e37,1.0956176e37,1.115538e37,1.1354582e37,1.1553786e37,1.1752988e37,1.1952192e37,1.2151396e37,1.2350598e37,1.2549802e37,1.2749005e37,1.2948208e37,1.3147412e37,1.3346614e37,1.3545818e37,1.3745021e37,1.3944224e37,1.4143427e37,1.434263e37,1.4541834e37,1.4741037e37,1.494024e37,1.5139443e37,1.5338646e37,1.553785e37,1.5737053e37,1.5936256e37,1.6135459e37,1.6334662e37,1.6533865e37,1.6733069e37,1.6932271e37,1.7131475e37,1.7330678e37,1.7529881e37,1.7729085e37,1.7928287e37,1.8127491e37,1.8326693e37,1.8525897e37,1.8725101e37,1.8924303e37,1.9123507e37,1.9322709e37,1.9521913e37,1.9721117e37,1.9920319e37,2.0119523e37,2.0318727e37,2.0517929e37,2.0717133e37,2.0916335e37,2.1115539e37,2.131474e37,2.1513945e37,2.1713149e37,2.1912352e37,2.2111553e37,2.2310757e37,2.250996e37,2.2709164e37,2.2908368e37,2.310757e37,2.3306773e37,2.3505977e37,2.370518e37,2.3904384e37,2.4103585e37,2.430279e37,2.4501993e37,2.4701196e37,2.49004e37,2.5099604e37,2.5298805e37,2.5498008e37,2.5697212e37,2.5896416e37,2.609562e37,2.629482e37,2.6494024e37,2.6693228e37,2.6892432e37,2.7091635e37,2.7290837e37,2.749004e37,2.7689244e37,2.7888448e37,2.808765e37,2.8286852e37,2.8486056e37,2.868526e37,2.8884463e37,2.9083667e37,2.9282868e37,2.9482072e37,2.9681276e37,2.988048e37,3.0079683e37,3.0278884e37,3.0478088e37,3.0677292e37,3.0876495e37,3.10757e37,3.12749e37,3.1474104e37,3.1673307e37,3.187251e37,3.2071715e37,3.2270916e37,3.247012e37,3.2669323e37,3.2868527e37,3.306773e37,3.3266932e37,3.3466136e37,3.366534e37,3.3864543e37,3.4063747e37,3.4262948e37,3.4462151e37,3.4661355e37,3.486056e37,3.5059763e37,3.5258964e37,3.5458167e37,3.565737e37,3.5856575e37,3.6055778e37,3.625498e37,3.6454183e37,3.6653387e37,3.685259e37,3.7051794e37,3.7250995e37,3.74502e37,3.7649403e37,3.7848607e37,3.804781e37,3.8247011e37,3.8446215e37,3.8645419e37,3.8844622e37,3.9043826e37,3.9243027e37,3.944223e37,3.9641435e37,3.9840638e37,4.0039842e37,4.0239046e37,4.0438247e37,4.063745e37,4.0836654e37,4.1035858e37,4.1235062e37,4.1434263e37,4.1633466e37,4.183267e37,4.2031874e37,4.2231077e37,4.2430279e37,4.262948e37,4.2828686e37,4.302789e37,4.3227093e37,4.3426297e37,4.36255e37,4.38247e37,4.4023903e37,4.4223107e37,4.442231e37,4.4621514e37,4.482072e37,4.501992e37,4.5219125e37,4.541833e37,4.561753e37,4.581673e37,4.6015935e37,4.621514e37,4.641434e37,4.6613546e37,4.681275e37,4.7011953e37,4.7211157e37,4.741036e37,4.7609564e37,4.7808763e37,4.8007967e37,4.820717e37,4.8406374e37,4.860558e37,4.880478e37,4.9003985e37,4.920319e37,4.940239e37,4.9601596e37,4.98008e37,5.0e37,5.01992e37,5.0398406e37,5.059761e37,5.0796813e37,5.0996017e37,5.119522e37,5.1394424e37,5.159363e37,5.179283e37,5.199203e37,5.2191234e37,5.239044e37,5.258964e37,5.2788845e37,5.298805e37,5.318725e37,5.3386456e37,5.358566e37,5.3784863e37,5.398406e37,5.4183266e37,5.438247e37,5.4581673e37,5.4780877e37,5.498008e37,5.5179284e37,5.537849e37,5.557769e37,5.5776895e37,5.5976094e37,5.6175297e37,5.63745e37,5.6573705e37,5.677291e37,5.697211e37,5.7171316e37,5.737052e37,5.7569723e37,5.7768927e37,5.7968126e37,5.816733e37,5.8366533e37,5.8565737e37,5.876494e37,5.8964144e37,5.916335e37,5.936255e37,5.9561755e37,5.976096e37,5.9960157e37,6.015936e37,6.0358565e37,6.055777e37,6.075697e37,6.0956176e37,6.115538e37,6.1354583e37,6.1553787e37,6.175299e37,6.195219e37,6.2151393e37,6.2350597e37,6.25498e37,6.2749004e37,6.294821e37,6.314741e37,6.3346615e37,6.354582e37,6.374502e37,6.3944226e37,6.4143425e37,6.434263e37,6.454183e37,6.4741036e37,6.494024e37,6.5139443e37,6.5338647e37,6.553785e37,6.5737054e37,6.593626e37,6.6135456e37,6.633466e37,6.6533864e37,6.6733067e37,6.693227e37,6.7131475e37,6.733068e37,6.752988e37,6.7729086e37,6.792829e37,6.812749e37,6.832669e37,6.8525896e37,6.87251e37,6.8924303e37,6.9123507e37,6.932271e37,6.9521914e37,6.972112e37,6.992032e37,7.011952e37,7.0318724e37,7.0517927e37,7.071713e37,7.0916335e37,7.111554e37,7.131474e37,7.1513946e37,7.171315e37,7.1912353e37,7.211155e37,7.2310755e37,7.250996e37,7.2709163e37,7.2908367e37,7.310757e37,7.3306774e37,7.350598e37,7.370518e37,7.3904385e37,7.4103584e37,7.4302787e37,7.450199e37,7.4701195e37,7.49004e37,7.50996e37,7.5298806e37,7.549801e37,7.5697213e37,7.5896417e37,7.6095615e37,7.629482e37,7.6494023e37,7.6693226e37,7.689243e37,7.7091634e37,7.7290837e37,7.749004e37,7.7689245e37,7.788845e37,7.8087647e37,7.828685e37,7.8486054e37,7.868526e37,7.888446e37,7.9083666e37,7.928287e37,7.9482073e37,7.9681277e37,7.988048e37,8.0079684e37,8.0278883e37,8.0478086e37,8.067729e37,8.0876494e37,8.1075697e37,8.12749e37,8.1474105e37,8.167331e37,8.187251e37,8.2071716e37,8.2270914e37,8.247012e37,8.266932e37,8.2868525e37,8.306773e37,8.3266933e37,8.3466137e37,8.366534e37,8.3864544e37,8.406375e37,8.4262946e37,8.446215e37,8.4661354e37,8.4860557e37,8.505976e37,8.525896e37,8.545817e37,8.565737e37,8.585658e37,8.605578e37,8.625498e37,8.645419e37,8.665339e37,8.685259e37,8.70518e37,8.725099e37,8.74502e37,8.76494e37,8.78486e37,8.804781e37,8.824701e37,8.844621e37,8.864542e37,8.884462e37,8.904382e37,8.924303e37,8.944223e37,8.964144e37,8.984064e37,9.003984e37,9.023905e37,9.043825e37,9.063745e37,9.083666e37,9.103586e37,9.123505e37,9.143426e37,9.163346e37,9.183267e37,9.203187e37,9.223107e37,9.243028e37,9.262948e37,9.282868e37,9.302789e37,9.322709e37,9.34263e37,9.36255e37,9.38247e37,9.402391e37,9.422311e37,9.442231e37,9.462152e37,9.482072e37,9.501992e37,9.521913e37,9.541832e37,9.561753e37,9.581673e37,9.601593e37,9.621514e37,9.641434e37,9.661354e37,9.681275e37,9.701195e37,9.721116e37,9.741036e37,9.760956e37,9.780877e37,9.800797e37,9.820717e37,9.840638e37,9.860558e37,9.880478e37,9.900399e37,9.920319e37,9.940239e37,9.960159e37,9.980079e37,1.0e38]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json index aa5f5403dca4..14aac93f88fa 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_negative.json @@ -1 +1 @@ -{"expected":[-0.32745015023725843,-0.32228220501757976,-0.317272386683515,-0.3124136500429473,-0.30769935672565835,-0.3031232466029938,-0.2986794115555974,-0.29436227136958615,-0.2901665515644846,-0.28608726297654286,-0.2821196829390524,-0.2782593379172548,-0.2745019874696298,-0.27084360941999,-0.2672803861360766,-0.26380869182040123,-0.2604250807280673,-0.2571262762343455,-0.2539091606819807,-0.2507707659446741,-0.2477082646489839,-0.2447189620021126,-0.2418002881777449,-0.23894979121633422,-0.23616513040005896,-0.233444070066118,-0.2307844738251565,-0.2281842991544351,-0.22564159233791684,-0.2231544837277625,-0.22072118330383614,-0.2183399765097308,-0.216009220345571,-0.21372733969942823,-0.21149282390063295,-0.20930422347958236,-0.2071601471198436,-0.2050592587894541,-0.20300027503931994,-0.20098196245753583,-0.1990031352692899,-0.19706265307278792,-0.19515941870233972,-0.19329237621039916,-0.19146050896094657,-0.18966283782715046,-0.18789841948675062,-0.1861663448090685,-0.1844657373279805,-0.18279575179558286,-0.18115557281164252,-0.17954441352426334,-0.1779615143975094,-0.17640614204201288,-0.1748775881048603,-0.17337516821529744,-0.17189822098302027,-0.17044610704603122,-0.16901820816523483,-0.16761392636313044,-0.16623268310412634,-0.16487391851415778,-0.1635370906374371,-0.16222167472829832,-0.16092716257622758,-0.15965306186228406,-0.15839889554523037,-0.15716420127578884,-0.15594853083753865,-0.15475144961305537,-0.1535725360739786,-0.1524113812937703,-0.15126758848199823,-0.15014077253904828,-0.14903055963022988,-0.1479365867783013,-0.14685850147349372,-0.1457959613001678,-0.1447486335792827,-0.1437161950259048,-0.1426983314210256,-0.14169473729699794,-0.1407051156359385,-0.13972917758047806,-0.13876664215627746,-0.13781723600575385,-0.13688069313249654,-0.13595675465587448,-0.13504516857536697,-0.1341456895441721,-0.13325807865167058,-0.13238210321434454,-0.13151753657477194,-0.13066415790833558,-0.1298217520373042,-0.12899010925196158,-0.12816902513847303,-0.12735830041319784,-0.1265577407631667,-0.12576715669246008,-0.12498636337423422,-0.1242151805081555,-0.12345343218301351,-0.12270094674429595,-0.12195755666651785,-0.1212230984301074,-0.12049741240266042,-0.11978034272438426,-0.11907173719755963,-0.11837144717985787,-0.11767932748135736,-0.11699523626511117,-0.11631903495112404,-0.11565058812360322,-0.11498976344135406,-0.11433643155119712,-0.11369046600428852,-0.11305174317523091,-0.1124201421838675,-0.11179554481965587,-0.11117783546852315,-0.11056690104210817,-0.1099626309093005,-0.1093649168299901,-0.10877365289094452,-0.10818873544373496,-0.10761006304463518,-0.1070375363964206,-0.10647105829199799,-0.10591053355979911,-0.10535586901087435,-0.10480697338762507,-0.10426375731411565,-0.10372613324790905,-0.10319401543337196,-0.10266731985639682,-0.1021459642004918,-0.10162986780419023,-0.10111895161973389,-0.10061313817298566,-0.10011235152452942,-0.09961651723191638,-0.09912556231301861,-0.09863941521045212,-0.09815800575703339,-0.09768126514223459,-0.09720912587960374,-0.09674152177511809,-0.09627838789643918,-0.09581966054304042,-0.09536527721717779,-0.0949151765956766,-0.09446929850250768,-0.09402758388212691,-0.09358997477355396,-0.09315641428516636,-0.09272684657018579,-0.09230121680283478,-0.09187947115514235,-0.09146155677437846,-0.091047421761097,-0.09063701514776869,-0.09023028687798529,-0.08982718778621761,-0.08942766957810985,-0.08903168481129424,-0.08863918687670962,-0.08825012998040899,-0.08786446912584081,-0.08748216009659004,-0.08710315943956486,-0.08672742444861593,-0.08635491314857514,-0.08598558427970121,-0.08561939728252065,-0.08525631228305183,-0.0848962900784012,-0.0845392921227208,-0.08418528051351655,-0.08383421797829697,-0.0834860678615527,-0.08314079411205731,-0.08279836127047999,-0.08245873445730147,-0.08212187936102444,-0.0817877622266702,-0.08145634984455333,-0.08112760953932671,-0.08080150915928938,-0.08047801706594986,-0.08015710212383755,-0.07983873369055605,-0.07952288160707115,-0.07920951618822702,-0.078898608213485,-0.07859012891787814,-0.0782840499831764,-0.07798034352925604,-0.07767898210566845,-0.07737993868340264,-0.07708318664683629,-0.07678869978587041,-0.0764964522882428,-0.07620641873201538,-0.07591857407823109,-0.07563289366373571,-0.07534935319416045,-0.07506792873706089,-0.07478859671520864,-0.07451133390003126,-0.07423611740519705,-0.07396292468034087,-0.07369173350492719,-0.07342252198224719,-0.07315526853354644,-0.07288995189227947,-0.07262655109848881,-0.07236504549330461,-0.07210541471356222,-0.07184763868653482,-0.07159169762477803,-0.0713375720210839,-0.07108524264354162,-0.07083469053070202,-0.07058589698684384,-0.0703388435773388,-0.07009351212411324,-0.0698498847012042,-0.0696079436304073,-0.06936767147701454,-0.0691290510456396,-0.06889206537612866,-0.06865669773955489,-0.06842293163429422,-0.06819075078218083,-0.06796013912474037,-0.06773108081949887,-0.06750356023636608,-0.06727756195409082,-0.0670530707567874,-0.06683007163053074,-0.0666085497600192,-0.06638849052530324,-0.06616987949857848,-0.06595270244104161,-0.06573694529980796,-0.06552259420488896,-0.06530963546622849,-0.06509805557079655,-0.06488784117973906,-0.06467897912558251,-0.06447145640949227,-0.06426526019858322,-0.06406037782328189,-0.06385679677473835,-0.06365450470228749,-0.06345348941095806,-0.06325373885902857,-0.06305524115562922,-0.0628579845583885,-0.06266195747112376,-0.06246714844157484,-0.062273546159179474,-0.06208113945289,-0.06188991728903014,-0.061699868769191264,-0.06151098312816712,-0.06132324973192626,-0.06113665807562135,-0.06095119778163467,-0.060766858597658874,-0.06058363039481244,-0.06040150316578901,-0.060220467023039834,-0.06004051219698878,-0.05986162903427913,-0.05968380799605154,-0.05950703965625245,-0.05933131469997254,-0.05915662392181417,-0.05898295822428787,-0.058810308616236505,-0.058638666211287306,-0.05846802222633063,-0.05829836798002517,-0.05812969489132918,-0.05796199447805683,-0.05779525835545957,-0.05762947823483178,-0.05746464592214034,-0.057300753316677444,-0.057137792409736564,-0.056975755283310635,-0.05681463410881247,-0.05665442114581667,-0.05649510874082263,-0.05633668932603854,-0.0561791554181855,-0.05602249961732166,-0.055866714605685965,-0.055711793146561085,-0.055557728083155115,-0.05540451233750176,-0.05525213890937866,-0.05510060087524337,-0.05494989138718687,-0.05480000367190407,-0.054650931029681146,-0.0545026668333993,-0.05435520452755455,-0.05420853762729355,-0.05406265971746478,-0.053917564451684996,-0.05377324555142073,-0.05362969680508438,-0.05348691206714467,-0.05334488525725141,-0.05320361035937394,-0.053063081420953354,-0.05292329255206797,-0.052784237924611954,-0.052645911771486975,-0.05250830838580623,-0.052371422120111144,-0.05223524738560015,-0.05209977865136942,-0.05196501044366543,-0.051830937345149014,-0.05169755399417077,-0.05156485508405757,-0.051432835362410154,-0.051301489630411166,-0.05117081274214409,-0.0510407996039223,-0.05091144517362835,-0.050782744460063325,-0.05065469252230599,-0.050527284469081495,-0.050400515458139734,-0.05027438069564286,-0.05014887543556204,-0.05002399497908319,-0.04989973467402152,-0.049776089914244835,-0.04965305613910528,-0.0495306288328795,-0.04940880352421715,-0.04928757578559736,-0.04916694123279316,-0.04904689552434397,-0.04892743436103544,-0.04880855348538717,-0.04869024868114764,-0.04857251577279654,-0.0484553506250544,-0.048338749142399016,-0.048222707268589106,-0.04810722098619463,-0.04799228631613393,-0.047877899317217296,-0.04776405608569734,-0.047650752754825436,-0.04753798549441466,-0.04742575051040881,-0.047314044044457534,-0.04720286237349746,-0.047092201809339165,-0.046982058698259936,-0.04687242942060225,-0.04676331039037784,-0.04665469805487724,-0.04654658889428483,-0.04643897942129908,-0.046331866180758144,-0.04622524574927064,-0.04611911473485133,-0.04601346977656205,-0.04590830754415737,-0.0458036247377351,-0.04569941808739169,-0.04559568435288221,-0.0454924203232849,-0.045389622816670416,-0.04528728867977544,-0.045185414787680594,-0.045083998043492945,-0.044983035378032485,-0.044882523749523014,-0.04478246014328702,-0.04468284157144473,-0.04458366507261706,-0.0444849277116326,-0.04438662657923837,-0.044288758791814514,-0.044191321491092714,-0.0440943118438782,-0.043997727041775604,-0.04390156430091822,-0.043805820861700935,-0.043710493988516556,-0.04361558096949559,-0.043521079116249424,-0.04342698576361683,-0.043333298269413685,-0.043240014014186014,-0.04314713040096614,-0.04305464485503196,-0.04296255482366939,-0.04287085777593776,-0.0427795512024382,-0.042688632615085084,-0.04259809954688024,-0.04250794955169009,-0.04241818020402564,-0.042328789098825155,-0.042239773851239705,-0.04215113209642125,-0.04206286148931349,-0.04197495970444538,-0.04188742443572703,-0.04180025339624834,-0.04171344431808012,-0.041626994952077515,-0.04154090306768608,-0.04145516645275013,-0.041369782913323445,-0.04128475027348241,-0.04120006637514133,-0.04111572907787006,-0.04103173625871392,-0.04094808581201573,-0.040864775649240015,-0.040781803698799475,-0.04069916790588333,-0.040616866232288,-0.04053489665624967,-0.04045325717227888,-0.040371945790997184,-0.04029096053897578,-0.040210299458575904,-0.040129960607791414,-0.04004994206009294,-0.039970241904274215,-0.03989085824429997,-0.03981178919915571,-0.039733032902699444,-0.03965458750351486,-0.03957645116476652,-0.039498622064056556,-0.039421098393283206,-0.039343878358500874,-0.03926696017978194,-0.039190342091080126,-0.039114022340095464,-0.039037999188140854,-0.03896227091001016,-0.038886835793847836,-0.03881169214102007,-0.03873683826598741,-0.038662272496178846,-0.03858799317186741,-0.038513998646047064,-0.03844028728431117,-0.03836685746473225,-0.03829370757774309,-0.03822083602601933,-0.03814824122436322,-0.038075921599588884,-0.03800387559040871,-0.03793210164732113,-0.03786059823249965,-0.03778936381968312,-0.03771839689406721,-0.03764769595219719,-0.037577259501861825,-0.03750708606198846,-0.0374371741625394,-0.03736752234440926,-0.03729812915932359,-0.03722899316973859,-0.03716011294874194,-0.0370914870799547,-0.03702311415743431,-0.03695499278557869,-0.036887121579031366,-0.03681949916258765,-0.036752124171101776,-0.03668499524939523,-0.036618111052165864,-0.0365514702438982,-0.03648507149877452,-0.0364189135005871,-0.03635299494265127,-0.03628731452771952,-0.036221870967896384,-0.03615666298455438,-0.036091689308250886,-0.03602694867864569,-0.03596243984441966,-0.03589816156319416,-0.035834112601451425,-0.03577029173445561,-0.035706697746174874],"x":[-3.0,-3.049800796812749,-3.099601593625498,-3.149402390438247,-3.199203187250996,-3.249003984063745,-3.298804780876494,-3.348605577689243,-3.398406374501992,-3.448207171314741,-3.49800796812749,-3.547808764940239,-3.597609561752988,-3.647410358565737,-3.697211155378486,-3.747011952191235,-3.7968127490039842,-3.846613545816733,-3.896414342629482,-3.946215139442231,-3.99601593625498,-4.0458167330677295,-4.095617529880478,-4.145418326693227,-4.195219123505976,-4.245019920318725,-4.294820717131474,-4.344621513944223,-4.394422310756972,-4.444223107569721,-4.49402390438247,-4.543824701195219,-4.5936254980079685,-4.643426294820717,-4.693227091633466,-4.743027888446215,-4.792828685258964,-4.842629482071713,-4.892430278884462,-4.942231075697211,-4.99203187250996,-5.04183266932271,-5.091633466135458,-5.1414342629482075,-5.191235059760956,-5.241035856573705,-5.290836653386454,-5.340637450199203,-5.390438247011952,-5.440239043824701,-5.49003984063745,-5.539840637450199,-5.589641434262949,-5.639442231075697,-5.6892430278884465,-5.739043824701195,-5.788844621513944,-5.838645418326693,-5.888446215139442,-5.938247011952191,-5.98804780876494,-6.03784860557769,-6.087649402390438,-6.137450199203188,-6.187250996015936,-6.2370517928286855,-6.286852589641434,-6.336653386454183,-6.386454183266932,-6.436254980079681,-6.48605577689243,-6.535856573705179,-6.585657370517929,-6.635458167330677,-6.685258964143427,-6.735059760956175,-6.7848605577689245,-6.834661354581673,-6.884462151394422,-6.934262948207171,-6.98406374501992,-7.03386454183267,-7.083665338645418,-7.133466135458168,-7.183266932270916,-7.233067729083666,-7.282868525896414,-7.3326693227091635,-7.382470119521912,-7.432270916334661,-7.48207171314741,-7.531872509960159,-7.581673306772909,-7.631474103585657,-7.681274900398407,-7.731075697211155,-7.780876494023905,-7.830677290836653,-7.8804780876494025,-7.930278884462151,-7.9800796812749,-8.02988047808765,-8.079681274900398,-8.129482071713147,-8.179282868525897,-8.229083665338646,-8.278884462151394,-8.328685258964143,-8.378486055776893,-8.428286852589641,-8.47808764940239,-8.52788844621514,-8.577689243027889,-8.627490039840637,-8.677290836653386,-8.727091633466136,-8.776892430278885,-8.826693227091633,-8.876494023904382,-8.926294820717132,-8.97609561752988,-9.025896414342629,-9.07569721115538,-9.125498007968128,-9.175298804780876,-9.225099601593625,-9.274900398406375,-9.324701195219124,-9.374501992031872,-9.42430278884462,-9.474103585657371,-9.52390438247012,-9.573705179282868,-9.623505976095618,-9.673306772908367,-9.723107569721115,-9.772908366533864,-9.822709163346614,-9.872509960159363,-9.922310756972111,-9.97211155378486,-10.02191235059761,-10.071713147410359,-10.121513944223107,-10.171314741035857,-10.221115537848606,-10.270916334661354,-10.320717131474103,-10.370517928286853,-10.420318725099602,-10.47011952191235,-10.5199203187251,-10.569721115537849,-10.619521912350598,-10.669322709163346,-10.719123505976096,-10.768924302788845,-10.818725099601593,-10.868525896414342,-10.918326693227092,-10.96812749003984,-11.01792828685259,-11.06772908366534,-11.117529880478088,-11.167330677290837,-11.217131474103585,-11.266932270916335,-11.316733067729084,-11.366533864541832,-11.41633466135458,-11.466135458167331,-11.51593625498008,-11.565737051792828,-11.615537848605578,-11.665338645418327,-11.715139442231076,-11.764940239043824,-11.814741035856574,-11.864541832669323,-11.914342629482071,-11.96414342629482,-12.01394422310757,-12.063745019920319,-12.113545816733067,-12.163346613545817,-12.213147410358566,-12.262948207171315,-12.312749003984063,-12.362549800796813,-12.412350597609562,-12.46215139442231,-12.51195219123506,-12.56175298804781,-12.611553784860558,-12.661354581673306,-12.711155378486056,-12.760956175298805,-12.810756972111554,-12.860557768924302,-12.910358565737052,-12.9601593625498,-13.00996015936255,-13.0597609561753,-13.109561752988048,-13.159362549800797,-13.209163346613545,-13.258964143426295,-13.308764940239044,-13.358565737051793,-13.408366533864541,-13.458167330677291,-13.50796812749004,-13.557768924302788,-13.607569721115539,-13.657370517928287,-13.707171314741036,-13.756972111553784,-13.806772908366534,-13.856573705179283,-13.906374501992032,-13.95617529880478,-14.00597609561753,-14.055776892430279,-14.105577689243027,-14.155378486055778,-14.205179282868526,-14.254980079681275,-14.304780876494023,-14.354581673306773,-14.404382470119522,-14.45418326693227,-14.50398406374502,-14.55378486055777,-14.603585657370518,-14.653386454183266,-14.703187250996017,-14.752988047808765,-14.802788844621514,-14.852589641434262,-14.902390438247012,-14.952191235059761,-15.00199203187251,-15.05179282868526,-15.101593625498008,-15.151394422310757,-15.201195219123505,-15.250996015936256,-15.300796812749004,-15.350597609561753,-15.400398406374501,-15.450199203187251,-15.5,-15.549800796812749,-15.599601593625499,-15.649402390438247,-15.699203187250996,-15.749003984063744,-15.798804780876495,-15.848605577689243,-15.898406374501992,-15.94820717131474,-15.99800796812749,-16.04780876494024,-16.09760956175299,-16.147410358565736,-16.197211155378486,-16.247011952191237,-16.296812749003983,-16.346613545816734,-16.39641434262948,-16.44621513944223,-16.49601593625498,-16.545816733067728,-16.595617529880478,-16.64541832669323,-16.695219123505975,-16.745019920318725,-16.794820717131476,-16.844621513944222,-16.894422310756973,-16.94422310756972,-16.99402390438247,-17.04382470119522,-17.093625498007967,-17.143426294820717,-17.193227091633467,-17.243027888446214,-17.292828685258964,-17.342629482071715,-17.39243027888446,-17.44223107569721,-17.49203187250996,-17.54183266932271,-17.59163346613546,-17.641434262948206,-17.691235059760956,-17.741035856573706,-17.790836653386453,-17.840637450199203,-17.890438247011954,-17.9402390438247,-17.99003984063745,-18.0398406374502,-18.089641434262948,-18.139442231075698,-18.189243027888445,-18.239043824701195,-18.288844621513945,-18.338645418326692,-18.388446215139442,-18.438247011952193,-18.48804780876494,-18.53784860557769,-18.58764940239044,-18.637450199203187,-18.687250996015937,-18.737051792828684,-18.786852589641434,-18.836653386454184,-18.88645418326693,-18.93625498007968,-18.98605577689243,-19.03585657370518,-19.08565737051793,-19.13545816733068,-19.185258964143426,-19.235059760956176,-19.284860557768923,-19.334661354581673,-19.384462151394423,-19.43426294820717,-19.48406374501992,-19.53386454183267,-19.583665338645417,-19.633466135458168,-19.683266932270918,-19.733067729083665,-19.782868525896415,-19.83266932270916,-19.882470119521912,-19.932270916334662,-19.98207171314741,-20.03187250996016,-20.08167330677291,-20.131474103585656,-20.181274900398407,-20.231075697211157,-20.280876494023904,-20.330677290836654,-20.3804780876494,-20.43027888446215,-20.4800796812749,-20.529880478087648,-20.5796812749004,-20.62948207171315,-20.679282868525895,-20.729083665338646,-20.778884462151396,-20.828685258964143,-20.878486055776893,-20.92828685258964,-20.97808764940239,-21.02788844621514,-21.077689243027887,-21.127490039840637,-21.177290836653388,-21.227091633466134,-21.276892430278885,-21.326693227091635,-21.37649402390438,-21.426294820717132,-21.47609561752988,-21.52589641434263,-21.57569721115538,-21.625498007968126,-21.675298804780876,-21.725099601593627,-21.774900398406373,-21.824701195219124,-21.874501992031874,-21.92430278884462,-21.97410358565737,-22.02390438247012,-22.073705179282868,-22.12350597609562,-22.173306772908365,-22.223107569721115,-22.272908366533866,-22.322709163346612,-22.372509960159363,-22.422310756972113,-22.47211155378486,-22.52191235059761,-22.57171314741036,-22.621513944223107,-22.671314741035857,-22.721115537848604,-22.770916334661354,-22.820717131474105,-22.87051792828685,-22.9203187250996,-22.970119521912352,-23.0199203187251,-23.06972111553785,-23.1195219123506,-23.169322709163346,-23.219123505976096,-23.268924302788843,-23.318725099601593,-23.368525896414344,-23.41832669322709,-23.46812749003984,-23.51792828685259,-23.567729083665338,-23.617529880478088,-23.66733067729084,-23.717131474103585,-23.766932270916335,-23.816733067729082,-23.866533864541832,-23.916334661354583,-23.96613545816733,-24.01593625498008,-24.06573705179283,-24.115537848605577,-24.165338645418327,-24.215139442231077,-24.264940239043824,-24.314741035856574,-24.36454183266932,-24.41434262948207,-24.46414342629482,-24.51394422310757,-24.56374501992032,-24.61354581673307,-24.663346613545816,-24.713147410358566,-24.762948207171316,-24.812749003984063,-24.862549800796813,-24.91235059760956,-24.96215139442231,-25.01195219123506,-25.061752988047807,-25.111553784860558,-25.161354581673308,-25.211155378486055,-25.260956175298805,-25.310756972111555,-25.360557768924302,-25.410358565737052,-25.4601593625498,-25.50996015936255,-25.5597609561753,-25.609561752988046,-25.659362549800797,-25.709163346613547,-25.758964143426294,-25.808764940239044,-25.858565737051794,-25.90836653386454,-25.95816733067729,-26.00796812749004,-26.05776892430279,-26.10756972111554,-26.157370517928285,-26.207171314741036,-26.256972111553786,-26.306772908366533,-26.356573705179283,-26.406374501992033,-26.45617529880478,-26.50597609561753,-26.55577689243028,-26.605577689243027,-26.655378486055778,-26.705179282868524,-26.754980079681275,-26.804780876494025,-26.85458167330677,-26.904382470119522,-26.954183266932272,-27.00398406374502,-27.05378486055777,-27.10358565737052,-27.153386454183266,-27.203187250996017,-27.252988047808763,-27.302788844621514,-27.352589641434264,-27.40239043824701,-27.45219123505976,-27.50199203187251,-27.551792828685258,-27.60159362549801,-27.65139442231076,-27.701195219123505,-27.750996015936256,-27.800796812749002,-27.850597609561753,-27.900398406374503,-27.95019920318725,-28.0]} +{"expected":[-0.035706703,-0.03577029,-0.03583411,-0.03589816,-0.03596244,-0.03602695,-0.03609169,-0.036156666,-0.036221873,-0.036287315,-0.036353,-0.036418915,-0.036485072,-0.036551468,-0.03661811,-0.036684994,-0.036752123,-0.036819495,-0.03688712,-0.03695499,-0.037023116,-0.037091486,-0.037160113,-0.03722899,-0.03729813,-0.03736752,-0.03743718,-0.037507087,-0.03757726,-0.037647698,-0.037718397,-0.037789367,-0.0378606,-0.0379321,-0.038003877,-0.038075924,-0.038148243,-0.038220834,-0.038293708,-0.038366854,-0.038440287,-0.038514,-0.03858799,-0.03866227,-0.03873684,-0.03881169,-0.038886834,-0.038962267,-0.039038,-0.039114024,-0.03919034,-0.03926696,-0.03934388,-0.0394211,-0.039498623,-0.03957645,-0.039654586,-0.039733034,-0.039811786,-0.039890856,-0.039970245,-0.040049944,-0.04012996,-0.0402103,-0.040290955,-0.040371943,-0.040453255,-0.040534895,-0.040616866,-0.04069917,-0.040781803,-0.040864773,-0.040948085,-0.041031737,-0.041115727,-0.041200068,-0.041284747,-0.041369785,-0.041455165,-0.041540906,-0.041626997,-0.041713443,-0.041800257,-0.04188743,-0.04197496,-0.042062864,-0.042151134,-0.042239774,-0.042328786,-0.04241818,-0.042507946,-0.0425981,-0.042688634,-0.04277955,-0.042870857,-0.042962555,-0.043054644,-0.04314713,-0.043240014,-0.043333296,-0.043426983,-0.04352108,-0.04361558,-0.043710493,-0.043805823,-0.043901566,-0.04399773,-0.044094313,-0.044191323,-0.04428876,-0.044386633,-0.044484932,-0.044583667,-0.04468284,-0.044782456,-0.044882525,-0.044983037,-0.045083996,-0.045185413,-0.04528729,-0.045389622,-0.04549242,-0.045595687,-0.045699418,-0.04580362,-0.045908306,-0.04601347,-0.046119116,-0.04622525,-0.046331868,-0.04643898,-0.04654659,-0.046654698,-0.046763316,-0.046872433,-0.04698206,-0.047092203,-0.047202863,-0.047314044,-0.047425747,-0.047537982,-0.04765075,-0.047764055,-0.047877897,-0.047992285,-0.04810722,-0.048222706,-0.04833875,-0.04845535,-0.048572518,-0.04869025,-0.048808552,-0.048927434,-0.049046896,-0.049166944,-0.049287573,-0.049408805,-0.04953063,-0.04965306,-0.04977609,-0.049899735,-0.050024,-0.05014888,-0.050274387,-0.050400514,-0.050527282,-0.050654694,-0.050782744,-0.05091144,-0.0510408,-0.051170807,-0.051301487,-0.051432833,-0.051564854,-0.051697552,-0.051830936,-0.05196501,-0.05209978,-0.052235246,-0.052371424,-0.05250831,-0.052645914,-0.052784238,-0.052923292,-0.05306308,-0.053203616,-0.05334489,-0.053486913,-0.0536297,-0.05377324,-0.05391756,-0.054062657,-0.054208536,-0.0543552,-0.054502666,-0.05465093,-0.0548,-0.05494989,-0.055100597,-0.05525214,-0.055404514,-0.055557728,-0.05571179,-0.055866715,-0.0560225,-0.056179155,-0.05633669,-0.056495108,-0.056654423,-0.056814637,-0.056975756,-0.057137795,-0.057300754,-0.057464648,-0.057629474,-0.057795253,-0.05796199,-0.058129694,-0.058298368,-0.058468018,-0.058638666,-0.058810305,-0.058982953,-0.059156626,-0.059331317,-0.05950704,-0.05968381,-0.059861626,-0.06004051,-0.060220465,-0.060401503,-0.06058363,-0.060766865,-0.060951203,-0.061136663,-0.06132325,-0.061510984,-0.06169987,-0.06188992,-0.06208114,-0.06227354,-0.062467154,-0.06266196,-0.062857985,-0.06305525,-0.06325373,-0.06345349,-0.063654505,-0.063856795,-0.064060375,-0.064265266,-0.06447145,-0.06467898,-0.064887844,-0.06509806,-0.06530964,-0.065522596,-0.06573695,-0.065952696,-0.06616987,-0.06638849,-0.06660855,-0.06683008,-0.067053065,-0.06727756,-0.06750356,-0.06773108,-0.06796014,-0.06819075,-0.068422936,-0.0686567,-0.06889206,-0.06912905,-0.06936768,-0.06960794,-0.069849886,-0.07009351,-0.070338845,-0.0705859,-0.07083469,-0.07108524,-0.07133757,-0.071591705,-0.07184764,-0.072105415,-0.07236504,-0.072626546,-0.072889954,-0.07315527,-0.07342253,-0.07369173,-0.07396292,-0.07423612,-0.07451134,-0.07478859,-0.07506792,-0.07534935,-0.07563289,-0.07591857,-0.076206416,-0.07649645,-0.07678869,-0.077083185,-0.077379934,-0.077678986,-0.07798035,-0.078284055,-0.07859013,-0.07889861,-0.079209514,-0.07952288,-0.07983873,-0.0801571,-0.08047801,-0.08080151,-0.081127614,-0.081456356,-0.08178776,-0.08212189,-0.08245874,-0.08279836,-0.08314079,-0.08348606,-0.083834216,-0.08418528,-0.084539294,-0.084896296,-0.085256316,-0.0856194,-0.085985586,-0.08635491,-0.086727425,-0.08710316,-0.087482154,-0.087864466,-0.08825013,-0.088639185,-0.08903168,-0.089427665,-0.08982718,-0.090230286,-0.09063701,-0.09104742,-0.09146156,-0.09187947,-0.09230122,-0.09272685,-0.09315641,-0.09358997,-0.09402758,-0.094469294,-0.094915174,-0.09536528,-0.09581966,-0.09627839,-0.09674153,-0.097209126,-0.09768126,-0.098158,-0.09863941,-0.099125564,-0.09961651,-0.10011235,-0.10061313,-0.10111895,-0.10162987,-0.10214596,-0.102667324,-0.10319402,-0.10372613,-0.10426376,-0.10480696,-0.105355866,-0.10591053,-0.10647106,-0.10703754,-0.10761006,-0.10818873,-0.108773656,-0.10936492,-0.10996264,-0.11056691,-0.11117785,-0.111795545,-0.112420134,-0.11305174,-0.113690466,-0.11433643,-0.11498976,-0.11565059,-0.11631904,-0.116995245,-0.11767933,-0.11837145,-0.119071744,-0.119780354,-0.12049741,-0.12122309,-0.12195755,-0.122700945,-0.12345344,-0.124215186,-0.12498636,-0.12576716,-0.12655775,-0.1273583,-0.12816903,-0.1289901,-0.12982176,-0.13066415,-0.13151753,-0.1323821,-0.13325807,-0.13414569,-0.13504516,-0.13595675,-0.1368807,-0.13781723,-0.13876663,-0.13972916,-0.14070511,-0.14169474,-0.14269833,-0.1437162,-0.14474863,-0.14579596,-0.1468585,-0.14793658,-0.14903055,-0.15014078,-0.15126759,-0.15241137,-0.15357254,-0.15475145,-0.15594853,-0.15716422,-0.15839888,-0.15965307,-0.16092716,-0.16222167,-0.16353709,-0.16487391,-0.16623269,-0.16761392,-0.16901821,-0.17044611,-0.17189823,-0.17337517,-0.17487758,-0.17640613,-0.1779615,-0.17954442,-0.18115558,-0.18279575,-0.18446574,-0.18616633,-0.18789841,-0.18966283,-0.19146052,-0.19329238,-0.19515942,-0.19706266,-0.19900313,-0.20098196,-0.20300028,-0.20505926,-0.20716016,-0.20930424,-0.21149282,-0.21372734,-0.21600921,-0.21833998,-0.22072119,-0.2231545,-0.22564158,-0.2281843,-0.23078448,-0.23344408,-0.23616514,-0.23894979,-0.2418003,-0.24471895,-0.24770825,-0.25077075,-0.25390914,-0.25712624,-0.2604251,-0.2638087,-0.26728037,-0.27084363,-0.274502,-0.27825934,-0.28211966,-0.28608727,-0.29016656,-0.29436228,-0.2986794,-0.30312327,-0.30769932,-0.31241366,-0.3172724,-0.32228217,-0.32745016],"x":[-28.0,-27.9502,-27.900398,-27.850597,-27.800797,-27.750996,-27.701195,-27.651394,-27.601593,-27.551792,-27.501991,-27.45219,-27.40239,-27.35259,-27.30279,-27.252989,-27.203188,-27.153387,-27.103586,-27.053785,-27.003984,-26.954184,-26.904383,-26.854582,-26.804781,-26.75498,-26.70518,-26.655378,-26.605577,-26.555777,-26.505976,-26.456175,-26.406374,-26.356573,-26.306772,-26.256971,-26.20717,-26.15737,-26.10757,-26.05777,-26.007969,-25.958168,-25.908367,-25.858566,-25.808765,-25.758965,-25.709164,-25.659363,-25.609562,-25.559761,-25.50996,-25.46016,-25.410358,-25.360558,-25.310757,-25.260956,-25.211155,-25.161354,-25.111553,-25.061752,-25.011951,-24.96215,-24.91235,-24.86255,-24.81275,-24.762949,-24.713148,-24.663347,-24.613546,-24.563745,-24.513945,-24.464144,-24.414343,-24.364542,-24.314741,-24.26494,-24.21514,-24.165339,-24.115538,-24.065737,-24.015936,-23.966135,-23.916334,-23.866533,-23.816732,-23.766932,-23.71713,-23.66733,-23.61753,-23.56773,-23.51793,-23.468128,-23.418327,-23.368526,-23.318726,-23.268925,-23.219124,-23.169323,-23.119522,-23.069721,-23.01992,-22.97012,-22.920319,-22.870518,-22.820717,-22.770916,-22.721115,-22.671314,-22.621513,-22.571712,-22.521912,-22.47211,-22.42231,-22.37251,-22.32271,-22.27291,-22.223108,-22.173307,-22.123507,-22.073706,-22.023905,-21.974104,-21.924303,-21.874502,-21.824701,-21.7749,-21.7251,-21.675299,-21.625498,-21.575697,-21.525896,-21.476095,-21.426294,-21.376493,-21.326693,-21.276892,-21.22709,-21.17729,-21.12749,-21.07769,-21.02789,-20.978088,-20.928288,-20.878487,-20.828686,-20.778885,-20.729084,-20.679283,-20.629482,-20.579681,-20.52988,-20.48008,-20.430279,-20.380478,-20.330677,-20.280876,-20.231075,-20.181274,-20.131474,-20.081673,-20.031872,-19.98207,-19.93227,-19.88247,-19.83267,-19.78287,-19.733068,-19.683268,-19.633467,-19.583666,-19.533865,-19.484064,-19.434263,-19.384462,-19.334661,-19.28486,-19.23506,-19.185259,-19.135458,-19.085657,-19.035856,-18.986055,-18.936255,-18.886454,-18.836653,-18.786852,-18.737051,-18.68725,-18.63745,-18.58765,-18.53785,-18.488049,-18.438248,-18.388447,-18.338646,-18.288845,-18.239044,-18.189243,-18.139442,-18.089642,-18.03984,-17.99004,-17.940239,-17.890438,-17.840637,-17.790836,-17.741035,-17.691235,-17.641434,-17.591633,-17.541832,-17.492031,-17.44223,-17.39243,-17.34263,-17.29283,-17.243029,-17.193228,-17.143427,-17.093626,-17.043825,-16.994024,-16.944223,-16.894423,-16.844622,-16.79482,-16.74502,-16.695219,-16.645418,-16.595617,-16.545816,-16.496016,-16.446215,-16.396414,-16.346613,-16.296812,-16.247011,-16.19721,-16.14741,-16.09761,-16.04781,-15.998008,-15.948207,-15.898406,-15.848605,-15.798805,-15.749004,-15.6992035,-15.649403,-15.599602,-15.549801,-15.5,-15.450199,-15.400398,-15.350597,-15.3007965,-15.250996,-15.201195,-15.151395,-15.101594,-15.051793,-15.001992,-14.952191,-14.9023905,-14.85259,-14.802789,-14.752988,-14.703187,-14.653386,-14.603585,-14.553785,-14.503984,-14.454184,-14.404383,-14.354582,-14.304781,-14.25498,-14.205179,-14.155378,-14.105577,-14.055777,-14.005976,-13.956175,-13.906375,-13.856574,-13.806773,-13.756972,-13.707171,-13.657371,-13.60757,-13.557769,-13.507968,-13.458167,-13.408366,-13.358565,-13.308765,-13.258965,-13.209164,-13.159363,-13.109562,-13.059761,-13.00996,-12.960159,-12.910358,-12.860558,-12.810757,-12.760956,-12.711155,-12.661355,-12.611554,-12.561753,-12.511952,-12.462152,-12.412351,-12.36255,-12.312749,-12.262948,-12.213147,-12.163346,-12.113545,-12.063745,-12.013945,-11.964144,-11.914343,-11.864542,-11.814741,-11.76494,-11.715139,-11.6653385,-11.615538,-11.565737,-11.515936,-11.466135,-11.416335,-11.366534,-11.316733,-11.2669325,-11.217132,-11.167331,-11.11753,-11.067729,-11.017928,-10.968127,-10.918326,-10.8685255,-10.818725,-10.768925,-10.719124,-10.669323,-10.619522,-10.569721,-10.51992,-10.470119,-10.420319,-10.370518,-10.320717,-10.270916,-10.221115,-10.171315,-10.121514,-10.071713,-10.021913,-9.972112,-9.922311,-9.87251,-9.822709,-9.772908,-9.723107,-9.673306,-9.623506,-9.573705,-9.523905,-9.474104,-9.424303,-9.374502,-9.324701,-9.2749,-9.2251,-9.175299,-9.125498,-9.075697,-9.025896,-8.976095,-8.926295,-8.876494,-8.826694,-8.776893,-8.727092,-8.677291,-8.62749,-8.577689,-8.527888,-8.478087,-8.428287,-8.378486,-8.328685,-8.278885,-8.229084,-8.179283,-8.129482,-8.079681,-8.029881,-7.9800797,-7.930279,-7.880478,-7.8306775,-7.7808766,-7.731076,-7.681275,-7.631474,-7.581673,-7.5318723,-7.482072,-7.432271,-7.38247,-7.3326693,-7.2828684,-7.2330675,-7.183267,-7.1334662,-7.0836654,-7.0338645,-6.9840636,-6.9342628,-6.8844624,-6.8346615,-6.7848606,-6.7350597,-6.685259,-6.635458,-6.5856576,-6.5358567,-6.486056,-6.436255,-6.386454,-6.336653,-6.2868524,-6.237052,-6.187251,-6.13745,-6.0876493,-6.0378485,-5.9880476,-5.938247,-5.8884463,-5.8386455,-5.7888446,-5.7390437,-5.689243,-5.6394424,-5.5896416,-5.5398407,-5.49004,-5.440239,-5.390438,-5.3406377,-5.290837,-5.241036,-5.191235,-5.141434,-5.0916333,-5.0418324,-4.992032,-4.942231,-4.8924303,-4.8426294,-4.7928286,-4.7430277,-4.6932273,-4.6434264,-4.5936255,-4.5438247,-4.494024,-4.444223,-4.3944225,-4.3446217,-4.294821,-4.24502,-4.195219,-4.145418,-4.0956173,-4.045817,-3.996016,-3.9462152,-3.8964143,-3.8466136,-3.7968128,-3.747012,-3.6972113,-3.6474104,-3.5976095,-3.5478086,-3.498008,-3.4482071,-3.3984063,-3.3486056,-3.2988048,-3.249004,-3.1992033,-3.1494024,-3.0996015,-3.0498009,-3.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json index dcb11fa80b1a..823239a874cd 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/large_positive.json @@ -1 +1 @@ -{"expected":[0.32745015023725843,0.32228220501757976,0.317272386683515,0.3124136500429473,0.30769935672565835,0.3031232466029938,0.2986794115555974,0.29436227136958615,0.2901665515644846,0.28608726297654286,0.2821196829390524,0.2782593379172548,0.2745019874696298,0.27084360941999,0.2672803861360766,0.26380869182040123,0.2604250807280673,0.2571262762343455,0.2539091606819807,0.2507707659446741,0.2477082646489839,0.2447189620021126,0.2418002881777449,0.23894979121633422,0.23616513040005896,0.233444070066118,0.2307844738251565,0.2281842991544351,0.22564159233791684,0.2231544837277625,0.22072118330383614,0.2183399765097308,0.216009220345571,0.21372733969942823,0.21149282390063295,0.20930422347958236,0.2071601471198436,0.2050592587894541,0.20300027503931994,0.20098196245753583,0.1990031352692899,0.19706265307278792,0.19515941870233972,0.19329237621039916,0.19146050896094657,0.18966283782715046,0.18789841948675062,0.1861663448090685,0.1844657373279805,0.18279575179558286,0.18115557281164252,0.17954441352426334,0.1779615143975094,0.17640614204201288,0.1748775881048603,0.17337516821529744,0.17189822098302027,0.17044610704603122,0.16901820816523483,0.16761392636313044,0.16623268310412634,0.16487391851415778,0.1635370906374371,0.16222167472829832,0.16092716257622758,0.15965306186228406,0.15839889554523037,0.15716420127578884,0.15594853083753865,0.15475144961305537,0.1535725360739786,0.1524113812937703,0.15126758848199823,0.15014077253904828,0.14903055963022988,0.1479365867783013,0.14685850147349372,0.1457959613001678,0.1447486335792827,0.1437161950259048,0.1426983314210256,0.14169473729699794,0.1407051156359385,0.13972917758047806,0.13876664215627746,0.13781723600575385,0.13688069313249654,0.13595675465587448,0.13504516857536697,0.1341456895441721,0.13325807865167058,0.13238210321434454,0.13151753657477194,0.13066415790833558,0.1298217520373042,0.12899010925196158,0.12816902513847303,0.12735830041319784,0.1265577407631667,0.12576715669246008,0.12498636337423422,0.1242151805081555,0.12345343218301351,0.12270094674429595,0.12195755666651785,0.1212230984301074,0.12049741240266042,0.11978034272438426,0.11907173719755963,0.11837144717985787,0.11767932748135736,0.11699523626511117,0.11631903495112404,0.11565058812360322,0.11498976344135406,0.11433643155119712,0.11369046600428852,0.11305174317523091,0.1124201421838675,0.11179554481965587,0.11117783546852315,0.11056690104210817,0.1099626309093005,0.1093649168299901,0.10877365289094452,0.10818873544373496,0.10761006304463518,0.1070375363964206,0.10647105829199799,0.10591053355979911,0.10535586901087435,0.10480697338762507,0.10426375731411565,0.10372613324790905,0.10319401543337196,0.10266731985639682,0.1021459642004918,0.10162986780419023,0.10111895161973389,0.10061313817298566,0.10011235152452942,0.09961651723191638,0.09912556231301861,0.09863941521045212,0.09815800575703339,0.09768126514223459,0.09720912587960374,0.09674152177511809,0.09627838789643918,0.09581966054304042,0.09536527721717779,0.0949151765956766,0.09446929850250768,0.09402758388212691,0.09358997477355396,0.09315641428516636,0.09272684657018579,0.09230121680283478,0.09187947115514235,0.09146155677437846,0.091047421761097,0.09063701514776869,0.09023028687798529,0.08982718778621761,0.08942766957810985,0.08903168481129424,0.08863918687670962,0.08825012998040899,0.08786446912584081,0.08748216009659004,0.08710315943956486,0.08672742444861593,0.08635491314857514,0.08598558427970121,0.08561939728252065,0.08525631228305183,0.0848962900784012,0.0845392921227208,0.08418528051351655,0.08383421797829697,0.0834860678615527,0.08314079411205731,0.08279836127047999,0.08245873445730147,0.08212187936102444,0.0817877622266702,0.08145634984455333,0.08112760953932671,0.08080150915928938,0.08047801706594986,0.08015710212383755,0.07983873369055605,0.07952288160707115,0.07920951618822702,0.078898608213485,0.07859012891787814,0.0782840499831764,0.07798034352925604,0.07767898210566845,0.07737993868340264,0.07708318664683629,0.07678869978587041,0.0764964522882428,0.07620641873201538,0.07591857407823109,0.07563289366373571,0.07534935319416045,0.07506792873706089,0.07478859671520864,0.07451133390003126,0.07423611740519705,0.07396292468034087,0.07369173350492719,0.07342252198224719,0.07315526853354644,0.07288995189227947,0.07262655109848881,0.07236504549330461,0.07210541471356222,0.07184763868653482,0.07159169762477803,0.0713375720210839,0.07108524264354162,0.07083469053070202,0.07058589698684384,0.0703388435773388,0.07009351212411324,0.0698498847012042,0.0696079436304073,0.06936767147701454,0.0691290510456396,0.06889206537612866,0.06865669773955489,0.06842293163429422,0.06819075078218083,0.06796013912474037,0.06773108081949887,0.06750356023636608,0.06727756195409082,0.0670530707567874,0.06683007163053074,0.0666085497600192,0.06638849052530324,0.06616987949857848,0.06595270244104161,0.06573694529980796,0.06552259420488896,0.06530963546622849,0.06509805557079655,0.06488784117973906,0.06467897912558251,0.06447145640949227,0.06426526019858322,0.06406037782328189,0.06385679677473835,0.06365450470228749,0.06345348941095806,0.06325373885902857,0.06305524115562922,0.0628579845583885,0.06266195747112376,0.06246714844157484,0.062273546159179474,0.06208113945289,0.06188991728903014,0.061699868769191264,0.06151098312816712,0.06132324973192626,0.06113665807562135,0.06095119778163467,0.060766858597658874,0.06058363039481244,0.06040150316578901,0.060220467023039834,0.06004051219698878,0.05986162903427913,0.05968380799605154,0.05950703965625245,0.05933131469997254,0.05915662392181417,0.05898295822428787,0.058810308616236505,0.058638666211287306,0.05846802222633063,0.05829836798002517,0.05812969489132918,0.05796199447805683,0.05779525835545957,0.05762947823483178,0.05746464592214034,0.057300753316677444,0.057137792409736564,0.056975755283310635,0.05681463410881247,0.05665442114581667,0.05649510874082263,0.05633668932603854,0.0561791554181855,0.05602249961732166,0.055866714605685965,0.055711793146561085,0.055557728083155115,0.05540451233750176,0.05525213890937866,0.05510060087524337,0.05494989138718687,0.05480000367190407,0.054650931029681146,0.0545026668333993,0.05435520452755455,0.05420853762729355,0.05406265971746478,0.053917564451684996,0.05377324555142073,0.05362969680508438,0.05348691206714467,0.05334488525725141,0.05320361035937394,0.053063081420953354,0.05292329255206797,0.052784237924611954,0.052645911771486975,0.05250830838580623,0.052371422120111144,0.05223524738560015,0.05209977865136942,0.05196501044366543,0.051830937345149014,0.05169755399417077,0.05156485508405757,0.051432835362410154,0.051301489630411166,0.05117081274214409,0.0510407996039223,0.05091144517362835,0.050782744460063325,0.05065469252230599,0.050527284469081495,0.050400515458139734,0.05027438069564286,0.05014887543556204,0.05002399497908319,0.04989973467402152,0.049776089914244835,0.04965305613910528,0.0495306288328795,0.04940880352421715,0.04928757578559736,0.04916694123279316,0.04904689552434397,0.04892743436103544,0.04880855348538717,0.04869024868114764,0.04857251577279654,0.0484553506250544,0.048338749142399016,0.048222707268589106,0.04810722098619463,0.04799228631613393,0.047877899317217296,0.04776405608569734,0.047650752754825436,0.04753798549441466,0.04742575051040881,0.047314044044457534,0.04720286237349746,0.047092201809339165,0.046982058698259936,0.04687242942060225,0.04676331039037784,0.04665469805487724,0.04654658889428483,0.04643897942129908,0.046331866180758144,0.04622524574927064,0.04611911473485133,0.04601346977656205,0.04590830754415737,0.0458036247377351,0.04569941808739169,0.04559568435288221,0.0454924203232849,0.045389622816670416,0.04528728867977544,0.045185414787680594,0.045083998043492945,0.044983035378032485,0.044882523749523014,0.04478246014328702,0.04468284157144473,0.04458366507261706,0.0444849277116326,0.04438662657923837,0.044288758791814514,0.044191321491092714,0.0440943118438782,0.043997727041775604,0.04390156430091822,0.043805820861700935,0.043710493988516556,0.04361558096949559,0.043521079116249424,0.04342698576361683,0.043333298269413685,0.043240014014186014,0.04314713040096614,0.04305464485503196,0.04296255482366939,0.04287085777593776,0.0427795512024382,0.042688632615085084,0.04259809954688024,0.04250794955169009,0.04241818020402564,0.042328789098825155,0.042239773851239705,0.04215113209642125,0.04206286148931349,0.04197495970444538,0.04188742443572703,0.04180025339624834,0.04171344431808012,0.041626994952077515,0.04154090306768608,0.04145516645275013,0.041369782913323445,0.04128475027348241,0.04120006637514133,0.04111572907787006,0.04103173625871392,0.04094808581201573,0.040864775649240015,0.040781803698799475,0.04069916790588333,0.040616866232288,0.04053489665624967,0.04045325717227888,0.040371945790997184,0.04029096053897578,0.040210299458575904,0.040129960607791414,0.04004994206009294,0.039970241904274215,0.03989085824429997,0.03981178919915571,0.039733032902699444,0.03965458750351486,0.03957645116476652,0.039498622064056556,0.039421098393283206,0.039343878358500874,0.03926696017978194,0.039190342091080126,0.039114022340095464,0.039037999188140854,0.03896227091001016,0.038886835793847836,0.03881169214102007,0.03873683826598741,0.038662272496178846,0.03858799317186741,0.038513998646047064,0.03844028728431117,0.03836685746473225,0.03829370757774309,0.03822083602601933,0.03814824122436322,0.038075921599588884,0.03800387559040871,0.03793210164732113,0.03786059823249965,0.03778936381968312,0.03771839689406721,0.03764769595219719,0.037577259501861825,0.03750708606198846,0.0374371741625394,0.03736752234440926,0.03729812915932359,0.03722899316973859,0.03716011294874194,0.0370914870799547,0.03702311415743431,0.03695499278557869,0.036887121579031366,0.03681949916258765,0.036752124171101776,0.03668499524939523,0.036618111052165864,0.0365514702438982,0.03648507149877452,0.0364189135005871,0.03635299494265127,0.03628731452771952,0.036221870967896384,0.03615666298455438,0.036091689308250886,0.03602694867864569,0.03596243984441966,0.03589816156319416,0.035834112601451425,0.03577029173445561,0.035706697746174874],"x":[3.0,3.049800796812749,3.099601593625498,3.149402390438247,3.199203187250996,3.249003984063745,3.298804780876494,3.348605577689243,3.398406374501992,3.448207171314741,3.49800796812749,3.547808764940239,3.597609561752988,3.647410358565737,3.697211155378486,3.747011952191235,3.7968127490039842,3.846613545816733,3.896414342629482,3.946215139442231,3.99601593625498,4.0458167330677295,4.095617529880478,4.145418326693227,4.195219123505976,4.245019920318725,4.294820717131474,4.344621513944223,4.394422310756972,4.444223107569721,4.49402390438247,4.543824701195219,4.5936254980079685,4.643426294820717,4.693227091633466,4.743027888446215,4.792828685258964,4.842629482071713,4.892430278884462,4.942231075697211,4.99203187250996,5.04183266932271,5.091633466135458,5.1414342629482075,5.191235059760956,5.241035856573705,5.290836653386454,5.340637450199203,5.390438247011952,5.440239043824701,5.49003984063745,5.539840637450199,5.589641434262949,5.639442231075697,5.6892430278884465,5.739043824701195,5.788844621513944,5.838645418326693,5.888446215139442,5.938247011952191,5.98804780876494,6.03784860557769,6.087649402390438,6.137450199203188,6.187250996015936,6.2370517928286855,6.286852589641434,6.336653386454183,6.386454183266932,6.436254980079681,6.48605577689243,6.535856573705179,6.585657370517929,6.635458167330677,6.685258964143427,6.735059760956175,6.7848605577689245,6.834661354581673,6.884462151394422,6.934262948207171,6.98406374501992,7.03386454183267,7.083665338645418,7.133466135458168,7.183266932270916,7.233067729083666,7.282868525896414,7.3326693227091635,7.382470119521912,7.432270916334661,7.48207171314741,7.531872509960159,7.581673306772909,7.631474103585657,7.681274900398407,7.731075697211155,7.780876494023905,7.830677290836653,7.8804780876494025,7.930278884462151,7.9800796812749,8.02988047808765,8.079681274900398,8.129482071713147,8.179282868525897,8.229083665338646,8.278884462151394,8.328685258964143,8.378486055776893,8.428286852589641,8.47808764940239,8.52788844621514,8.577689243027889,8.627490039840637,8.677290836653386,8.727091633466136,8.776892430278885,8.826693227091633,8.876494023904382,8.926294820717132,8.97609561752988,9.025896414342629,9.07569721115538,9.125498007968128,9.175298804780876,9.225099601593625,9.274900398406375,9.324701195219124,9.374501992031872,9.42430278884462,9.474103585657371,9.52390438247012,9.573705179282868,9.623505976095618,9.673306772908367,9.723107569721115,9.772908366533864,9.822709163346614,9.872509960159363,9.922310756972111,9.97211155378486,10.02191235059761,10.071713147410359,10.121513944223107,10.171314741035857,10.221115537848606,10.270916334661354,10.320717131474103,10.370517928286853,10.420318725099602,10.47011952191235,10.5199203187251,10.569721115537849,10.619521912350598,10.669322709163346,10.719123505976096,10.768924302788845,10.818725099601593,10.868525896414342,10.918326693227092,10.96812749003984,11.01792828685259,11.06772908366534,11.117529880478088,11.167330677290837,11.217131474103585,11.266932270916335,11.316733067729084,11.366533864541832,11.41633466135458,11.466135458167331,11.51593625498008,11.565737051792828,11.615537848605578,11.665338645418327,11.715139442231076,11.764940239043824,11.814741035856574,11.864541832669323,11.914342629482071,11.96414342629482,12.01394422310757,12.063745019920319,12.113545816733067,12.163346613545817,12.213147410358566,12.262948207171315,12.312749003984063,12.362549800796813,12.412350597609562,12.46215139442231,12.51195219123506,12.56175298804781,12.611553784860558,12.661354581673306,12.711155378486056,12.760956175298805,12.810756972111554,12.860557768924302,12.910358565737052,12.9601593625498,13.00996015936255,13.0597609561753,13.109561752988048,13.159362549800797,13.209163346613545,13.258964143426295,13.308764940239044,13.358565737051793,13.408366533864541,13.458167330677291,13.50796812749004,13.557768924302788,13.607569721115539,13.657370517928287,13.707171314741036,13.756972111553784,13.806772908366534,13.856573705179283,13.906374501992032,13.95617529880478,14.00597609561753,14.055776892430279,14.105577689243027,14.155378486055778,14.205179282868526,14.254980079681275,14.304780876494023,14.354581673306773,14.404382470119522,14.45418326693227,14.50398406374502,14.55378486055777,14.603585657370518,14.653386454183266,14.703187250996017,14.752988047808765,14.802788844621514,14.852589641434262,14.902390438247012,14.952191235059761,15.00199203187251,15.05179282868526,15.101593625498008,15.151394422310757,15.201195219123505,15.250996015936256,15.300796812749004,15.350597609561753,15.400398406374501,15.450199203187251,15.5,15.549800796812749,15.599601593625499,15.649402390438247,15.699203187250996,15.749003984063744,15.798804780876495,15.848605577689243,15.898406374501992,15.94820717131474,15.99800796812749,16.04780876494024,16.09760956175299,16.147410358565736,16.197211155378486,16.247011952191237,16.296812749003983,16.346613545816734,16.39641434262948,16.44621513944223,16.49601593625498,16.545816733067728,16.595617529880478,16.64541832669323,16.695219123505975,16.745019920318725,16.794820717131476,16.844621513944222,16.894422310756973,16.94422310756972,16.99402390438247,17.04382470119522,17.093625498007967,17.143426294820717,17.193227091633467,17.243027888446214,17.292828685258964,17.342629482071715,17.39243027888446,17.44223107569721,17.49203187250996,17.54183266932271,17.59163346613546,17.641434262948206,17.691235059760956,17.741035856573706,17.790836653386453,17.840637450199203,17.890438247011954,17.9402390438247,17.99003984063745,18.0398406374502,18.089641434262948,18.139442231075698,18.189243027888445,18.239043824701195,18.288844621513945,18.338645418326692,18.388446215139442,18.438247011952193,18.48804780876494,18.53784860557769,18.58764940239044,18.637450199203187,18.687250996015937,18.737051792828684,18.786852589641434,18.836653386454184,18.88645418326693,18.93625498007968,18.98605577689243,19.03585657370518,19.08565737051793,19.13545816733068,19.185258964143426,19.235059760956176,19.284860557768923,19.334661354581673,19.384462151394423,19.43426294820717,19.48406374501992,19.53386454183267,19.583665338645417,19.633466135458168,19.683266932270918,19.733067729083665,19.782868525896415,19.83266932270916,19.882470119521912,19.932270916334662,19.98207171314741,20.03187250996016,20.08167330677291,20.131474103585656,20.181274900398407,20.231075697211157,20.280876494023904,20.330677290836654,20.3804780876494,20.43027888446215,20.4800796812749,20.529880478087648,20.5796812749004,20.62948207171315,20.679282868525895,20.729083665338646,20.778884462151396,20.828685258964143,20.878486055776893,20.92828685258964,20.97808764940239,21.02788844621514,21.077689243027887,21.127490039840637,21.177290836653388,21.227091633466134,21.276892430278885,21.326693227091635,21.37649402390438,21.426294820717132,21.47609561752988,21.52589641434263,21.57569721115538,21.625498007968126,21.675298804780876,21.725099601593627,21.774900398406373,21.824701195219124,21.874501992031874,21.92430278884462,21.97410358565737,22.02390438247012,22.073705179282868,22.12350597609562,22.173306772908365,22.223107569721115,22.272908366533866,22.322709163346612,22.372509960159363,22.422310756972113,22.47211155378486,22.52191235059761,22.57171314741036,22.621513944223107,22.671314741035857,22.721115537848604,22.770916334661354,22.820717131474105,22.87051792828685,22.9203187250996,22.970119521912352,23.0199203187251,23.06972111553785,23.1195219123506,23.169322709163346,23.219123505976096,23.268924302788843,23.318725099601593,23.368525896414344,23.41832669322709,23.46812749003984,23.51792828685259,23.567729083665338,23.617529880478088,23.66733067729084,23.717131474103585,23.766932270916335,23.816733067729082,23.866533864541832,23.916334661354583,23.96613545816733,24.01593625498008,24.06573705179283,24.115537848605577,24.165338645418327,24.215139442231077,24.264940239043824,24.314741035856574,24.36454183266932,24.41434262948207,24.46414342629482,24.51394422310757,24.56374501992032,24.61354581673307,24.663346613545816,24.713147410358566,24.762948207171316,24.812749003984063,24.862549800796813,24.91235059760956,24.96215139442231,25.01195219123506,25.061752988047807,25.111553784860558,25.161354581673308,25.211155378486055,25.260956175298805,25.310756972111555,25.360557768924302,25.410358565737052,25.4601593625498,25.50996015936255,25.5597609561753,25.609561752988046,25.659362549800797,25.709163346613547,25.758964143426294,25.808764940239044,25.858565737051794,25.90836653386454,25.95816733067729,26.00796812749004,26.05776892430279,26.10756972111554,26.157370517928285,26.207171314741036,26.256972111553786,26.306772908366533,26.356573705179283,26.406374501992033,26.45617529880478,26.50597609561753,26.55577689243028,26.605577689243027,26.655378486055778,26.705179282868524,26.754980079681275,26.804780876494025,26.85458167330677,26.904382470119522,26.954183266932272,27.00398406374502,27.05378486055777,27.10358565737052,27.153386454183266,27.203187250996017,27.252988047808763,27.302788844621514,27.352589641434264,27.40239043824701,27.45219123505976,27.50199203187251,27.551792828685258,27.60159362549801,27.65139442231076,27.701195219123505,27.750996015936256,27.800796812749002,27.850597609561753,27.900398406374503,27.95019920318725,28.0]} +{"expected":[0.32745016,0.32228217,0.3172724,0.31241366,0.30769932,0.30312327,0.2986794,0.29436228,0.29016656,0.28608727,0.28211966,0.27825934,0.274502,0.27084363,0.26728037,0.2638087,0.2604251,0.25712624,0.25390914,0.25077075,0.24770825,0.24471895,0.2418003,0.23894979,0.23616514,0.23344408,0.23078448,0.2281843,0.22564158,0.2231545,0.22072119,0.21833998,0.21600921,0.21372734,0.21149282,0.20930424,0.20716016,0.20505926,0.20300028,0.20098196,0.19900313,0.19706266,0.19515942,0.19329238,0.19146052,0.18966283,0.18789841,0.18616633,0.18446574,0.18279575,0.18115558,0.17954442,0.1779615,0.17640613,0.17487758,0.17337517,0.17189823,0.17044611,0.16901821,0.16761392,0.16623269,0.16487391,0.16353709,0.16222167,0.16092716,0.15965307,0.15839888,0.15716422,0.15594853,0.15475145,0.15357254,0.15241137,0.15126759,0.15014078,0.14903055,0.14793658,0.1468585,0.14579596,0.14474863,0.1437162,0.14269833,0.14169474,0.14070511,0.13972916,0.13876663,0.13781723,0.1368807,0.13595675,0.13504516,0.13414569,0.13325807,0.1323821,0.13151753,0.13066415,0.12982176,0.1289901,0.12816903,0.1273583,0.12655775,0.12576716,0.12498636,0.124215186,0.12345344,0.122700945,0.12195755,0.12122309,0.12049741,0.119780354,0.119071744,0.11837145,0.11767933,0.116995245,0.11631904,0.11565059,0.11498976,0.11433643,0.113690466,0.11305174,0.112420134,0.111795545,0.11117785,0.11056691,0.10996264,0.10936492,0.108773656,0.10818873,0.10761006,0.10703754,0.10647106,0.10591053,0.105355866,0.10480696,0.10426376,0.10372613,0.10319402,0.102667324,0.10214596,0.10162987,0.10111895,0.10061313,0.10011235,0.09961651,0.099125564,0.09863941,0.098158,0.09768126,0.097209126,0.09674153,0.09627839,0.09581966,0.09536528,0.094915174,0.094469294,0.09402758,0.09358997,0.09315641,0.09272685,0.09230122,0.09187947,0.09146156,0.09104742,0.09063701,0.090230286,0.08982718,0.089427665,0.08903168,0.088639185,0.08825013,0.087864466,0.087482154,0.08710316,0.086727425,0.08635491,0.085985586,0.0856194,0.085256316,0.084896296,0.084539294,0.08418528,0.083834216,0.08348606,0.08314079,0.08279836,0.08245874,0.08212189,0.08178776,0.081456356,0.081127614,0.08080151,0.08047801,0.0801571,0.07983873,0.07952288,0.079209514,0.07889861,0.07859013,0.078284055,0.07798035,0.077678986,0.077379934,0.077083185,0.07678869,0.07649645,0.076206416,0.07591857,0.07563289,0.07534935,0.07506792,0.07478859,0.07451134,0.07423612,0.07396292,0.07369173,0.07342253,0.07315527,0.072889954,0.072626546,0.07236504,0.072105415,0.07184764,0.071591705,0.07133757,0.07108524,0.07083469,0.0705859,0.070338845,0.07009351,0.069849886,0.06960794,0.06936768,0.06912905,0.06889206,0.0686567,0.068422936,0.06819075,0.06796014,0.06773108,0.06750356,0.06727756,0.067053065,0.06683008,0.06660855,0.06638849,0.06616987,0.065952696,0.06573695,0.065522596,0.06530964,0.06509806,0.064887844,0.06467898,0.06447145,0.064265266,0.064060375,0.063856795,0.063654505,0.06345349,0.06325373,0.06305525,0.062857985,0.06266196,0.062467154,0.06227354,0.06208114,0.06188992,0.06169987,0.061510984,0.06132325,0.061136663,0.060951203,0.060766865,0.06058363,0.060401503,0.060220465,0.06004051,0.059861626,0.05968381,0.05950704,0.059331317,0.059156626,0.058982953,0.058810305,0.058638666,0.058468018,0.058298368,0.058129694,0.05796199,0.057795253,0.057629474,0.057464648,0.057300754,0.057137795,0.056975756,0.056814637,0.056654423,0.056495108,0.05633669,0.056179155,0.0560225,0.055866715,0.05571179,0.055557728,0.055404514,0.05525214,0.055100597,0.05494989,0.0548,0.05465093,0.054502666,0.0543552,0.054208536,0.054062657,0.05391756,0.05377324,0.0536297,0.053486913,0.05334489,0.053203616,0.05306308,0.052923292,0.052784238,0.052645914,0.05250831,0.052371424,0.052235246,0.05209978,0.05196501,0.051830936,0.051697552,0.051564854,0.051432833,0.051301487,0.051170807,0.0510408,0.05091144,0.050782744,0.050654694,0.050527282,0.050400514,0.050274387,0.05014888,0.050024,0.049899735,0.04977609,0.04965306,0.04953063,0.049408805,0.049287573,0.049166944,0.049046896,0.048927434,0.048808552,0.04869025,0.048572518,0.04845535,0.04833875,0.048222706,0.04810722,0.047992285,0.047877897,0.047764055,0.04765075,0.047537982,0.047425747,0.047314044,0.047202863,0.047092203,0.04698206,0.046872433,0.046763316,0.046654698,0.04654659,0.04643898,0.046331868,0.04622525,0.046119116,0.04601347,0.045908306,0.04580362,0.045699418,0.045595687,0.04549242,0.045389622,0.04528729,0.045185413,0.045083996,0.044983037,0.044882525,0.044782456,0.04468284,0.044583667,0.044484932,0.044386633,0.04428876,0.044191323,0.044094313,0.04399773,0.043901566,0.043805823,0.043710493,0.04361558,0.04352108,0.043426983,0.043333296,0.043240014,0.04314713,0.043054644,0.042962555,0.042870857,0.04277955,0.042688634,0.0425981,0.042507946,0.04241818,0.042328786,0.042239774,0.042151134,0.042062864,0.04197496,0.04188743,0.041800257,0.041713443,0.041626997,0.041540906,0.041455165,0.041369785,0.041284747,0.041200068,0.041115727,0.041031737,0.040948085,0.040864773,0.040781803,0.04069917,0.040616866,0.040534895,0.040453255,0.040371943,0.040290955,0.0402103,0.04012996,0.040049944,0.039970245,0.039890856,0.039811786,0.039733034,0.039654586,0.03957645,0.039498623,0.0394211,0.03934388,0.03926696,0.03919034,0.039114024,0.039038,0.038962267,0.038886834,0.03881169,0.03873684,0.03866227,0.03858799,0.038514,0.038440287,0.038366854,0.038293708,0.038220834,0.038148243,0.038075924,0.038003877,0.0379321,0.0378606,0.037789367,0.037718397,0.037647698,0.03757726,0.037507087,0.03743718,0.03736752,0.03729813,0.03722899,0.037160113,0.037091486,0.037023116,0.03695499,0.03688712,0.036819495,0.036752123,0.036684994,0.03661811,0.036551468,0.036485072,0.036418915,0.036353,0.036287315,0.036221873,0.036156666,0.03609169,0.03602695,0.03596244,0.03589816,0.03583411,0.03577029,0.035706703],"x":[3.0,3.0498009,3.0996015,3.1494024,3.1992033,3.249004,3.2988048,3.3486056,3.3984063,3.4482071,3.498008,3.5478086,3.5976095,3.6474104,3.6972113,3.747012,3.7968128,3.8466136,3.8964143,3.9462152,3.996016,4.045817,4.0956173,4.145418,4.195219,4.24502,4.294821,4.3446217,4.3944225,4.444223,4.494024,4.5438247,4.5936255,4.6434264,4.6932273,4.7430277,4.7928286,4.8426294,4.8924303,4.942231,4.992032,5.0418324,5.0916333,5.141434,5.191235,5.241036,5.290837,5.3406377,5.390438,5.440239,5.49004,5.5398407,5.5896416,5.6394424,5.689243,5.7390437,5.7888446,5.8386455,5.8884463,5.938247,5.9880476,6.0378485,6.0876493,6.13745,6.187251,6.237052,6.2868524,6.336653,6.386454,6.436255,6.486056,6.5358567,6.5856576,6.635458,6.685259,6.7350597,6.7848606,6.8346615,6.8844624,6.9342628,6.9840636,7.0338645,7.0836654,7.1334662,7.183267,7.2330675,7.2828684,7.3326693,7.38247,7.432271,7.482072,7.5318723,7.581673,7.631474,7.681275,7.731076,7.7808766,7.8306775,7.880478,7.930279,7.9800797,8.029881,8.079681,8.129482,8.179283,8.229084,8.278885,8.328685,8.378486,8.428287,8.478087,8.527888,8.577689,8.62749,8.677291,8.727092,8.776893,8.826694,8.876494,8.926295,8.976095,9.025896,9.075697,9.125498,9.175299,9.2251,9.2749,9.324701,9.374502,9.424303,9.474104,9.523905,9.573705,9.623506,9.673306,9.723107,9.772908,9.822709,9.87251,9.922311,9.972112,10.021913,10.071713,10.121514,10.171315,10.221115,10.270916,10.320717,10.370518,10.420319,10.470119,10.51992,10.569721,10.619522,10.669323,10.719124,10.768925,10.818725,10.8685255,10.918326,10.968127,11.017928,11.067729,11.11753,11.167331,11.217132,11.2669325,11.316733,11.366534,11.416335,11.466135,11.515936,11.565737,11.615538,11.6653385,11.715139,11.76494,11.814741,11.864542,11.914343,11.964144,12.013945,12.063745,12.113545,12.163346,12.213147,12.262948,12.312749,12.36255,12.412351,12.462152,12.511952,12.561753,12.611554,12.661355,12.711155,12.760956,12.810757,12.860558,12.910358,12.960159,13.00996,13.059761,13.109562,13.159363,13.209164,13.258965,13.308765,13.358565,13.408366,13.458167,13.507968,13.557769,13.60757,13.657371,13.707171,13.756972,13.806773,13.856574,13.906375,13.956175,14.005976,14.055777,14.105577,14.155378,14.205179,14.25498,14.304781,14.354582,14.404383,14.454184,14.503984,14.553785,14.603585,14.653386,14.703187,14.752988,14.802789,14.85259,14.9023905,14.952191,15.001992,15.051793,15.101594,15.151395,15.201195,15.250996,15.3007965,15.350597,15.400398,15.450199,15.5,15.549801,15.599602,15.649403,15.6992035,15.749004,15.798805,15.848605,15.898406,15.948207,15.998008,16.04781,16.09761,16.14741,16.19721,16.247011,16.296812,16.346613,16.396414,16.446215,16.496016,16.545816,16.595617,16.645418,16.695219,16.74502,16.79482,16.844622,16.894423,16.944223,16.994024,17.043825,17.093626,17.143427,17.193228,17.243029,17.29283,17.34263,17.39243,17.44223,17.492031,17.541832,17.591633,17.641434,17.691235,17.741035,17.790836,17.840637,17.890438,17.940239,17.99004,18.03984,18.089642,18.139442,18.189243,18.239044,18.288845,18.338646,18.388447,18.438248,18.488049,18.53785,18.58765,18.63745,18.68725,18.737051,18.786852,18.836653,18.886454,18.936255,18.986055,19.035856,19.085657,19.135458,19.185259,19.23506,19.28486,19.334661,19.384462,19.434263,19.484064,19.533865,19.583666,19.633467,19.683268,19.733068,19.78287,19.83267,19.88247,19.93227,19.98207,20.031872,20.081673,20.131474,20.181274,20.231075,20.280876,20.330677,20.380478,20.430279,20.48008,20.52988,20.579681,20.629482,20.679283,20.729084,20.778885,20.828686,20.878487,20.928288,20.978088,21.02789,21.07769,21.12749,21.17729,21.22709,21.276892,21.326693,21.376493,21.426294,21.476095,21.525896,21.575697,21.625498,21.675299,21.7251,21.7749,21.824701,21.874502,21.924303,21.974104,22.023905,22.073706,22.123507,22.173307,22.223108,22.27291,22.32271,22.37251,22.42231,22.47211,22.521912,22.571712,22.621513,22.671314,22.721115,22.770916,22.820717,22.870518,22.920319,22.97012,23.01992,23.069721,23.119522,23.169323,23.219124,23.268925,23.318726,23.368526,23.418327,23.468128,23.51793,23.56773,23.61753,23.66733,23.71713,23.766932,23.816732,23.866533,23.916334,23.966135,24.015936,24.065737,24.115538,24.165339,24.21514,24.26494,24.314741,24.364542,24.414343,24.464144,24.513945,24.563745,24.613546,24.663347,24.713148,24.762949,24.81275,24.86255,24.91235,24.96215,25.011951,25.061752,25.111553,25.161354,25.211155,25.260956,25.310757,25.360558,25.410358,25.46016,25.50996,25.559761,25.609562,25.659363,25.709164,25.758965,25.808765,25.858566,25.908367,25.958168,26.007969,26.05777,26.10757,26.15737,26.20717,26.256971,26.306772,26.356573,26.406374,26.456175,26.505976,26.555777,26.605577,26.655378,26.70518,26.75498,26.804781,26.854582,26.904383,26.954184,27.003984,27.053785,27.103586,27.153387,27.203188,27.252989,27.30279,27.35259,27.40239,27.45219,27.501991,27.551792,27.601593,27.651394,27.701195,27.750996,27.800797,27.850597,27.900398,27.9502,28.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json index 643fcc4c413e..bdc800788080 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_negative.json @@ -1 +1 @@ -{"expected":[-0.035706697746174874,-0.035524803739635645,-0.03534475313496004,-0.035166518056279794,-0.034990071186844614,-0.034815385755076776,-0.03464243552104107,-0.0344711947633156,-0.034301638266249615,-0.034133741307595264,-0.03396747964650042,-0.03380282951185036,-0.03363976759094665,-0.033478271018511675,-0.0333183173660082,-0.03315988463126334,-0.033002951228386805,-0.03284749597797397,-0.03269349809758416,-0.03254093719248531,-0.03238979324665639,-0.03224004661403908,-0.03209167801003094,-0.03194466850321208,-0.03179899950729802,-0.031654652773311594,-0.03151161038196683,-0.031369854736258286,-0.031229368554249366,-0.03109013486205331,-0.03095213698700103,-0.030815358550989984,-0.03067978346400832,-0.030545395917829336,-0.030412180379870556,-0.03028012158721286,-0.03014920454077452,-0.030019414499635733,-0.02989073697550886,-0.029763157727350303,-0.029636662756109582,-0.02951123829961174,-0.029386870827568943,-0.029263547036717706,-0.02914125384607786,-0.029019978392329924,-0.028899708025307228,-0.028780430303599697,-0.028662132990265887,-0.02854480404865035,-0.028428431638303168,-0.028313004110998876,-0.028198510006851887,-0.028084938050525754,-0.027972277147533545,-0.027860516380626966,-0.027749645006271507,-0.027639652451205476,-0.02753052830908044,-0.027422262337180852,-0.027314844453220848,-0.027208264732215826,-0.027102513403427096,-0.02699758084737732,-0.026893457592935092,-0.026790134314466595,-0.0266876018290527,-0.026585851093769607,-0.026484873203031507,-0.026384659385993468,-0.026285201004013065,-0.026186489548169156,-0.026088516636836354,-0.02599127401331365,-0.02589475354350592,-0.02579894721365682,-0.025703847128131816,-0.02560944550725001,-0.025515734685163625,-0.025422707107783722,-0.02533035533075123,-0.025238672017451943,-0.02514764993707445,-0.025057281962709958,-0.02496756106949287,-0.024878480332781183,-0.024790032926375626,-0.02470221212077672,-0.024615011281478652,-0.024528423867299178,-0.024442443428744624,-0.024357063606409164,-0.02427227812940746,-0.024188080813839954,-0.02410446556128996,-0.024021426357351817,-0.023938957270189302,-0.023857052449123707,-0.023775706123250674,-0.023694912600085338,-0.023614666264234894,-0.023534961576098086,-0.023455793070590904,-0.023377155355897926,-0.023299043112248664,-0.02322145109071835,-0.02314437411205262,-0.02306780706551548,-0.02299174490776006,-0.022916182661721667,-0.022841115415532527,-0.022766538321457818,-0.022692446594852447,-0.02261883551313815,-0.022545700414800387,-0.02247303669840466,-0.022400839821631782,-0.02232910530033165,-0.02225782870759517,-0.022187005672843835,-0.022116631880936707,-0.022046703071294253,-0.021977215037038787,-0.021908163624151097,-0.021839544730642917,-0.02177135430574489,-0.021703588349109723,-0.0216362429100301,-0.02156931408667118,-0.021502798025317262,-0.021436690919632316,-0.021370989009934144,-0.02130568858248185,-0.021240785968776255,-0.021176277544873168,-0.02111215973070901,-0.021048428989438754,-0.020985081826785733,-0.020922114790403207,-0.02085952446924734,-0.02079730749296144,-0.02073546053127113,-0.020673980293390314,-0.020612863527437693,-0.020552107019863517,-0.020491707594886527,-0.020431662113940742,-0.02037196747513197,-0.02031262061270379,-0.020253618496512856,-0.0201949581315133,-0.020136636557250107,-0.020078650847361143,-0.020020998109087904,-0.019963675482794537,-0.01990668014149517,-0.019850009290389256,-0.019793660166404926,-0.019737630037749976,-0.019681916203470543,-0.019626515993017193,-0.01957142676581833,-0.019516645910860737,-0.0194621708462772,-0.019407999018940955,-0.019354127904066917,-0.01930055500481952,-0.019247277851927067,-0.01919429400330243,-0.019141601043669985,-0.019089196584198716,-0.019037078262141287,-0.01898524374047902,-0.018933690707572656,-0.01888241687681881,-0.018831419986311944,-0.018780697798511846,-0.01873024809991646,-0.018680068700739936,-0.018630157434595885,-0.018580512158185684,-0.01853113075099173,-0.018482011114975598,-0.018433151174280973,-0.01838454887494127,-0.01833620218459189,-0.018288109092186984,-0.01824026760772067,-0.018192675761952604,-0.018145331606137842,-0.018098233211760927,-0.01805137867027405,-0.018004766092839342,-0.01795839361007507,-0.01791225937180581,-0.017866361546816412,-0.01782069832260977,-0.01777526790516829,-0.017730068518718948,-0.017685098405502014,-0.017640355825543207,-0.01759583905642933,-0.0175515463930873,-0.01750747614756648,-0.017463626648824313,-0.01741999624251514,-0.0173765832907822,-0.01733338617205271,-0.017290403280836007,-0.01724763302752468,-0.017205073838198644,-0.017162724154432107,-0.017120582433103392,-0.01707864714620755,-0.017036916780671672,-0.016995389838173003,-0.016954064834959592,-0.016912940301673653,-0.016872014783177416,-0.016831286838381535,-0.016790755040075985,-0.01675041797476335,-0.016710274242494563,-0.01667032245670696,-0.01663056124406468,-0.016590989244301312,-0.016551605110064833,-0.016512407506764658,-0.016473395112420988,-0.016434566617516154,-0.016395920724848165,-0.016357456149386242,-0.01631917161812843,-0.016281065869961163,-0.016243137655520854,-0.016205385737057303,-0.016167808888299166,-0.01613040589432112,-0.016093175551413,-0.016056116666950667,-0.01601922805926869,-0.015982508557534757,-0.015945957001625845,-0.01590957224200604,-0.01587335313960605,-0.015837298565704348,-0.015801407401809978,-0.015765678539546853,-0.01573011088053973,-0.015694703336301637,-0.015659454828122865,-0.01562436428696144,-0.015589430653335066,-0.015554652877214494,-0.01552002991791836,-0.01548556074400937,-0.015451244333191894,-0.015417079672210935,-0.015383065756752395,-0.015349201591344688,-0.015315486189261637,-0.015281918572426646,-0.015248497771318153,-0.015215222824876272,-0.01518209278041071,-0.01514910669350983,-0.01511626362795097,-0.01508356265561183,-0.015051002856383087,-0.015018583318082096,-0.014986303136367734,-0.014954161414656305,-0.014922157264038543,-0.014890289803197685,-0.01485855815832859,-0.014826961463057864,-0.014795498858365038,-0.014764169492504715,-0.01473297252092975,-0.014701907106215325,-0.014670972417984067,-0.01464016763283206,-0.014609491934255791,-0.014578944512580017,-0.014548524564886551,-0.014518231294943909,-0.014488063913137866,-0.014458021636402831,-0.014428103688154127,-0.014398309298221073,-0.014368637702780906,-0.014339088144293514,-0.014309659871436975,-0.014280352139043898,-0.01425116420803852,-0.014222095345374596,-0.014193144823974033,-0.014164311922666288,-0.014135595926128489,-0.014106996124826274,-0.014078511814955374,-0.014050142298383883,-0.014021886882595229,-0.013993744880631825,-0.013965715611039412,-0.013937798397812062,-0.013909992570337827,-0.013882297463345053,-0.013854712416849345,-0.013827236776101122,-0.013799869891533832,-0.013772611118712768,-0.013745459818284497,-0.013718415355926864,-0.013691477102299612,-0.013664644432995556,-0.01363791672849237,-0.013611293374104886,-0.013584773759937985,-0.01355835728084004,-0.013532043336356886,-0.013505831330686321,-0.013479720672633151,-0.013453710775564749,-0.013427801057367132,-0.013401990940401518,-0.013376279851461429,-0.01335066722173024,-0.013325152486739256,-0.01329973508632624,-0.01327441446459441,-0.013249190069871944,-0.013224061354671903,-0.013199027775652624,-0.013174088793578563,-0.013149243873281593,-0.013124492483622713,-0.01309983409745421,-0.013075268191582235,-0.01305079424672981,-0.013026411747500233,-0.013002120182340912,-0.01297791904350759,-0.012953807827028976,-0.012929786032671753,-0.012905853163905998,-0.012882008727870977,-0.012858252235341313,-0.01283458320069352,-0.012811001141872926,-0.012787505580360958,-0.012764096041142764,-0.012740772052675209,-0.012717533146855222,-0.012694378858988477,-0.012671308727758424,-0.012648322295195661,-0.01262541910664762,-0.012602598710748602,-0.01257986065939014,-0.012557204507691641,-0.012534629813971408,-0.012512136139717914,-0.012489723049561436,-0.012467390111245941,-0.012445136895601321,-0.012422962976515902,-0.012400867930909236,-0.012378851338705215,-0.012356912782805426,-0.012335051849062844,-0.01231326812625575,-0.012291561206061955,-0.012269930683033298,-0.0122483761545704,-0.012226897220897677,-0.012205493485038648,-0.012184164552791454,-0.012162910032704694,-0.012141729536053443,-0.012120622676815582,-0.01209958907164833,-0.012078628339865062,-0.012057740103412316,-0.012036923986847088,-0.012016179617314325,-0.011995506624524685,-0.01197490464073248,-0.011954373300713894,-0.011933912241745387,-0.011913521103582356,-0.011893199528437969,-0.011872947160962264,-0.011852763648221427,-0.011832648639677293,-0.011812601787167053,-0.011792622744883165,-0.011772711169353498,-0.011752866719421603,-0.011733089056227277,-0.011713377843187246,-0.011693732745976088,-0.011674153432507335,-0.011654639572914741,-0.011635190839533788,-0.011615806906883325,-0.011596487451647423,-0.011577232152657397,-0.011558040690874015,-0.01153891274936987,-0.01151984801331195,-0.011500846169944344,-0.011481906908571166,-0.011463029920539606,-0.01144421489922317,-0.011425461540005072,-0.01140676954026181,-0.011388138599346882,-0.01136956841857466,-0.011351058701204439,-0.011332609152424638,-0.01131421947933713,-0.011295889390941765,-0.011277618598121006,-0.011259406813624742,-0.01124125375205522,-0.011223159129852155,-0.011205122665277949,-0.011187144078403091,-0.011169223091091652,-0.011151359426986968,-0.011133552811497407,-0.011115802971782331,-0.011098109636738138,-0.011080472536984473,-0.011062891404850552,-0.011045365974361628,-0.011027895981225574,-0.0110104811628196,-0.010993121258177092,-0.010975816007974584,-0.010958565154518837,-0.01094136844173406,-0.010924225615149228,-0.01090713642188554,-0.01089010061064398,-0.010873117931693002,-0.010856188136856333,-0.010839310979500876,-0.010822486214524737,-0.010805713598345364,-0.010788992888887789,-0.01077232384557299,-0.010755706229306343,-0.010739139802466192,-0.010722624328892542,-0.010706159573875808,-0.010689745304145723,-0.010673381287860304,-0.010657067294594959,-0.010640803095331648,-0.010624588462448176,-0.010608423169707582,-0.010592306992247615,-0.010576239706570302,-0.010560221090531619,-0.010544250923331258,-0.010528328985502485,-0.010512455058902075,-0.010496628926700367,-0.01048085037337137,-0.010465119184683007,-0.010449435147687402,-0.010433798050711271,-0.01041820768334641,-0.010402663836440252,-0.010387166302086515,-0.010371714873615935,-0.010356309345587077,-0.010340949513777238,-0.010325635175173412,-0.010310366127963348,-0.010295142171526703,-0.01027996310642623,-0.010264828734399087,-0.010249738858348198,-0.010234693282333705,-0.010219691811564482,-0.010204734252389725,-0.01018982041229063,-0.010174950099872125,-0.010160123124854686,-0.01014533929806623,-0.010130598431434051,-0.010115900337976868,-0.010101244831796894,-0.01008663172807203,-0.010072060843048063,-0.010057531994030993,-0.010043044999379382,-0.010028599678496784,-0.010014195851824252,-0.009999833340832886],"x":[-28.0,-28.143426294820717,-28.286852589641434,-28.43027888446215,-28.573705179282868,-28.717131474103585,-28.860557768924302,-29.00398406374502,-29.147410358565736,-29.290836653386453,-29.43426294820717,-29.577689243027887,-29.721115537848604,-29.86454183266932,-30.00796812749004,-30.15139442231076,-30.294820717131476,-30.438247011952193,-30.58167330677291,-30.725099601593627,-30.868525896414344,-31.01195219123506,-31.155378486055778,-31.298804780876495,-31.44223107569721,-31.58565737051793,-31.729083665338646,-31.872509960159363,-32.01593625498008,-32.1593625498008,-32.30278884462152,-32.44621513944223,-32.58964143426295,-32.733067729083665,-32.876494023904385,-33.0199203187251,-33.16334661354582,-33.30677290836653,-33.45019920318725,-33.59362549800797,-33.73705179282869,-33.8804780876494,-34.02390438247012,-34.167330677290835,-34.310756972111555,-34.45418326693227,-34.59760956175299,-34.7410358565737,-34.88446215139442,-35.02788844621514,-35.17131474103586,-35.31474103585657,-35.45816733067729,-35.601593625498005,-35.745019920318725,-35.88844621513944,-36.03187250996016,-36.17529880478088,-36.31872509960159,-36.462151394422314,-36.60557768924303,-36.74900398406375,-36.89243027888446,-37.03585657370518,-37.179282868525895,-37.322709163346616,-37.46613545816733,-37.60956175298805,-37.75298804780876,-37.896414342629484,-38.0398406374502,-38.18326693227092,-38.32669322709163,-38.47011952191235,-38.613545816733065,-38.756972111553786,-38.9003984063745,-39.04382470119522,-39.18725099601593,-39.330677290836654,-39.47410358565737,-39.61752988047809,-39.7609561752988,-39.90438247011952,-40.04780876494024,-40.191235059760956,-40.33466135458168,-40.47808764940239,-40.62151394422311,-40.764940239043824,-40.908366533864545,-41.05179282868526,-41.19521912350598,-41.33864541832669,-41.48207171314741,-41.625498007968126,-41.76892430278885,-41.91235059760956,-42.05577689243028,-42.199203187250994,-42.342629482071715,-42.48605577689243,-42.62948207171315,-42.77290836653386,-42.91633466135458,-43.059760956175296,-43.20318725099602,-43.34661354581673,-43.49003984063745,-43.633466135458164,-43.776892430278885,-43.9203187250996,-44.06374501992032,-44.20717131474104,-44.35059760956175,-44.49402390438247,-44.63745019920319,-44.78087649402391,-44.92430278884462,-45.06772908366534,-45.211155378486055,-45.354581673306775,-45.49800796812749,-45.64143426294821,-45.78486055776892,-45.92828685258964,-46.07171314741036,-46.21513944223108,-46.35856573705179,-46.50199203187251,-46.645418326693225,-46.788844621513945,-46.93227091633466,-47.07569721115538,-47.21912350597609,-47.36254980079681,-47.50597609561753,-47.64940239043825,-47.79282868525896,-47.93625498007968,-48.0796812749004,-48.223107569721115,-48.366533864541836,-48.50996015936255,-48.65338645418327,-48.79681274900398,-48.940239043824704,-49.08366533864542,-49.22709163346614,-49.37051792828685,-49.51394422310757,-49.657370517928285,-49.800796812749006,-49.94422310756972,-50.08764940239044,-50.23107569721115,-50.374501992031874,-50.51792828685259,-50.66135458167331,-50.80478087649402,-50.94820717131474,-51.091633466135455,-51.235059760956176,-51.37848605577689,-51.52191235059761,-51.66533864541832,-51.808764940239044,-51.95219123505976,-52.09561752988048,-52.2390438247012,-52.38247011952191,-52.52589641434263,-52.669322709163346,-52.81274900398407,-52.95617529880478,-53.0996015936255,-53.243027888446214,-53.386454183266935,-53.52988047808765,-53.67330677290837,-53.81673306772908,-53.9601593625498,-54.103585657370516,-54.24701195219124,-54.39043824701195,-54.53386454183267,-54.677290836653384,-54.820717131474105,-54.96414342629482,-55.10756972111554,-55.25099601593625,-55.39442231075697,-55.537848605577686,-55.68127490039841,-55.82470119521912,-55.96812749003984,-56.11155378486056,-56.254980079681275,-56.398406374501995,-56.54183266932271,-56.68525896414343,-56.82868525896414,-56.97211155378486,-57.11553784860558,-57.2589641434263,-57.40239043824701,-57.54581673306773,-57.689243027888445,-57.832669322709165,-57.97609561752988,-58.1195219123506,-58.26294820717131,-58.40637450199203,-58.54980079681275,-58.69322709163347,-58.83665338645418,-58.9800796812749,-59.123505976095615,-59.266932270916335,-59.41035856573705,-59.55378486055777,-59.69721115537848,-59.8406374501992,-59.98406374501992,-60.12749003984064,-60.27091633466136,-60.41434262948207,-60.55776892430279,-60.701195219123505,-60.844621513944226,-60.98804780876494,-61.13147410358566,-61.27490039840637,-61.418326693227094,-61.56175298804781,-61.70517928286853,-61.84860557768924,-61.99203187250996,-62.135458167330675,-62.278884462151396,-62.42231075697211,-62.56573705179283,-62.70916334661354,-62.852589641434264,-62.99601593625498,-63.1394422310757,-63.28286852589641,-63.42629482071713,-63.569721115537845,-63.713147410358566,-63.85657370517928,-64.0,-64.14342629482071,-64.28685258964144,-64.43027888446215,-64.57370517928287,-64.71713147410358,-64.86055776892431,-65.00398406374502,-65.14741035856574,-65.29083665338645,-65.43426294820718,-65.57768924302789,-65.7211155378486,-65.86454183266932,-66.00796812749005,-66.15139442231076,-66.29482071713147,-66.43824701195219,-66.58167330677291,-66.72509960159363,-66.86852589641434,-67.01195219123505,-67.15537848605578,-67.2988047808765,-67.44223107569721,-67.58565737051792,-67.72908366533865,-67.87250996015936,-68.01593625498008,-68.1593625498008,-68.30278884462152,-68.44621513944223,-68.58964143426294,-68.73306772908367,-68.87649402390439,-69.0199203187251,-69.16334661354581,-69.30677290836654,-69.45019920318725,-69.59362549800797,-69.73705179282868,-69.88047808764941,-70.02390438247012,-70.16733067729083,-70.31075697211155,-70.45418326693228,-70.59760956175299,-70.7410358565737,-70.88446215139442,-71.02788844621514,-71.17131474103586,-71.31474103585657,-71.45816733067728,-71.60159362549801,-71.74501992031873,-71.88844621513944,-72.03187250996017,-72.17529880478088,-72.3187250996016,-72.4621513944223,-72.60557768924303,-72.74900398406375,-72.89243027888446,-73.03585657370517,-73.1792828685259,-73.32270916334662,-73.46613545816733,-73.60956175298804,-73.75298804780877,-73.89641434262948,-74.0398406374502,-74.18326693227091,-74.32669322709164,-74.47011952191235,-74.61354581673307,-74.75697211155378,-74.9003984063745,-75.04382470119522,-75.18725099601593,-75.33067729083665,-75.47410358565737,-75.61752988047809,-75.7609561752988,-75.90438247011951,-76.04780876494024,-76.19123505976096,-76.33466135458167,-76.4780876494024,-76.62151394422311,-76.76494023904382,-76.90836653386454,-77.05179282868527,-77.19521912350598,-77.33864541832669,-77.4820717131474,-77.62549800796813,-77.76892430278885,-77.91235059760956,-78.05577689243027,-78.199203187251,-78.34262948207171,-78.48605577689243,-78.62948207171314,-78.77290836653387,-78.91633466135458,-79.0597609561753,-79.20318725099601,-79.34661354581674,-79.49003984063745,-79.63346613545816,-79.77689243027888,-79.9203187250996,-80.06374501992032,-80.20717131474103,-80.35059760956176,-80.49402390438247,-80.63745019920319,-80.7808764940239,-80.92430278884463,-81.06772908366534,-81.21115537848605,-81.35458167330677,-81.4980079681275,-81.64143426294821,-81.78486055776892,-81.92828685258964,-82.07171314741036,-82.21513944223108,-82.35856573705179,-82.5019920318725,-82.64541832669323,-82.78884462151395,-82.93227091633466,-83.07569721115537,-83.2191235059761,-83.36254980079681,-83.50597609561753,-83.64940239043824,-83.79282868525897,-83.93625498007968,-84.0796812749004,-84.22310756972112,-84.36653386454184,-84.50996015936255,-84.65338645418326,-84.79681274900399,-84.9402390438247,-85.08366533864542,-85.22709163346613,-85.37051792828686,-85.51394422310757,-85.65737051792829,-85.800796812749,-85.94422310756973,-86.08764940239044,-86.23107569721115,-86.37450199203187,-86.5179282868526,-86.66135458167331,-86.80478087649402,-86.94820717131473,-87.09163346613546,-87.23505976095618,-87.37848605577689,-87.5219123505976,-87.66533864541833,-87.80876494023904,-87.95219123505976,-88.09561752988049,-88.2390438247012,-88.38247011952191,-88.52589641434263,-88.66932270916335,-88.81274900398407,-88.95617529880478,-89.0996015936255,-89.24302788844622,-89.38645418326693,-89.52988047808765,-89.67330677290836,-89.81673306772909,-89.9601593625498,-90.10358565737052,-90.24701195219123,-90.39043824701196,-90.53386454183267,-90.67729083665338,-90.8207171314741,-90.96414342629483,-91.10756972111554,-91.25099601593625,-91.39442231075697,-91.5378486055777,-91.6812749003984,-91.82470119521912,-91.96812749003983,-92.11155378486056,-92.25498007968127,-92.39840637450199,-92.54183266932272,-92.68525896414343,-92.82868525896414,-92.97211155378486,-93.11553784860558,-93.2589641434263,-93.40239043824701,-93.54581673306772,-93.68924302788845,-93.83266932270917,-93.97609561752988,-94.11952191235059,-94.26294820717132,-94.40637450199203,-94.54980079681275,-94.69322709163346,-94.83665338645419,-94.9800796812749,-95.12350597609561,-95.26693227091633,-95.41035856573706,-95.55378486055777,-95.69721115537848,-95.8406374501992,-95.98406374501992,-96.12749003984064,-96.27091633466135,-96.41434262948208,-96.55776892430279,-96.7011952191235,-96.84462151394422,-96.98804780876495,-97.13147410358566,-97.27490039840637,-97.41832669322709,-97.56175298804781,-97.70517928286853,-97.84860557768924,-97.99203187250995,-98.13545816733068,-98.2788844621514,-98.42231075697211,-98.56573705179282,-98.70916334661355,-98.85258964143426,-98.99601593625498,-99.13944223107569,-99.28286852589642,-99.42629482071713,-99.56972111553785,-99.71314741035856,-99.85657370517929,-100.0]} +{"expected":[-0.009999833,-0.010014196,-0.010028599,-0.0100430455,-0.010057532,-0.010072061,-0.010086632,-0.010101244,-0.0101159,-0.010130599,-0.010145339,-0.010160124,-0.010174951,-0.010189821,-0.010204733,-0.010219692,-0.010234693,-0.0102497395,-0.010264829,-0.010279964,-0.0102951415,-0.010310367,-0.010325636,-0.0103409495,-0.01035631,-0.010371714,-0.0103871655,-0.010402664,-0.010418208,-0.010433799,-0.010449436,-0.010465119,-0.01048085,-0.010496629,-0.010512455,-0.010528329,-0.010544252,-0.01056022,-0.01057624,-0.010592307,-0.010608423,-0.010624589,-0.010640804,-0.010657067,-0.010673381,-0.010689745,-0.01070616,-0.010722624,-0.010739139,-0.010755707,-0.010772325,-0.010788994,-0.010805715,-0.010822486,-0.0108393105,-0.010856189,-0.010873118,-0.0108901,-0.010907137,-0.010924226,-0.010941368,-0.010958565,-0.010975817,-0.010993121,-0.011010481,-0.011027896,-0.011045366,-0.011062891,-0.011080474,-0.011098109,-0.011115802,-0.0111335525,-0.011151359,-0.011169223,-0.011187144,-0.011205123,-0.011223159,-0.011241253,-0.011259406,-0.011277619,-0.0112958895,-0.011314219,-0.01133261,-0.011351059,-0.011369568,-0.011388138,-0.011406769,-0.011425463,-0.011444215,-0.011463029,-0.011481906,-0.011500846,-0.011519847,-0.011538913,-0.01155804,-0.011577232,-0.011596487,-0.011615807,-0.011635191,-0.011654639,-0.011674154,-0.011693732,-0.011713377,-0.01173309,-0.011752867,-0.011772711,-0.0117926225,-0.011812601,-0.011832649,-0.011852764,-0.011872948,-0.0118932,-0.01191352,-0.011933912,-0.011954375,-0.011974905,-0.0119955065,-0.01201618,-0.012036924,-0.012057739,-0.012078629,-0.012099589,-0.012120622,-0.012141729,-0.01216291,-0.0121841645,-0.012205495,-0.012226897,-0.012248376,-0.012269931,-0.012291561,-0.012313268,-0.012335052,-0.012356914,-0.012378852,-0.012400868,-0.012422963,-0.012445136,-0.01246739,-0.012489723,-0.012512135,-0.0125346305,-0.012557205,-0.012579859,-0.012602599,-0.01262542,-0.012648323,-0.012671309,-0.012694377,-0.012717534,-0.012740772,-0.012764096,-0.012787505,-0.012811,-0.012834583,-0.012858253,-0.012882009,-0.012905853,-0.012929786,-0.012953808,-0.012977918,-0.013002121,-0.013026413,-0.013050795,-0.013075268,-0.013099833,-0.013124492,-0.013149245,-0.01317409,-0.013199029,-0.013224061,-0.01324919,-0.0132744135,-0.013299735,-0.013325153,-0.013350667,-0.01337628,-0.013401992,-0.0134278,-0.013453711,-0.01347972,-0.013505831,-0.0135320425,-0.013558357,-0.013584774,-0.013611294,-0.013637917,-0.013664644,-0.0136914775,-0.013718415,-0.013745461,-0.013772612,-0.013799869,-0.013827236,-0.013854712,-0.013882297,-0.013909994,-0.013937798,-0.013965717,-0.013993744,-0.0140218865,-0.014050142,-0.014078513,-0.014106997,-0.014135596,-0.014164311,-0.014193144,-0.014222096,-0.014251165,-0.014280353,-0.0143096605,-0.014339088,-0.014368637,-0.0143983085,-0.014428103,-0.014458022,-0.014488063,-0.01451823,-0.014548524,-0.014578946,-0.014609492,-0.014640167,-0.014670973,-0.0147019075,-0.014732972,-0.01476417,-0.0147955,-0.014826961,-0.014858558,-0.01489029,-0.014922157,-0.014954162,-0.014986304,-0.015018583,-0.015051003,-0.015083563,-0.015116263,-0.015149107,-0.015182094,-0.015215224,-0.015248498,-0.015281918,-0.015315485,-0.015349203,-0.015383067,-0.015417079,-0.015451244,-0.0154855605,-0.015520029,-0.015554654,-0.01558943,-0.015624364,-0.015659455,-0.015694704,-0.01573011,-0.01576568,-0.015801407,-0.015837297,-0.015873352,-0.015909571,-0.015945956,-0.015982509,-0.016019229,-0.016056117,-0.016093176,-0.016130406,-0.016167808,-0.016205387,-0.016243137,-0.016281066,-0.016319172,-0.016357455,-0.01639592,-0.016434567,-0.016473396,-0.016512407,-0.016551604,-0.016590988,-0.01663056,-0.016670324,-0.016710276,-0.016750418,-0.016790757,-0.016831286,-0.016872015,-0.01691294,-0.016954064,-0.01699539,-0.017036917,-0.017078647,-0.017120583,-0.017162725,-0.017205074,-0.017247632,-0.017290404,-0.017333386,-0.017376583,-0.017419996,-0.017463626,-0.017507477,-0.017551547,-0.017595839,-0.017640354,-0.017685099,-0.017730068,-0.017775267,-0.017820697,-0.017866362,-0.017912261,-0.017958393,-0.018004764,-0.01805138,-0.018098231,-0.018145332,-0.018192675,-0.018240267,-0.01828811,-0.018336201,-0.01838455,-0.018433152,-0.01848201,-0.018531129,-0.018580511,-0.018630156,-0.01868007,-0.018730247,-0.018780697,-0.018831419,-0.018882416,-0.018933691,-0.018985244,-0.019037079,-0.019089196,-0.0191416,-0.019194294,-0.019247279,-0.019300554,-0.019354127,-0.019407999,-0.01946217,-0.019516645,-0.019571427,-0.019626517,-0.019681916,-0.019737631,-0.01979366,-0.01985001,-0.01990668,-0.019963674,-0.020020999,-0.020078652,-0.020136636,-0.020194959,-0.020253617,-0.02031262,-0.020371968,-0.020431662,-0.020491706,-0.020552108,-0.020612866,-0.02067398,-0.020735461,-0.020797307,-0.020859525,-0.020922117,-0.020985082,-0.021048428,-0.02111216,-0.021176277,-0.021240786,-0.021305688,-0.021370988,-0.02143669,-0.021502798,-0.021569313,-0.021636242,-0.021703588,-0.021771353,-0.021839546,-0.021908164,-0.021977214,-0.022046704,-0.022116631,-0.022187004,-0.02225783,-0.022329105,-0.02240084,-0.02247304,-0.0225457,-0.022618836,-0.022692448,-0.022766538,-0.022841113,-0.022916183,-0.022991747,-0.023067806,-0.023144376,-0.02322145,-0.023299044,-0.023377156,-0.023455793,-0.023534961,-0.023614667,-0.023694914,-0.023775704,-0.023857053,-0.023938958,-0.024021424,-0.024104465,-0.024188079,-0.024272278,-0.024357064,-0.024442442,-0.024528425,-0.024615012,-0.024702212,-0.024790032,-0.02487848,-0.024967562,-0.025057284,-0.02514765,-0.025238672,-0.025330357,-0.025422707,-0.025515733,-0.025609447,-0.025703847,-0.025798947,-0.025894754,-0.025991274,-0.026088515,-0.02618649,-0.026285201,-0.026384657,-0.026484875,-0.02658585,-0.026687602,-0.026790136,-0.026893457,-0.02699758,-0.027102513,-0.027208263,-0.027314842,-0.027422264,-0.027530529,-0.02763965,-0.027749646,-0.027860517,-0.027972277,-0.02808494,-0.028198509,-0.028313005,-0.028428432,-0.028544804,-0.028662134,-0.02878043,-0.028899707,-0.02901998,-0.029141255,-0.029263545,-0.029386872,-0.029511238,-0.029636662,-0.02976316,-0.029890737,-0.030019414,-0.030149207,-0.03028012,-0.030412178,-0.030545395,-0.030679783,-0.030815357,-0.030952139,-0.031090135,-0.031229367,-0.031369854,-0.03151161,-0.031654652,-0.031799,-0.03194467,-0.032091677,-0.032240048,-0.032389794,-0.032540936,-0.032693498,-0.032847494,-0.033002954,-0.03315988,-0.033318315,-0.033478275,-0.03363977,-0.03380283,-0.03396748,-0.034133743,-0.03430164,-0.034471195,-0.034642436,-0.034815386,-0.03499007,-0.035166517,-0.035344753,-0.035524804,-0.035706703],"x":[-100.0,-99.856575,-99.71315,-99.56972,-99.42629,-99.28287,-99.13944,-98.99602,-98.85259,-98.70916,-98.565735,-98.42231,-98.278885,-98.13546,-97.992035,-97.8486,-97.70518,-97.56175,-97.41833,-97.2749,-97.13148,-96.988045,-96.84462,-96.701195,-96.55777,-96.414345,-96.27092,-96.12749,-95.98406,-95.84064,-95.69721,-95.55379,-95.41036,-95.26693,-95.123505,-94.98008,-94.836655,-94.69323,-94.5498,-94.40637,-94.26295,-94.11952,-93.9761,-93.83267,-93.68924,-93.545815,-93.40239,-93.258965,-93.11554,-92.972115,-92.82868,-92.68526,-92.54183,-92.39841,-92.25498,-92.11156,-91.968124,-91.8247,-91.681274,-91.53785,-91.394424,-91.251,-91.10757,-90.96414,-90.82072,-90.67729,-90.53387,-90.39044,-90.24701,-90.103584,-89.96016,-89.816734,-89.67331,-89.52988,-89.38645,-89.24303,-89.0996,-88.95618,-88.81275,-88.66932,-88.525894,-88.38247,-88.239044,-88.09562,-87.952194,-87.80876,-87.66534,-87.52191,-87.37849,-87.23506,-87.09164,-86.948204,-86.80478,-86.661354,-86.51793,-86.374504,-86.23108,-86.08765,-85.94422,-85.8008,-85.65737,-85.51395,-85.37052,-85.22709,-85.083664,-84.94024,-84.796814,-84.65339,-84.50996,-84.36653,-84.22311,-84.07968,-83.93626,-83.79283,-83.6494,-83.505974,-83.36255,-83.219124,-83.0757,-82.932274,-82.78884,-82.64542,-82.50199,-82.35857,-82.21514,-82.07172,-81.92828,-81.78486,-81.64143,-81.49801,-81.35458,-81.21116,-81.067726,-80.9243,-80.780876,-80.63745,-80.494026,-80.3506,-80.20717,-80.06374,-79.92032,-79.77689,-79.63347,-79.49004,-79.34661,-79.203186,-79.05976,-78.916336,-78.77291,-78.62948,-78.48605,-78.34263,-78.1992,-78.05578,-77.91235,-77.76892,-77.625496,-77.48207,-77.338646,-77.19522,-77.051796,-76.90836,-76.76494,-76.62151,-76.47809,-76.33466,-76.19124,-76.047806,-75.90438,-75.760956,-75.61753,-75.474106,-75.33068,-75.18725,-75.04382,-74.9004,-74.75697,-74.61355,-74.47012,-74.32669,-74.183266,-74.03984,-73.896416,-73.75299,-73.60956,-73.46613,-73.32271,-73.17928,-73.03586,-72.89243,-72.749,-72.605576,-72.46215,-72.318726,-72.1753,-72.031876,-71.88844,-71.74502,-71.60159,-71.45817,-71.31474,-71.17132,-71.027885,-70.88446,-70.741035,-70.59761,-70.454185,-70.31076,-70.16733,-70.0239,-69.88048,-69.73705,-69.59363,-69.4502,-69.30677,-69.163345,-69.01992,-68.876495,-68.73307,-68.58964,-68.44621,-68.30279,-68.15936,-68.01594,-67.87251,-67.72908,-67.585655,-67.44223,-67.298805,-67.15538,-67.011955,-66.86852,-66.7251,-66.58167,-66.43825,-66.29482,-66.1514,-66.007965,-65.86454,-65.721115,-65.57769,-65.434265,-65.29084,-65.14741,-65.00398,-64.86056,-64.71713,-64.57371,-64.43028,-64.28685,-64.143425,-64.0,-63.856575,-63.713146,-63.56972,-63.426296,-63.282867,-63.139442,-62.996017,-62.85259,-62.709164,-62.56574,-62.42231,-62.278885,-62.13546,-61.99203,-61.848606,-61.70518,-61.561752,-61.418327,-61.2749,-61.131474,-60.98805,-60.84462,-60.701195,-60.55777,-60.41434,-60.270916,-60.12749,-59.984062,-59.840637,-59.697212,-59.553783,-59.41036,-59.266933,-59.123505,-58.98008,-58.836655,-58.693226,-58.5498,-58.406376,-58.262947,-58.119522,-57.976097,-57.83267,-57.689243,-57.54582,-57.40239,-57.258965,-57.11554,-56.97211,-56.828686,-56.68526,-56.541832,-56.398407,-56.25498,-56.111553,-55.96813,-55.8247,-55.681274,-55.53785,-55.39442,-55.250996,-55.10757,-54.96414,-54.820717,-54.67729,-54.533863,-54.390438,-54.247013,-54.103584,-53.96016,-53.816734,-53.673306,-53.52988,-53.386456,-53.243027,-53.0996,-52.956177,-52.812748,-52.669323,-52.525898,-52.38247,-52.239044,-52.09562,-51.95219,-51.808765,-51.66534,-51.52191,-51.378487,-51.23506,-51.091633,-50.948208,-50.80478,-50.661354,-50.51793,-50.3745,-50.231075,-50.08765,-49.94422,-49.800797,-49.65737,-49.513943,-49.370518,-49.227093,-49.083664,-48.94024,-48.796814,-48.653385,-48.50996,-48.366535,-48.223106,-48.07968,-47.936256,-47.792828,-47.649403,-47.505978,-47.36255,-47.219124,-47.0757,-46.93227,-46.788845,-46.64542,-46.50199,-46.358566,-46.21514,-46.071712,-45.928288,-45.78486,-45.641434,-45.49801,-45.35458,-45.211155,-45.06773,-44.9243,-44.780876,-44.63745,-44.494022,-44.350597,-44.207172,-44.063744,-43.92032,-43.776894,-43.633465,-43.49004,-43.346615,-43.203186,-43.05976,-42.916336,-42.772907,-42.629482,-42.486057,-42.34263,-42.199203,-42.05578,-41.91235,-41.768925,-41.6255,-41.48207,-41.338646,-41.19522,-41.051792,-40.908367,-40.76494,-40.621513,-40.47809,-40.33466,-40.191235,-40.04781,-39.90438,-39.760956,-39.61753,-39.474102,-39.330677,-39.187252,-39.043823,-38.9004,-38.756973,-38.613544,-38.47012,-38.326694,-38.183266,-38.03984,-37.896416,-37.752987,-37.609562,-37.466137,-37.32271,-37.179283,-37.03586,-36.89243,-36.749004,-36.60558,-36.46215,-36.318726,-36.1753,-36.03187,-35.888447,-35.74502,-35.601593,-35.458168,-35.31474,-35.171314,-35.02789,-34.88446,-34.741035,-34.59761,-34.45418,-34.310757,-34.16733,-34.023903,-33.880478,-33.737053,-33.593624,-33.4502,-33.306774,-33.163345,-33.01992,-32.876495,-32.733067,-32.58964,-32.446217,-32.302788,-32.159363,-32.015938,-31.87251,-31.729084,-31.585657,-31.44223,-31.298805,-31.155378,-31.011951,-30.868526,-30.7251,-30.581673,-30.438248,-30.29482,-30.151394,-30.007969,-29.864542,-29.721115,-29.57769,-29.434263,-29.290836,-29.14741,-29.003984,-28.860558,-28.71713,-28.573706,-28.430279,-28.286852,-28.143427,-28.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json index a2581e9b32c3..8af4fac15caa 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/larger_positive.json @@ -1 +1 @@ -{"expected":[0.035706697746174874,0.035524803739635645,0.03534475313496004,0.035166518056279794,0.034990071186844614,0.034815385755076776,0.03464243552104107,0.0344711947633156,0.034301638266249615,0.034133741307595264,0.03396747964650042,0.03380282951185036,0.03363976759094665,0.033478271018511675,0.0333183173660082,0.03315988463126334,0.033002951228386805,0.03284749597797397,0.03269349809758416,0.03254093719248531,0.03238979324665639,0.03224004661403908,0.03209167801003094,0.03194466850321208,0.03179899950729802,0.031654652773311594,0.03151161038196683,0.031369854736258286,0.031229368554249366,0.03109013486205331,0.03095213698700103,0.030815358550989984,0.03067978346400832,0.030545395917829336,0.030412180379870556,0.03028012158721286,0.03014920454077452,0.030019414499635733,0.02989073697550886,0.029763157727350303,0.029636662756109582,0.02951123829961174,0.029386870827568943,0.029263547036717706,0.02914125384607786,0.029019978392329924,0.028899708025307228,0.028780430303599697,0.028662132990265887,0.02854480404865035,0.028428431638303168,0.028313004110998876,0.028198510006851887,0.028084938050525754,0.027972277147533545,0.027860516380626966,0.027749645006271507,0.027639652451205476,0.02753052830908044,0.027422262337180852,0.027314844453220848,0.027208264732215826,0.027102513403427096,0.02699758084737732,0.026893457592935092,0.026790134314466595,0.0266876018290527,0.026585851093769607,0.026484873203031507,0.026384659385993468,0.026285201004013065,0.026186489548169156,0.026088516636836354,0.02599127401331365,0.02589475354350592,0.02579894721365682,0.025703847128131816,0.02560944550725001,0.025515734685163625,0.025422707107783722,0.02533035533075123,0.025238672017451943,0.02514764993707445,0.025057281962709958,0.02496756106949287,0.024878480332781183,0.024790032926375626,0.02470221212077672,0.024615011281478652,0.024528423867299178,0.024442443428744624,0.024357063606409164,0.02427227812940746,0.024188080813839954,0.02410446556128996,0.024021426357351817,0.023938957270189302,0.023857052449123707,0.023775706123250674,0.023694912600085338,0.023614666264234894,0.023534961576098086,0.023455793070590904,0.023377155355897926,0.023299043112248664,0.02322145109071835,0.02314437411205262,0.02306780706551548,0.02299174490776006,0.022916182661721667,0.022841115415532527,0.022766538321457818,0.022692446594852447,0.02261883551313815,0.022545700414800387,0.02247303669840466,0.022400839821631782,0.02232910530033165,0.02225782870759517,0.022187005672843835,0.022116631880936707,0.022046703071294253,0.021977215037038787,0.021908163624151097,0.021839544730642917,0.02177135430574489,0.021703588349109723,0.0216362429100301,0.02156931408667118,0.021502798025317262,0.021436690919632316,0.021370989009934144,0.02130568858248185,0.021240785968776255,0.021176277544873168,0.02111215973070901,0.021048428989438754,0.020985081826785733,0.020922114790403207,0.02085952446924734,0.02079730749296144,0.02073546053127113,0.020673980293390314,0.020612863527437693,0.020552107019863517,0.020491707594886527,0.020431662113940742,0.02037196747513197,0.02031262061270379,0.020253618496512856,0.0201949581315133,0.020136636557250107,0.020078650847361143,0.020020998109087904,0.019963675482794537,0.01990668014149517,0.019850009290389256,0.019793660166404926,0.019737630037749976,0.019681916203470543,0.019626515993017193,0.01957142676581833,0.019516645910860737,0.0194621708462772,0.019407999018940955,0.019354127904066917,0.01930055500481952,0.019247277851927067,0.01919429400330243,0.019141601043669985,0.019089196584198716,0.019037078262141287,0.01898524374047902,0.018933690707572656,0.01888241687681881,0.018831419986311944,0.018780697798511846,0.01873024809991646,0.018680068700739936,0.018630157434595885,0.018580512158185684,0.01853113075099173,0.018482011114975598,0.018433151174280973,0.01838454887494127,0.01833620218459189,0.018288109092186984,0.01824026760772067,0.018192675761952604,0.018145331606137842,0.018098233211760927,0.01805137867027405,0.018004766092839342,0.01795839361007507,0.01791225937180581,0.017866361546816412,0.01782069832260977,0.01777526790516829,0.017730068518718948,0.017685098405502014,0.017640355825543207,0.01759583905642933,0.0175515463930873,0.01750747614756648,0.017463626648824313,0.01741999624251514,0.0173765832907822,0.01733338617205271,0.017290403280836007,0.01724763302752468,0.017205073838198644,0.017162724154432107,0.017120582433103392,0.01707864714620755,0.017036916780671672,0.016995389838173003,0.016954064834959592,0.016912940301673653,0.016872014783177416,0.016831286838381535,0.016790755040075985,0.01675041797476335,0.016710274242494563,0.01667032245670696,0.01663056124406468,0.016590989244301312,0.016551605110064833,0.016512407506764658,0.016473395112420988,0.016434566617516154,0.016395920724848165,0.016357456149386242,0.01631917161812843,0.016281065869961163,0.016243137655520854,0.016205385737057303,0.016167808888299166,0.01613040589432112,0.016093175551413,0.016056116666950667,0.01601922805926869,0.015982508557534757,0.015945957001625845,0.01590957224200604,0.01587335313960605,0.015837298565704348,0.015801407401809978,0.015765678539546853,0.01573011088053973,0.015694703336301637,0.015659454828122865,0.01562436428696144,0.015589430653335066,0.015554652877214494,0.01552002991791836,0.01548556074400937,0.015451244333191894,0.015417079672210935,0.015383065756752395,0.015349201591344688,0.015315486189261637,0.015281918572426646,0.015248497771318153,0.015215222824876272,0.01518209278041071,0.01514910669350983,0.01511626362795097,0.01508356265561183,0.015051002856383087,0.015018583318082096,0.014986303136367734,0.014954161414656305,0.014922157264038543,0.014890289803197685,0.01485855815832859,0.014826961463057864,0.014795498858365038,0.014764169492504715,0.01473297252092975,0.014701907106215325,0.014670972417984067,0.01464016763283206,0.014609491934255791,0.014578944512580017,0.014548524564886551,0.014518231294943909,0.014488063913137866,0.014458021636402831,0.014428103688154127,0.014398309298221073,0.014368637702780906,0.014339088144293514,0.014309659871436975,0.014280352139043898,0.01425116420803852,0.014222095345374596,0.014193144823974033,0.014164311922666288,0.014135595926128489,0.014106996124826274,0.014078511814955374,0.014050142298383883,0.014021886882595229,0.013993744880631825,0.013965715611039412,0.013937798397812062,0.013909992570337827,0.013882297463345053,0.013854712416849345,0.013827236776101122,0.013799869891533832,0.013772611118712768,0.013745459818284497,0.013718415355926864,0.013691477102299612,0.013664644432995556,0.01363791672849237,0.013611293374104886,0.013584773759937985,0.01355835728084004,0.013532043336356886,0.013505831330686321,0.013479720672633151,0.013453710775564749,0.013427801057367132,0.013401990940401518,0.013376279851461429,0.01335066722173024,0.013325152486739256,0.01329973508632624,0.01327441446459441,0.013249190069871944,0.013224061354671903,0.013199027775652624,0.013174088793578563,0.013149243873281593,0.013124492483622713,0.01309983409745421,0.013075268191582235,0.01305079424672981,0.013026411747500233,0.013002120182340912,0.01297791904350759,0.012953807827028976,0.012929786032671753,0.012905853163905998,0.012882008727870977,0.012858252235341313,0.01283458320069352,0.012811001141872926,0.012787505580360958,0.012764096041142764,0.012740772052675209,0.012717533146855222,0.012694378858988477,0.012671308727758424,0.012648322295195661,0.01262541910664762,0.012602598710748602,0.01257986065939014,0.012557204507691641,0.012534629813971408,0.012512136139717914,0.012489723049561436,0.012467390111245941,0.012445136895601321,0.012422962976515902,0.012400867930909236,0.012378851338705215,0.012356912782805426,0.012335051849062844,0.01231326812625575,0.012291561206061955,0.012269930683033298,0.0122483761545704,0.012226897220897677,0.012205493485038648,0.012184164552791454,0.012162910032704694,0.012141729536053443,0.012120622676815582,0.01209958907164833,0.012078628339865062,0.012057740103412316,0.012036923986847088,0.012016179617314325,0.011995506624524685,0.01197490464073248,0.011954373300713894,0.011933912241745387,0.011913521103582356,0.011893199528437969,0.011872947160962264,0.011852763648221427,0.011832648639677293,0.011812601787167053,0.011792622744883165,0.011772711169353498,0.011752866719421603,0.011733089056227277,0.011713377843187246,0.011693732745976088,0.011674153432507335,0.011654639572914741,0.011635190839533788,0.011615806906883325,0.011596487451647423,0.011577232152657397,0.011558040690874015,0.01153891274936987,0.01151984801331195,0.011500846169944344,0.011481906908571166,0.011463029920539606,0.01144421489922317,0.011425461540005072,0.01140676954026181,0.011388138599346882,0.01136956841857466,0.011351058701204439,0.011332609152424638,0.01131421947933713,0.011295889390941765,0.011277618598121006,0.011259406813624742,0.01124125375205522,0.011223159129852155,0.011205122665277949,0.011187144078403091,0.011169223091091652,0.011151359426986968,0.011133552811497407,0.011115802971782331,0.011098109636738138,0.011080472536984473,0.011062891404850552,0.011045365974361628,0.011027895981225574,0.0110104811628196,0.010993121258177092,0.010975816007974584,0.010958565154518837,0.01094136844173406,0.010924225615149228,0.01090713642188554,0.01089010061064398,0.010873117931693002,0.010856188136856333,0.010839310979500876,0.010822486214524737,0.010805713598345364,0.010788992888887789,0.01077232384557299,0.010755706229306343,0.010739139802466192,0.010722624328892542,0.010706159573875808,0.010689745304145723,0.010673381287860304,0.010657067294594959,0.010640803095331648,0.010624588462448176,0.010608423169707582,0.010592306992247615,0.010576239706570302,0.010560221090531619,0.010544250923331258,0.010528328985502485,0.010512455058902075,0.010496628926700367,0.01048085037337137,0.010465119184683007,0.010449435147687402,0.010433798050711271,0.01041820768334641,0.010402663836440252,0.010387166302086515,0.010371714873615935,0.010356309345587077,0.010340949513777238,0.010325635175173412,0.010310366127963348,0.010295142171526703,0.01027996310642623,0.010264828734399087,0.010249738858348198,0.010234693282333705,0.010219691811564482,0.010204734252389725,0.01018982041229063,0.010174950099872125,0.010160123124854686,0.01014533929806623,0.010130598431434051,0.010115900337976868,0.010101244831796894,0.01008663172807203,0.010072060843048063,0.010057531994030993,0.010043044999379382,0.010028599678496784,0.010014195851824252,0.009999833340832886],"x":[28.0,28.143426294820717,28.286852589641434,28.43027888446215,28.573705179282868,28.717131474103585,28.860557768924302,29.00398406374502,29.147410358565736,29.290836653386453,29.43426294820717,29.577689243027887,29.721115537848604,29.86454183266932,30.00796812749004,30.15139442231076,30.294820717131476,30.438247011952193,30.58167330677291,30.725099601593627,30.868525896414344,31.01195219123506,31.155378486055778,31.298804780876495,31.44223107569721,31.58565737051793,31.729083665338646,31.872509960159363,32.01593625498008,32.1593625498008,32.30278884462152,32.44621513944223,32.58964143426295,32.733067729083665,32.876494023904385,33.0199203187251,33.16334661354582,33.30677290836653,33.45019920318725,33.59362549800797,33.73705179282869,33.8804780876494,34.02390438247012,34.167330677290835,34.310756972111555,34.45418326693227,34.59760956175299,34.7410358565737,34.88446215139442,35.02788844621514,35.17131474103586,35.31474103585657,35.45816733067729,35.601593625498005,35.745019920318725,35.88844621513944,36.03187250996016,36.17529880478088,36.31872509960159,36.462151394422314,36.60557768924303,36.74900398406375,36.89243027888446,37.03585657370518,37.179282868525895,37.322709163346616,37.46613545816733,37.60956175298805,37.75298804780876,37.896414342629484,38.0398406374502,38.18326693227092,38.32669322709163,38.47011952191235,38.613545816733065,38.756972111553786,38.9003984063745,39.04382470119522,39.18725099601593,39.330677290836654,39.47410358565737,39.61752988047809,39.7609561752988,39.90438247011952,40.04780876494024,40.191235059760956,40.33466135458168,40.47808764940239,40.62151394422311,40.764940239043824,40.908366533864545,41.05179282868526,41.19521912350598,41.33864541832669,41.48207171314741,41.625498007968126,41.76892430278885,41.91235059760956,42.05577689243028,42.199203187250994,42.342629482071715,42.48605577689243,42.62948207171315,42.77290836653386,42.91633466135458,43.059760956175296,43.20318725099602,43.34661354581673,43.49003984063745,43.633466135458164,43.776892430278885,43.9203187250996,44.06374501992032,44.20717131474104,44.35059760956175,44.49402390438247,44.63745019920319,44.78087649402391,44.92430278884462,45.06772908366534,45.211155378486055,45.354581673306775,45.49800796812749,45.64143426294821,45.78486055776892,45.92828685258964,46.07171314741036,46.21513944223108,46.35856573705179,46.50199203187251,46.645418326693225,46.788844621513945,46.93227091633466,47.07569721115538,47.21912350597609,47.36254980079681,47.50597609561753,47.64940239043825,47.79282868525896,47.93625498007968,48.0796812749004,48.223107569721115,48.366533864541836,48.50996015936255,48.65338645418327,48.79681274900398,48.940239043824704,49.08366533864542,49.22709163346614,49.37051792828685,49.51394422310757,49.657370517928285,49.800796812749006,49.94422310756972,50.08764940239044,50.23107569721115,50.374501992031874,50.51792828685259,50.66135458167331,50.80478087649402,50.94820717131474,51.091633466135455,51.235059760956176,51.37848605577689,51.52191235059761,51.66533864541832,51.808764940239044,51.95219123505976,52.09561752988048,52.2390438247012,52.38247011952191,52.52589641434263,52.669322709163346,52.81274900398407,52.95617529880478,53.0996015936255,53.243027888446214,53.386454183266935,53.52988047808765,53.67330677290837,53.81673306772908,53.9601593625498,54.103585657370516,54.24701195219124,54.39043824701195,54.53386454183267,54.677290836653384,54.820717131474105,54.96414342629482,55.10756972111554,55.25099601593625,55.39442231075697,55.537848605577686,55.68127490039841,55.82470119521912,55.96812749003984,56.11155378486056,56.254980079681275,56.398406374501995,56.54183266932271,56.68525896414343,56.82868525896414,56.97211155378486,57.11553784860558,57.2589641434263,57.40239043824701,57.54581673306773,57.689243027888445,57.832669322709165,57.97609561752988,58.1195219123506,58.26294820717131,58.40637450199203,58.54980079681275,58.69322709163347,58.83665338645418,58.9800796812749,59.123505976095615,59.266932270916335,59.41035856573705,59.55378486055777,59.69721115537848,59.8406374501992,59.98406374501992,60.12749003984064,60.27091633466136,60.41434262948207,60.55776892430279,60.701195219123505,60.844621513944226,60.98804780876494,61.13147410358566,61.27490039840637,61.418326693227094,61.56175298804781,61.70517928286853,61.84860557768924,61.99203187250996,62.135458167330675,62.278884462151396,62.42231075697211,62.56573705179283,62.70916334661354,62.852589641434264,62.99601593625498,63.1394422310757,63.28286852589641,63.42629482071713,63.569721115537845,63.713147410358566,63.85657370517928,64.0,64.14342629482071,64.28685258964144,64.43027888446215,64.57370517928287,64.71713147410358,64.86055776892431,65.00398406374502,65.14741035856574,65.29083665338645,65.43426294820718,65.57768924302789,65.7211155378486,65.86454183266932,66.00796812749005,66.15139442231076,66.29482071713147,66.43824701195219,66.58167330677291,66.72509960159363,66.86852589641434,67.01195219123505,67.15537848605578,67.2988047808765,67.44223107569721,67.58565737051792,67.72908366533865,67.87250996015936,68.01593625498008,68.1593625498008,68.30278884462152,68.44621513944223,68.58964143426294,68.73306772908367,68.87649402390439,69.0199203187251,69.16334661354581,69.30677290836654,69.45019920318725,69.59362549800797,69.73705179282868,69.88047808764941,70.02390438247012,70.16733067729083,70.31075697211155,70.45418326693228,70.59760956175299,70.7410358565737,70.88446215139442,71.02788844621514,71.17131474103586,71.31474103585657,71.45816733067728,71.60159362549801,71.74501992031873,71.88844621513944,72.03187250996017,72.17529880478088,72.3187250996016,72.4621513944223,72.60557768924303,72.74900398406375,72.89243027888446,73.03585657370517,73.1792828685259,73.32270916334662,73.46613545816733,73.60956175298804,73.75298804780877,73.89641434262948,74.0398406374502,74.18326693227091,74.32669322709164,74.47011952191235,74.61354581673307,74.75697211155378,74.9003984063745,75.04382470119522,75.18725099601593,75.33067729083665,75.47410358565737,75.61752988047809,75.7609561752988,75.90438247011951,76.04780876494024,76.19123505976096,76.33466135458167,76.4780876494024,76.62151394422311,76.76494023904382,76.90836653386454,77.05179282868527,77.19521912350598,77.33864541832669,77.4820717131474,77.62549800796813,77.76892430278885,77.91235059760956,78.05577689243027,78.199203187251,78.34262948207171,78.48605577689243,78.62948207171314,78.77290836653387,78.91633466135458,79.0597609561753,79.20318725099601,79.34661354581674,79.49003984063745,79.63346613545816,79.77689243027888,79.9203187250996,80.06374501992032,80.20717131474103,80.35059760956176,80.49402390438247,80.63745019920319,80.7808764940239,80.92430278884463,81.06772908366534,81.21115537848605,81.35458167330677,81.4980079681275,81.64143426294821,81.78486055776892,81.92828685258964,82.07171314741036,82.21513944223108,82.35856573705179,82.5019920318725,82.64541832669323,82.78884462151395,82.93227091633466,83.07569721115537,83.2191235059761,83.36254980079681,83.50597609561753,83.64940239043824,83.79282868525897,83.93625498007968,84.0796812749004,84.22310756972112,84.36653386454184,84.50996015936255,84.65338645418326,84.79681274900399,84.9402390438247,85.08366533864542,85.22709163346613,85.37051792828686,85.51394422310757,85.65737051792829,85.800796812749,85.94422310756973,86.08764940239044,86.23107569721115,86.37450199203187,86.5179282868526,86.66135458167331,86.80478087649402,86.94820717131473,87.09163346613546,87.23505976095618,87.37848605577689,87.5219123505976,87.66533864541833,87.80876494023904,87.95219123505976,88.09561752988049,88.2390438247012,88.38247011952191,88.52589641434263,88.66932270916335,88.81274900398407,88.95617529880478,89.0996015936255,89.24302788844622,89.38645418326693,89.52988047808765,89.67330677290836,89.81673306772909,89.9601593625498,90.10358565737052,90.24701195219123,90.39043824701196,90.53386454183267,90.67729083665338,90.8207171314741,90.96414342629483,91.10756972111554,91.25099601593625,91.39442231075697,91.5378486055777,91.6812749003984,91.82470119521912,91.96812749003983,92.11155378486056,92.25498007968127,92.39840637450199,92.54183266932272,92.68525896414343,92.82868525896414,92.97211155378486,93.11553784860558,93.2589641434263,93.40239043824701,93.54581673306772,93.68924302788845,93.83266932270917,93.97609561752988,94.11952191235059,94.26294820717132,94.40637450199203,94.54980079681275,94.69322709163346,94.83665338645419,94.9800796812749,95.12350597609561,95.26693227091633,95.41035856573706,95.55378486055777,95.69721115537848,95.8406374501992,95.98406374501992,96.12749003984064,96.27091633466135,96.41434262948208,96.55776892430279,96.7011952191235,96.84462151394422,96.98804780876495,97.13147410358566,97.27490039840637,97.41832669322709,97.56175298804781,97.70517928286853,97.84860557768924,97.99203187250995,98.13545816733068,98.2788844621514,98.42231075697211,98.56573705179282,98.70916334661355,98.85258964143426,98.99601593625498,99.13944223107569,99.28286852589642,99.42629482071713,99.56972111553785,99.71314741035856,99.85657370517929,100.0]} +{"expected":[0.035706703,0.035524804,0.035344753,0.035166517,0.03499007,0.034815386,0.034642436,0.034471195,0.03430164,0.034133743,0.03396748,0.03380283,0.03363977,0.033478275,0.033318315,0.03315988,0.033002954,0.032847494,0.032693498,0.032540936,0.032389794,0.032240048,0.032091677,0.03194467,0.031799,0.031654652,0.03151161,0.031369854,0.031229367,0.031090135,0.030952139,0.030815357,0.030679783,0.030545395,0.030412178,0.03028012,0.030149207,0.030019414,0.029890737,0.02976316,0.029636662,0.029511238,0.029386872,0.029263545,0.029141255,0.02901998,0.028899707,0.02878043,0.028662134,0.028544804,0.028428432,0.028313005,0.028198509,0.02808494,0.027972277,0.027860517,0.027749646,0.02763965,0.027530529,0.027422264,0.027314842,0.027208263,0.027102513,0.02699758,0.026893457,0.026790136,0.026687602,0.02658585,0.026484875,0.026384657,0.026285201,0.02618649,0.026088515,0.025991274,0.025894754,0.025798947,0.025703847,0.025609447,0.025515733,0.025422707,0.025330357,0.025238672,0.02514765,0.025057284,0.024967562,0.02487848,0.024790032,0.024702212,0.024615012,0.024528425,0.024442442,0.024357064,0.024272278,0.024188079,0.024104465,0.024021424,0.023938958,0.023857053,0.023775704,0.023694914,0.023614667,0.023534961,0.023455793,0.023377156,0.023299044,0.02322145,0.023144376,0.023067806,0.022991747,0.022916183,0.022841113,0.022766538,0.022692448,0.022618836,0.0225457,0.02247304,0.02240084,0.022329105,0.02225783,0.022187004,0.022116631,0.022046704,0.021977214,0.021908164,0.021839546,0.021771353,0.021703588,0.021636242,0.021569313,0.021502798,0.02143669,0.021370988,0.021305688,0.021240786,0.021176277,0.02111216,0.021048428,0.020985082,0.020922117,0.020859525,0.020797307,0.020735461,0.02067398,0.020612866,0.020552108,0.020491706,0.020431662,0.020371968,0.02031262,0.020253617,0.020194959,0.020136636,0.020078652,0.020020999,0.019963674,0.01990668,0.01985001,0.01979366,0.019737631,0.019681916,0.019626517,0.019571427,0.019516645,0.01946217,0.019407999,0.019354127,0.019300554,0.019247279,0.019194294,0.0191416,0.019089196,0.019037079,0.018985244,0.018933691,0.018882416,0.018831419,0.018780697,0.018730247,0.01868007,0.018630156,0.018580511,0.018531129,0.01848201,0.018433152,0.01838455,0.018336201,0.01828811,0.018240267,0.018192675,0.018145332,0.018098231,0.01805138,0.018004764,0.017958393,0.017912261,0.017866362,0.017820697,0.017775267,0.017730068,0.017685099,0.017640354,0.017595839,0.017551547,0.017507477,0.017463626,0.017419996,0.017376583,0.017333386,0.017290404,0.017247632,0.017205074,0.017162725,0.017120583,0.017078647,0.017036917,0.01699539,0.016954064,0.01691294,0.016872015,0.016831286,0.016790757,0.016750418,0.016710276,0.016670324,0.01663056,0.016590988,0.016551604,0.016512407,0.016473396,0.016434567,0.01639592,0.016357455,0.016319172,0.016281066,0.016243137,0.016205387,0.016167808,0.016130406,0.016093176,0.016056117,0.016019229,0.015982509,0.015945956,0.015909571,0.015873352,0.015837297,0.015801407,0.01576568,0.01573011,0.015694704,0.015659455,0.015624364,0.01558943,0.015554654,0.015520029,0.0154855605,0.015451244,0.015417079,0.015383067,0.015349203,0.015315485,0.015281918,0.015248498,0.015215224,0.015182094,0.015149107,0.015116263,0.015083563,0.015051003,0.015018583,0.014986304,0.014954162,0.014922157,0.01489029,0.014858558,0.014826961,0.0147955,0.01476417,0.014732972,0.0147019075,0.014670973,0.014640167,0.014609492,0.014578946,0.014548524,0.01451823,0.014488063,0.014458022,0.014428103,0.0143983085,0.014368637,0.014339088,0.0143096605,0.014280353,0.014251165,0.014222096,0.014193144,0.014164311,0.014135596,0.014106997,0.014078513,0.014050142,0.0140218865,0.013993744,0.013965717,0.013937798,0.013909994,0.013882297,0.013854712,0.013827236,0.013799869,0.013772612,0.013745461,0.013718415,0.0136914775,0.013664644,0.013637917,0.013611294,0.013584774,0.013558357,0.0135320425,0.013505831,0.01347972,0.013453711,0.0134278,0.013401992,0.01337628,0.013350667,0.013325153,0.013299735,0.0132744135,0.01324919,0.013224061,0.013199029,0.01317409,0.013149245,0.013124492,0.013099833,0.013075268,0.013050795,0.013026413,0.013002121,0.012977918,0.012953808,0.012929786,0.012905853,0.012882009,0.012858253,0.012834583,0.012811,0.012787505,0.012764096,0.012740772,0.012717534,0.012694377,0.012671309,0.012648323,0.01262542,0.012602599,0.012579859,0.012557205,0.0125346305,0.012512135,0.012489723,0.01246739,0.012445136,0.012422963,0.012400868,0.012378852,0.012356914,0.012335052,0.012313268,0.012291561,0.012269931,0.012248376,0.012226897,0.012205495,0.0121841645,0.01216291,0.012141729,0.012120622,0.012099589,0.012078629,0.012057739,0.012036924,0.01201618,0.0119955065,0.011974905,0.011954375,0.011933912,0.01191352,0.0118932,0.011872948,0.011852764,0.011832649,0.011812601,0.0117926225,0.011772711,0.011752867,0.01173309,0.011713377,0.011693732,0.011674154,0.011654639,0.011635191,0.011615807,0.011596487,0.011577232,0.01155804,0.011538913,0.011519847,0.011500846,0.011481906,0.011463029,0.011444215,0.011425463,0.011406769,0.011388138,0.011369568,0.011351059,0.01133261,0.011314219,0.0112958895,0.011277619,0.011259406,0.011241253,0.011223159,0.011205123,0.011187144,0.011169223,0.011151359,0.0111335525,0.011115802,0.011098109,0.011080474,0.011062891,0.011045366,0.011027896,0.011010481,0.010993121,0.010975817,0.010958565,0.010941368,0.010924226,0.010907137,0.0108901,0.010873118,0.010856189,0.0108393105,0.010822486,0.010805715,0.010788994,0.010772325,0.010755707,0.010739139,0.010722624,0.01070616,0.010689745,0.010673381,0.010657067,0.010640804,0.010624589,0.010608423,0.010592307,0.01057624,0.01056022,0.010544252,0.010528329,0.010512455,0.010496629,0.01048085,0.010465119,0.010449436,0.010433799,0.010418208,0.010402664,0.0103871655,0.010371714,0.01035631,0.0103409495,0.010325636,0.010310367,0.0102951415,0.010279964,0.010264829,0.0102497395,0.010234693,0.010219692,0.010204733,0.010189821,0.010174951,0.010160124,0.010145339,0.010130599,0.0101159,0.010101244,0.010086632,0.010072061,0.010057532,0.0100430455,0.010028599,0.010014196,0.009999833],"x":[28.0,28.143427,28.286852,28.430279,28.573706,28.71713,28.860558,29.003984,29.14741,29.290836,29.434263,29.57769,29.721115,29.864542,30.007969,30.151394,30.29482,30.438248,30.581673,30.7251,30.868526,31.011951,31.155378,31.298805,31.44223,31.585657,31.729084,31.87251,32.015938,32.159363,32.302788,32.446217,32.58964,32.733067,32.876495,33.01992,33.163345,33.306774,33.4502,33.593624,33.737053,33.880478,34.023903,34.16733,34.310757,34.45418,34.59761,34.741035,34.88446,35.02789,35.171314,35.31474,35.458168,35.601593,35.74502,35.888447,36.03187,36.1753,36.318726,36.46215,36.60558,36.749004,36.89243,37.03586,37.179283,37.32271,37.466137,37.609562,37.752987,37.896416,38.03984,38.183266,38.326694,38.47012,38.613544,38.756973,38.9004,39.043823,39.187252,39.330677,39.474102,39.61753,39.760956,39.90438,40.04781,40.191235,40.33466,40.47809,40.621513,40.76494,40.908367,41.051792,41.19522,41.338646,41.48207,41.6255,41.768925,41.91235,42.05578,42.199203,42.34263,42.486057,42.629482,42.772907,42.916336,43.05976,43.203186,43.346615,43.49004,43.633465,43.776894,43.92032,44.063744,44.207172,44.350597,44.494022,44.63745,44.780876,44.9243,45.06773,45.211155,45.35458,45.49801,45.641434,45.78486,45.928288,46.071712,46.21514,46.358566,46.50199,46.64542,46.788845,46.93227,47.0757,47.219124,47.36255,47.505978,47.649403,47.792828,47.936256,48.07968,48.223106,48.366535,48.50996,48.653385,48.796814,48.94024,49.083664,49.227093,49.370518,49.513943,49.65737,49.800797,49.94422,50.08765,50.231075,50.3745,50.51793,50.661354,50.80478,50.948208,51.091633,51.23506,51.378487,51.52191,51.66534,51.808765,51.95219,52.09562,52.239044,52.38247,52.525898,52.669323,52.812748,52.956177,53.0996,53.243027,53.386456,53.52988,53.673306,53.816734,53.96016,54.103584,54.247013,54.390438,54.533863,54.67729,54.820717,54.96414,55.10757,55.250996,55.39442,55.53785,55.681274,55.8247,55.96813,56.111553,56.25498,56.398407,56.541832,56.68526,56.828686,56.97211,57.11554,57.258965,57.40239,57.54582,57.689243,57.83267,57.976097,58.119522,58.262947,58.406376,58.5498,58.693226,58.836655,58.98008,59.123505,59.266933,59.41036,59.553783,59.697212,59.840637,59.984062,60.12749,60.270916,60.41434,60.55777,60.701195,60.84462,60.98805,61.131474,61.2749,61.418327,61.561752,61.70518,61.848606,61.99203,62.13546,62.278885,62.42231,62.56574,62.709164,62.85259,62.996017,63.139442,63.282867,63.426296,63.56972,63.713146,63.856575,64.0,64.143425,64.28685,64.43028,64.57371,64.71713,64.86056,65.00398,65.14741,65.29084,65.434265,65.57769,65.721115,65.86454,66.007965,66.1514,66.29482,66.43825,66.58167,66.7251,66.86852,67.011955,67.15538,67.298805,67.44223,67.585655,67.72908,67.87251,68.01594,68.15936,68.30279,68.44621,68.58964,68.73307,68.876495,69.01992,69.163345,69.30677,69.4502,69.59363,69.73705,69.88048,70.0239,70.16733,70.31076,70.454185,70.59761,70.741035,70.88446,71.027885,71.17132,71.31474,71.45817,71.60159,71.74502,71.88844,72.031876,72.1753,72.318726,72.46215,72.605576,72.749,72.89243,73.03586,73.17928,73.32271,73.46613,73.60956,73.75299,73.896416,74.03984,74.183266,74.32669,74.47012,74.61355,74.75697,74.9004,75.04382,75.18725,75.33068,75.474106,75.61753,75.760956,75.90438,76.047806,76.19124,76.33466,76.47809,76.62151,76.76494,76.90836,77.051796,77.19522,77.338646,77.48207,77.625496,77.76892,77.91235,78.05578,78.1992,78.34263,78.48605,78.62948,78.77291,78.916336,79.05976,79.203186,79.34661,79.49004,79.63347,79.77689,79.92032,80.06374,80.20717,80.3506,80.494026,80.63745,80.780876,80.9243,81.067726,81.21116,81.35458,81.49801,81.64143,81.78486,81.92828,82.07172,82.21514,82.35857,82.50199,82.64542,82.78884,82.932274,83.0757,83.219124,83.36255,83.505974,83.6494,83.79283,83.93626,84.07968,84.22311,84.36653,84.50996,84.65339,84.796814,84.94024,85.083664,85.22709,85.37052,85.51395,85.65737,85.8008,85.94422,86.08765,86.23108,86.374504,86.51793,86.661354,86.80478,86.948204,87.09164,87.23506,87.37849,87.52191,87.66534,87.80876,87.952194,88.09562,88.239044,88.38247,88.525894,88.66932,88.81275,88.95618,89.0996,89.24303,89.38645,89.52988,89.67331,89.816734,89.96016,90.103584,90.24701,90.39044,90.53387,90.67729,90.82072,90.96414,91.10757,91.251,91.394424,91.53785,91.681274,91.8247,91.968124,92.11156,92.25498,92.39841,92.54183,92.68526,92.82868,92.972115,93.11554,93.258965,93.40239,93.545815,93.68924,93.83267,93.9761,94.11952,94.26295,94.40637,94.5498,94.69323,94.836655,94.98008,95.123505,95.26693,95.41036,95.55379,95.69721,95.84064,95.98406,96.12749,96.27092,96.414345,96.55777,96.701195,96.84462,96.988045,97.13148,97.2749,97.41833,97.56175,97.70518,97.8486,97.992035,98.13546,98.278885,98.42231,98.565735,98.70916,98.85259,98.99602,99.13944,99.28287,99.42629,99.56972,99.71315,99.856575,100.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json index 6c1e0f9d3aed..2217c0e29d48 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_negative.json @@ -1 +1 @@ -{"expected":[-0.881373587019543,-0.8785648221811828,-0.8757727485921216,-0.872997223399564,-0.8702381053721214,-0.8674952548760734,-0.8647685338520688,-0.8620578057922589,-0.8593629357178508,-0.8566837901570737,-0.8540202371235461,-0.8513721460950371,-0.8487393879926115,-0.8461218351601517,-0.8435193613442457,-0.8409318416744351,-0.8383591526438152,-0.8358011720899767,-0.8332577791762857,-0.830728854373491,-0.8282142794416545,-0.8257139374123945,-0.8232277125714388,-0.8207554904414776,-0.818297157765313,-0.8158526024892955,-0.8134217137470444,-0.8110043818434439,-0.808600498238911,-0.8062099555339275,-0.8038326474538329,-0.80146846883387,-0.7991173156044817,-0.7967790847768498,-0.7944536744286734,-0.7921409836901823,-0.7898409127303782,-0.7875533627435015,-0.7852782359357193,-0.7830154355120266,-0.7807648656633612,-0.7785264315539255,-0.7763000393087106,-0.7740855960012203,-0.7718830096413907,-0.7696921891637005,-0.7675130444154687,-0.7653454861453384,-0.7631894259919384,-0.761044776472724,-0.7589114509729903,-0.7567893637350566,-0.7546784298476171,-0.7525785652352567,-0.7504896866481258,-0.7484117116517751,-0.7463445586171438,-0.7442881467106999,-0.742242395884731,-0.7402072268677793,-0.7381825611552224,-0.7361683209999937,-0.7341644294034417,-0.7321708101063261,-0.7301873875799457,-0.7282140870173991,-0.7262508343249728,-0.7242975561136566,-0.7223541796907823,-0.720420633051785,-0.7184968448720837,-0.7165827444990802,-0.7146782619442725,-0.7127833278754824,-0.7108978736091945,-0.7090218311030053,-0.7071551329481788,-0.7052977123623084,-0.7034495031820842,-0.7016104398561599,-0.6997804574381221,-0.6979594915795581,-0.696147478523219,-0.6943443550962817,-0.6925500587037001,-0.6907645273216532,-0.6889876994910803,-0.6872195143113065,-0.6854599114337566,-0.683708831055755,-0.6819662139144081,-0.6802320012805743,-0.6785061349529113,-0.6767885572520083,-0.6750792110145938,-0.6733780395878244,-0.6716849868236489,-0.6699999970732475,-0.6683230151815468,-0.6666539864818065,-0.6649928567902786,-0.6633395724009379,-0.6616940800802807,-0.6600563270621939,-0.6584262610428896,-0.6568038301759084,-0.6551889830671853,-0.6535816687701826,-0.6519818367810841,-0.6503894370340527,-0.6488044198965491,-0.6472267361647105,-0.6456563370587898,-0.644093174218652,-0.6425371996993297,-0.6409883659666337,-0.6394466258928211,-0.6379119327523178,-0.6363842402174951,-0.6348635023544987,-0.6333496736191336,-0.6318427088527967,-0.630342563278463,-0.6288491924967214,-0.6273625524818596,-0.6258825995779984,-0.6244092904952742,-0.6229425823060674,-0.6214824324412789,-0.6200287986866527,-0.6185816391791422,-0.6171409124033228,-0.6157065771878469,-0.6142785927019441,-0.6128569184519623,-0.6114415142779519,-0.610032340350291,-0.6086293571663518,-0.6072325255472073,-0.6058418066343769,-0.6044571618866126,-0.6030785530767222,-0.6017059422884318,-0.6003392919132852,-0.5989785646475797,-0.5976237234893401,-0.5962747317353265,-0.5949315529780789,-0.5935941511029963,-0.5922624902854505,-0.5909365349879331,-0.5896162499572373,-0.588301600221671,-0.5869925510883044,-0.585689068140248,-0.5843911172339632,-0.5830986644966043,-0.5818116763233905,-0.580530119375009,-0.5792539605750476,-0.5779831671074576,-0.5767177064140449,-0.5754575461919903,-0.5742026543913986,-0.5729529992128755,-0.5717085491051309,-0.5704692727626122,-0.569235139123161,-0.5680061173656998,-0.5667821769079422,-0.5655632874041299,-0.5643494187427962,-0.5631405410445529,-0.5619366246599032,-0.5607376401670785,-0.5595435583698998,-0.5583543502956627,-0.5571699871930462,-0.5559904405300442,-0.5548156819919204,-0.5536456834791864,-0.5524804171056001,-0.5513198551961892,-0.550163970285293,-0.5490127351146292,-0.5478661226313792,-0.5467241059862957,-0.5455866585318304,-0.5444537538202826,-0.5433253656019679,-0.5422014678234057,-0.5410820346255282,-0.5399670403419075,-0.538856459497002,-0.5377502668044223,-0.5366484371652145,-0.5355509456661643,-0.5344577675781161,-0.5333688783543128,-0.5322842536287523,-0.5312038692145611,-0.5301277011023863,-0.5290557254588031,-0.5279879186247411,-0.5269242571139265,-0.5258647176113392,-0.5248092769716893,-0.5237579122179066,-0.522710600539648,-0.5216673192918201,-0.5206280459931163,-0.5195927583245711,-0.5185614341281269,-0.5175340514052191,-0.5165105883153723,-0.515491023174814,-0.5144753344551012,-0.513463500781761,-0.5124555009329473,-0.5114513138381083,-0.5104509185766699,-0.5094542943767325,-0.5084614206137804,-0.5074722768094041,-0.5064868426300376,-0.5055050978857065,-0.50452702252879,-0.5035525966527954,-0.5025818004911444,-0.5016146144159724,-0.5006510189369405,-0.4996909947000577,-0.4987345224865169,-0.4977815832115414,-0.4968321579232438,-0.49588622780149577,-0.4949437741568095,-0.49400477842923035,-0.49306922218724064,-0.49213708712667387,-0.49120835506964045,-0.4902830079634639,-0.48936102787962743,-0.488442397012731,-0.4875270976794594,-0.48661511231755883,-0.4857064234848262,-0.4848010138581056,-0.4838988662322967,-0.48299996351937236,-0.4821042887474049,-0.48121182505960347,-0.48032255571335974,-0.47943646407930335,-0.47855353364036657,-0.4776737479908578,-0.4767970908355445,-0.47592354598874453,-0.475053097373427,-0.47418572902032097,-0.4733214250670334,-0.47246016975717536,-0.47160194743949707,-0.47074674256703003,-0.4698945396962395,-0.46904532348618255,-0.4681990786976768,-0.4673557901924748,-0.466515442932448,-0.4656780219787775,-0.46484351249115274,-0.4640118997269785,-0.463183169040588,-0.4623573058824648,-0.4615342957984718,-0.46071412442908655,-0.4598967775086452,-0.45908224086459243,-0.4582705004167394,-0.4574615421765278,-0.4566553522463012,-0.45585191681858345,-0.4550512221753634,-0.4542532546873867,-0.4534580008134538,-0.4526654470997248,-0.4518755801790307,-0.4510883867701911,-0.4503038536773379,-0.44952196778924586,-0.4487427160786688,-0.4479660856016819,-0.447192063497031,-0.4464206369854866,-0.44565179336920463,-0.44488552003109283,-0.4441218044341831,-0.44336063412100923,-0.4426019967129909,-0.4418458799098227,-0.4410922714888692,-0.44034115930456513,-0.4395925312878215,-0.43884637544543653,-0.43810267985951257,-0.43736143268687755,-0.4366226221585126,-0.4358862365789836,-0.4351522643258793,-0.4344206938492533,-0.43369151367107184,-0.4329647123846659,-0.4322402786541888,-0.4315182012140784,-0.43079846886852385,-0.4300810704909378,-0.4293659950234328,-0.4286532314763019,-0.42794276892750527,-0.4272345965221598,-0.42652870347203464,-0.42582507905505007,-0.4251237126147816,-0.4244245935599676,-0.4237277113640225,-0.4230330555645532,-0.4223406157628802,-0.42165038162356266,-0.4209623428739282,-0.4202764893036064,-0.41959281076406607,-0.4189112971681575,-0.41823193848965756,-0.41755472476281996,-0.4168796460819281,-0.4162066926008534,-0.41553585453261566,-0.4148671221489491,-0.4142004857798705,-0.41353593581325204,-0.412873462694398,-0.412213056925624,-0.41155470906584096,-0.4108984097301425,-0.41024414958939526,-0.40959191936983297,-0.4089417098526549,-0.4082935118736262,-0.4076473163226829,-0.40700311414353985,-0.4063608963333015,-0.40572065394207757,-0.40508237807259945,-0.4044460598798426,-0.4038116905706502,-0.4031792614033609,-0.4025487636874394,-0.4019201887831102,-0.4012935281009946,-0.4006687731017507,-0.4000459152957161,-0.399424946242554,-0.3988058575509024,-0.39818864087802575,-0.3975732879294696,-0.3969597904587188,-0.3963481402668575,-0.395738329202233,-0.3951303491601217,-0.39452419208239803,-0.3939198499572065,-0.3933173148186359,-0.3927165787463964,-0.39211763386549964,-0.3915204723459409,-0.39092508640238455,-0.3903314682938515,-0.38973961032340965,-0.38914950483786637,-0.38856114422746446,-0.38797452092557944,-0.3873896274084201,-0.38680645619473136,-0.3862249998454995,-0.38564525096365965,-0.3850672021938058,-0.38449084622190327,-0.3839161757750034,-0.38334318362096076,-0.3827718625681521,-0.38220220546519845,-0.3816342052006884,-0.38106785470290494,-0.38050314693955306,-0.3799400749174908,-0.3793786316824615,-0.37881881031882914,-0.37826060394931477,-0.37770400573473595,-0.3771490088737478,-0.37659560660258634,-0.3760437921948137,-0.3754935589610655,-0.37494490024880006,-0.3743978094420501,-0.3738522799611758,-0.37330830526262015,-0.3727658788386662,-0.37222499421719635,-0.37168564496145323,-0.37114782466980284,-0.3706115269754993,-0.3700767455464516,-0.3695434740849921,-0.369011706327647,-0.36848143604490835,-0.36795265704100827,-0.3674253631536943,-0.3668995482540072,-0.36637520624606046,-0.36585233106682036,-0.3653309166858898,-0.36481095710529166,-0.3642924463592556,-0.36377537851400543,-0.3632597476675484,-0.36274554794946673,-0.3622327735207094,-0.3617214185733872,-0.36121147733056824,-0.3607029440460752,-0.36019581300428466,-0.3596900785199273,-0.3591857349378902,-0.3586827766330203,-0.3581811980099295,-0.3576809935028014,-0.3571821575751993,-0.3566846847198756,-0.356188569458583,-0.35569380634188696,-0.3552003899489795,-0.35470831488749444,-0.3542175757933242,-0.3537281673304381,-0.35324008419070135,-0.35275332109369645,-0.35226787278654503,-0.3517837340437316,-0.35130089966692835,-0.35081936448482154,-0.3503391233529387,-0.3498601711534779,-0.34938250279513744,-0.3489061132129476,-0.3484309973681031,-0.34795715024779705,-0.34748456686505624,-0.34701324225857744,-0.3465431714925648,-0.34607434965656925,-0.3456067718653281,-0.3451404332586063,-0.3446753290010391,-0.34421145428197525,-0.3437488043153223,-0.34328737433939177,-0.34282715961674715,-0.3423681554340509,-0.34191035710191486,-0.3414537599547501,-0.34099835935061823,-0.34054415067108457,-0.3400911293210716,-0.33963929072871357,-0.33918863034521257,-0.3387391436446951,-0.33829082612407063,-0.3378436733028899,-0.3373976807232054,-0.33695284394943215,-0.3365091585682099,-0.33606662018826605,-0.33562522444028003,-0.3351849669767478,-0.3347458434718485,-0.3343078496213109,-0.33387098114228164,-0.33343523377319423,-0.3330006032736386,-0.33256708542423236,-0.332134676026492,-0.331703370902706,-0.3312731658958082,-0.33084405686925233,-0.3304160397068874,-0.329989110312834,-0.3295632646113615,-0.32913849854676597,-0.32871480808324927,-0.3282921892047988,-0.3278706379150681,-0.32745015023725843],"x":[-1.0,-1.00398406374502,-1.0079681274900398,-1.0119521912350598,-1.0159362549800797,-1.0199203187250996,-1.0239043824701195,-1.0278884462151394,-1.0318725099601593,-1.0358565737051793,-1.0398406374501992,-1.043824701195219,-1.047808764940239,-1.051792828685259,-1.0557768924302788,-1.0597609561752988,-1.0637450199203187,-1.0677290836653386,-1.0717131474103585,-1.0756972111553784,-1.0796812749003983,-1.0836653386454183,-1.0876494023904382,-1.091633466135458,-1.095617529880478,-1.099601593625498,-1.1035856573705178,-1.1075697211155378,-1.1115537848605577,-1.1155378486055776,-1.1195219123505975,-1.1235059760956174,-1.1274900398406376,-1.1314741035856575,-1.1354581673306774,-1.1394422310756973,-1.1434262948207172,-1.1474103585657371,-1.151394422310757,-1.155378486055777,-1.159362549800797,-1.1633466135458168,-1.1673306772908367,-1.1713147410358566,-1.1752988047808766,-1.1792828685258965,-1.1832669322709164,-1.1872509960159363,-1.1912350597609562,-1.1952191235059761,-1.199203187250996,-1.203187250996016,-1.207171314741036,-1.2111553784860558,-1.2151394422310757,-1.2191235059760956,-1.2231075697211156,-1.2270916334661355,-1.2310756972111554,-1.2350597609561753,-1.2390438247011952,-1.2430278884462151,-1.247011952191235,-1.250996015936255,-1.254980079681275,-1.2589641434262948,-1.2629482071713147,-1.2669322709163346,-1.2709163346613546,-1.2749003984063745,-1.2788844621513944,-1.2828685258964143,-1.2868525896414342,-1.2908366533864541,-1.294820717131474,-1.298804780876494,-1.302788844621514,-1.3067729083665338,-1.3107569721115537,-1.3147410358565736,-1.3187250996015936,-1.3227091633466135,-1.3266932270916334,-1.3306772908366533,-1.3346613545816732,-1.3386454183266931,-1.342629482071713,-1.346613545816733,-1.350597609561753,-1.3545816733067728,-1.3585657370517927,-1.3625498007968126,-1.3665338645418326,-1.3705179282868525,-1.3745019920318724,-1.3784860557768925,-1.3824701195219125,-1.3864541832669324,-1.3904382470119523,-1.3944223107569722,-1.3984063745019921,-1.402390438247012,-1.406374501992032,-1.4103585657370519,-1.4143426294820718,-1.4183266932270917,-1.4223107569721116,-1.4262948207171315,-1.4302788844621515,-1.4342629482071714,-1.4382470119521913,-1.4422310756972112,-1.4462151394422311,-1.450199203187251,-1.454183266932271,-1.4581673306772909,-1.4621513944223108,-1.4661354581673307,-1.4701195219123506,-1.4741035856573705,-1.4780876494023905,-1.4820717131474104,-1.4860557768924303,-1.4900398406374502,-1.4940239043824701,-1.49800796812749,-1.50199203187251,-1.5059760956175299,-1.5099601593625498,-1.5139442231075697,-1.5179282868525896,-1.5219123505976095,-1.5258964143426295,-1.5298804780876494,-1.5338645418326693,-1.5378486055776892,-1.5418326693227091,-1.545816733067729,-1.549800796812749,-1.5537848605577689,-1.5577689243027888,-1.5617529880478087,-1.5657370517928286,-1.5697211155378485,-1.5737051792828685,-1.5776892430278884,-1.5816733067729083,-1.5856573705179282,-1.5896414342629481,-1.593625498007968,-1.597609561752988,-1.6015936254980079,-1.6055776892430278,-1.6095617529880477,-1.6135458167330676,-1.6175298804780875,-1.6215139442231075,-1.6254980079681276,-1.6294820717131475,-1.6334661354581674,-1.6374501992031874,-1.6414342629482073,-1.6454183266932272,-1.649402390438247,-1.653386454183267,-1.657370517928287,-1.6613545816733069,-1.6653386454183268,-1.6693227091633467,-1.6733067729083666,-1.6772908366533865,-1.6812749003984064,-1.6852589641434264,-1.6892430278884463,-1.6932270916334662,-1.697211155378486,-1.701195219123506,-1.705179282868526,-1.7091633466135459,-1.7131474103585658,-1.7171314741035857,-1.7211155378486056,-1.7250996015936255,-1.7290836653386454,-1.7330677290836654,-1.7370517928286853,-1.7410358565737052,-1.745019920318725,-1.749003984063745,-1.752988047808765,-1.7569721115537849,-1.7609561752988048,-1.7649402390438247,-1.7689243027888446,-1.7729083665338645,-1.7768924302788844,-1.7808764940239044,-1.7848605577689243,-1.7888446215139442,-1.792828685258964,-1.796812749003984,-1.800796812749004,-1.8047808764940239,-1.8087649402390438,-1.8127490039840637,-1.8167330677290836,-1.8207171314741035,-1.8247011952191234,-1.8286852589641434,-1.8326693227091633,-1.8366533864541832,-1.840637450199203,-1.844621513944223,-1.848605577689243,-1.8525896414342629,-1.8565737051792828,-1.8605577689243027,-1.8645418326693226,-1.8685258964143425,-1.8725099601593624,-1.8764940239043826,-1.8804780876494025,-1.8844621513944224,-1.8884462151394423,-1.8924302788844622,-1.8964143426294822,-1.900398406374502,-1.904382470119522,-1.908366533864542,-1.9123505976095618,-1.9163346613545817,-1.9203187250996017,-1.9243027888446216,-1.9282868525896415,-1.9322709163346614,-1.9362549800796813,-1.9402390438247012,-1.9442231075697212,-1.948207171314741,-1.952191235059761,-1.956175298804781,-1.9601593625498008,-1.9641434262948207,-1.9681274900398407,-1.9721115537848606,-1.9760956175298805,-1.9800796812749004,-1.9840637450199203,-1.9880478087649402,-1.9920318725099602,-1.99601593625498,-2.0,-2.00398406374502,-2.00796812749004,-2.0119521912350598,-2.0159362549800797,-2.0199203187250996,-2.0239043824701195,-2.0278884462151394,-2.0318725099601593,-2.0358565737051793,-2.039840637450199,-2.043824701195219,-2.047808764940239,-2.051792828685259,-2.055776892430279,-2.0597609561752988,-2.0637450199203187,-2.0677290836653386,-2.0717131474103585,-2.0756972111553784,-2.0796812749003983,-2.0836653386454183,-2.087649402390438,-2.091633466135458,-2.095617529880478,-2.099601593625498,-2.103585657370518,-2.1075697211155378,-2.1115537848605577,-2.1155378486055776,-2.1195219123505975,-2.1235059760956174,-2.1274900398406373,-2.1314741035856573,-2.135458167330677,-2.139442231075697,-2.143426294820717,-2.147410358565737,-2.151394422310757,-2.1553784860557768,-2.1593625498007967,-2.1633466135458166,-2.1673306772908365,-2.1713147410358564,-2.1752988047808763,-2.1792828685258963,-2.183266932270916,-2.187250996015936,-2.191235059760956,-2.195219123505976,-2.199203187250996,-2.2031872509960158,-2.2071713147410357,-2.2111553784860556,-2.2151394422310755,-2.2191235059760954,-2.2231075697211153,-2.2270916334661353,-2.231075697211155,-2.235059760956175,-2.239043824701195,-2.243027888446215,-2.247011952191235,-2.250996015936255,-2.254980079681275,-2.258964143426295,-2.262948207171315,-2.266932270916335,-2.270916334661355,-2.2749003984063747,-2.2788844621513946,-2.2828685258964145,-2.2868525896414345,-2.2908366533864544,-2.2948207171314743,-2.298804780876494,-2.302788844621514,-2.306772908366534,-2.310756972111554,-2.314741035856574,-2.318725099601594,-2.3227091633466137,-2.3266932270916336,-2.3306772908366535,-2.3346613545816735,-2.3386454183266934,-2.3426294820717133,-2.346613545816733,-2.350597609561753,-2.354581673306773,-2.358565737051793,-2.362549800796813,-2.366533864541833,-2.3705179282868527,-2.3745019920318726,-2.3784860557768925,-2.3824701195219125,-2.3864541832669324,-2.3904382470119523,-2.394422310756972,-2.398406374501992,-2.402390438247012,-2.406374501992032,-2.410358565737052,-2.414342629482072,-2.4183266932270917,-2.4223107569721116,-2.4262948207171315,-2.4302788844621515,-2.4342629482071714,-2.4382470119521913,-2.442231075697211,-2.446215139442231,-2.450199203187251,-2.454183266932271,-2.458167330677291,-2.462151394422311,-2.4661354581673307,-2.4701195219123506,-2.4741035856573705,-2.4780876494023905,-2.4820717131474104,-2.4860557768924303,-2.49003984063745,-2.49402390438247,-2.49800796812749,-2.50199203187251,-2.50597609561753,-2.50996015936255,-2.5139442231075697,-2.5179282868525896,-2.5219123505976095,-2.5258964143426295,-2.5298804780876494,-2.5338645418326693,-2.537848605577689,-2.541832669322709,-2.545816733067729,-2.549800796812749,-2.553784860557769,-2.557768924302789,-2.5617529880478087,-2.5657370517928286,-2.5697211155378485,-2.5737051792828685,-2.5776892430278884,-2.5816733067729083,-2.585657370517928,-2.589641434262948,-2.593625498007968,-2.597609561752988,-2.601593625498008,-2.605577689243028,-2.6095617529880477,-2.6135458167330676,-2.6175298804780875,-2.6215139442231075,-2.6254980079681274,-2.6294820717131473,-2.633466135458167,-2.637450199203187,-2.641434262948207,-2.645418326693227,-2.649402390438247,-2.653386454183267,-2.6573705179282867,-2.6613545816733066,-2.6653386454183265,-2.6693227091633465,-2.6733067729083664,-2.6772908366533863,-2.681274900398406,-2.685258964143426,-2.689243027888446,-2.693227091633466,-2.697211155378486,-2.701195219123506,-2.7051792828685257,-2.7091633466135456,-2.7131474103585655,-2.7171314741035855,-2.7211155378486054,-2.7250996015936253,-2.729083665338645,-2.733067729083665,-2.737051792828685,-2.741035856573705,-2.745019920318725,-2.749003984063745,-2.752988047808765,-2.756972111553785,-2.760956175298805,-2.764940239043825,-2.768924302788845,-2.7729083665338647,-2.7768924302788847,-2.7808764940239046,-2.7848605577689245,-2.7888446215139444,-2.7928286852589643,-2.7968127490039842,-2.800796812749004,-2.804780876494024,-2.808764940239044,-2.812749003984064,-2.816733067729084,-2.8207171314741037,-2.8247011952191237,-2.8286852589641436,-2.8326693227091635,-2.8366533864541834,-2.8406374501992033,-2.8446215139442232,-2.848605577689243,-2.852589641434263,-2.856573705179283,-2.860557768924303,-2.864541832669323,-2.8685258964143427,-2.8725099601593627,-2.8764940239043826,-2.8804780876494025,-2.8844621513944224,-2.8884462151394423,-2.8924302788844622,-2.896414342629482,-2.900398406374502,-2.904382470119522,-2.908366533864542,-2.912350597609562,-2.9163346613545817,-2.9203187250996017,-2.9243027888446216,-2.9282868525896415,-2.9322709163346614,-2.9362549800796813,-2.9402390438247012,-2.944223107569721,-2.948207171314741,-2.952191235059761,-2.956175298804781,-2.960159362549801,-2.9641434262948207,-2.9681274900398407,-2.9721115537848606,-2.9760956175298805,-2.9800796812749004,-2.9840637450199203,-2.9880478087649402,-2.99203187250996,-2.99601593625498,-3.0]} +{"expected":[-0.32745016,-0.32787064,-0.3282922,-0.32871482,-0.3291385,-0.3295633,-0.3299891,-0.33041602,-0.33084404,-0.33127314,-0.3317034,-0.33213466,-0.33256707,-0.33300063,-0.33343524,-0.333871,-0.33430785,-0.33474582,-0.335185,-0.33562523,-0.3360666,-0.33650917,-0.33695284,-0.3373977,-0.3378437,-0.3382908,-0.33873916,-0.33918864,-0.33963928,-0.3400911,-0.34054413,-0.34099835,-0.34145376,-0.34191033,-0.34236816,-0.34282717,-0.34328735,-0.34374884,-0.34421146,-0.34467533,-0.34514043,-0.34560674,-0.34607434,-0.3465432,-0.34701324,-0.3474846,-0.34795713,-0.34843102,-0.34890613,-0.34938252,-0.3498602,-0.3503391,-0.35081935,-0.3513009,-0.35178372,-0.3522679,-0.35275334,-0.3532401,-0.35372818,-0.3542176,-0.35470828,-0.35520038,-0.35569382,-0.3561886,-0.35668468,-0.35718215,-0.357681,-0.3581812,-0.35868275,-0.35918576,-0.35969007,-0.36019582,-0.36070296,-0.36121148,-0.36172143,-0.36223277,-0.36274555,-0.36325973,-0.36377537,-0.36429247,-0.36481094,-0.3653309,-0.36585233,-0.3663752,-0.36689955,-0.36742538,-0.36795264,-0.36848143,-0.3690117,-0.36954346,-0.37007678,-0.37061155,-0.37114778,-0.37168562,-0.372225,-0.3727659,-0.37330833,-0.37385228,-0.3743978,-0.3749449,-0.37549356,-0.3760438,-0.3765956,-0.37714902,-0.37770402,-0.37826058,-0.3788188,-0.37937862,-0.3799401,-0.38050315,-0.38106787,-0.38163424,-0.3822022,-0.38277185,-0.3833432,-0.38391614,-0.38449085,-0.3850672,-0.38564527,-0.386225,-0.38680646,-0.38738963,-0.38797453,-0.38856113,-0.3891495,-0.38973963,-0.39033148,-0.3909251,-0.39152047,-0.39211762,-0.3927166,-0.3933173,-0.39391983,-0.3945242,-0.39513034,-0.39573833,-0.39634812,-0.39695978,-0.3975733,-0.39818865,-0.39880586,-0.39942497,-0.4000459,-0.40066877,-0.40129355,-0.40192017,-0.4025488,-0.40317926,-0.40381166,-0.40444607,-0.40508237,-0.40572065,-0.40636092,-0.4070031,-0.4076473,-0.40829352,-0.4089417,-0.4095919,-0.41024414,-0.41089842,-0.41155472,-0.41221303,-0.41287348,-0.41353595,-0.41420048,-0.41486716,-0.41553584,-0.41620675,-0.41687965,-0.41755474,-0.41823196,-0.41891128,-0.4195928,-0.4202765,-0.42096233,-0.42165038,-0.42234063,-0.42303306,-0.42372772,-0.4244246,-0.4251237,-0.4258251,-0.42652866,-0.4272346,-0.4279428,-0.4286532,-0.42936602,-0.4300811,-0.43079847,-0.4315182,-0.43224028,-0.43296474,-0.4336915,-0.43442068,-0.43515226,-0.4358862,-0.4366226,-0.43736142,-0.4381027,-0.43884638,-0.43959254,-0.44034114,-0.44109228,-0.44184586,-0.442602,-0.44336066,-0.44412178,-0.44488555,-0.4456518,-0.4464206,-0.44719207,-0.44796607,-0.4487427,-0.44952196,-0.45030382,-0.4510884,-0.4518756,-0.45266542,-0.453458,-0.45425326,-0.4550512,-0.4558519,-0.45665535,-0.45746154,-0.4582705,-0.45908225,-0.4598968,-0.46071413,-0.46153426,-0.4623573,-0.46318316,-0.46401194,-0.46484354,-0.46567804,-0.46651545,-0.4673558,-0.46819904,-0.46904534,-0.46989453,-0.4707468,-0.47160196,-0.47246018,-0.47332147,-0.47418573,-0.47505307,-0.47592354,-0.4767971,-0.47767377,-0.47855356,-0.47943646,-0.48032254,-0.48121184,-0.4821043,-0.48299995,-0.48389885,-0.484801,-0.48570645,-0.48661512,-0.48752713,-0.4884424,-0.48936105,-0.490283,-0.49120834,-0.49213707,-0.49306923,-0.4940048,-0.49494377,-0.49588624,-0.49683216,-0.49778157,-0.49873453,-0.499691,-0.50065106,-0.50161463,-0.5025818,-0.5035526,-0.50452703,-0.5055051,-0.50648683,-0.5074723,-0.5084614,-0.50945425,-0.5104509,-0.5114513,-0.51245546,-0.5134635,-0.51447535,-0.51549107,-0.5165106,-0.517534,-0.5185614,-0.5195927,-0.5206281,-0.5216673,-0.5227106,-0.5237579,-0.5248093,-0.5258647,-0.5269242,-0.5279879,-0.5290557,-0.5301277,-0.53120387,-0.53228426,-0.5333689,-0.5344578,-0.5355509,-0.53664845,-0.5377503,-0.53885645,-0.53996706,-0.541082,-0.54220146,-0.54332536,-0.54445374,-0.54558665,-0.54672414,-0.5478661,-0.5490127,-0.550164,-0.55131984,-0.5524804,-0.5536457,-0.5548157,-0.55599046,-0.55717,-0.5583544,-0.55954355,-0.5607377,-0.5619366,-0.5631406,-0.5643494,-0.56556326,-0.5667822,-0.5680061,-0.56923515,-0.57046926,-0.57170856,-0.57295305,-0.57420266,-0.5754576,-0.57671773,-0.5779832,-0.579254,-0.5805301,-0.58181167,-0.58309865,-0.5843911,-0.5856891,-0.5869925,-0.5883016,-0.58961624,-0.59093654,-0.5922625,-0.59359413,-0.59493154,-0.5962748,-0.5976237,-0.5989786,-0.6003393,-0.60170597,-0.60307854,-0.6044572,-0.6058418,-0.6072326,-0.60862935,-0.6100323,-0.61144155,-0.6128569,-0.61427855,-0.61570656,-0.61714095,-0.61858165,-0.62002873,-0.62148243,-0.62294257,-0.6244093,-0.62588257,-0.62736255,-0.6288492,-0.63034254,-0.6318427,-0.63334966,-0.63486356,-0.63638425,-0.6379119,-0.6394467,-0.6409884,-0.64253724,-0.64409316,-0.64565635,-0.64722675,-0.6488044,-0.6503894,-0.65198183,-0.6535817,-0.655189,-0.6568038,-0.6584263,-0.66005635,-0.6616941,-0.66333956,-0.66499287,-0.666654,-0.66832304,-0.66999996,-0.671685,-0.67337805,-0.6750792,-0.67678857,-0.67850614,-0.68023205,-0.68196625,-0.68370885,-0.6854599,-0.6872195,-0.68898773,-0.6907645,-0.69255006,-0.6943444,-0.69614744,-0.6979594,-0.69978046,-0.7016104,-0.70344955,-0.7052977,-0.7071551,-0.70902187,-0.71089786,-0.71278334,-0.7146782,-0.7165828,-0.7184969,-0.7204206,-0.7223542,-0.7242976,-0.7262508,-0.7282141,-0.7301874,-0.7321708,-0.7341645,-0.7361683,-0.73818254,-0.7402072,-0.74224246,-0.74428815,-0.74634457,-0.7484117,-0.7504897,-0.75257856,-0.7546784,-0.7567894,-0.7589115,-0.76104474,-0.76318944,-0.76534545,-0.7675131,-0.7696922,-0.771883,-0.77408564,-0.7763001,-0.7785264,-0.7807648,-0.78301543,-0.78527826,-0.78755337,-0.78984094,-0.792141,-0.7944537,-0.7967791,-0.7991173,-0.8014685,-0.8038327,-0.8062099,-0.8086005,-0.81100446,-0.8134217,-0.8158526,-0.81829715,-0.8207555,-0.82322776,-0.82571393,-0.8282143,-0.8307288,-0.83325785,-0.8358011,-0.8383591,-0.84093183,-0.84351933,-0.8461218,-0.8487394,-0.8513722,-0.8540203,-0.8566838,-0.85936296,-0.8620578,-0.86476856,-0.86749524,-0.8702381,-0.8729972,-0.87577283,-0.87856483,-0.8813736],"x":[-3.0,-2.996016,-2.9920318,-2.9880478,-2.9840639,-2.9800797,-2.9760957,-2.9721115,-2.9681275,-2.9641435,-2.9601593,-2.9561753,-2.9521914,-2.9482071,-2.9442232,-2.940239,-2.936255,-2.932271,-2.9282868,-2.9243028,-2.9203188,-2.9163346,-2.9123507,-2.9083664,-2.9043825,-2.9003985,-2.8964143,-2.8924303,-2.8884463,-2.884462,-2.8804781,-2.876494,-2.87251,-2.868526,-2.8645418,-2.8605578,-2.8565738,-2.8525896,-2.8486056,-2.8446214,-2.8406374,-2.8366535,-2.8326693,-2.8286853,-2.8247013,-2.820717,-2.8167331,-2.812749,-2.808765,-2.804781,-2.8007967,-2.7968128,-2.7928288,-2.7888446,-2.7848606,-2.7808764,-2.7768924,-2.7729084,-2.7689242,-2.7649403,-2.7609563,-2.756972,-2.752988,-2.749004,-2.74502,-2.741036,-2.7370517,-2.7330678,-2.7290838,-2.7250996,-2.7211156,-2.7171314,-2.7131474,-2.7091634,-2.7051792,-2.7011952,-2.6972113,-2.693227,-2.689243,-2.6852589,-2.681275,-2.677291,-2.6733067,-2.6693227,-2.6653388,-2.6613545,-2.6573706,-2.6533864,-2.6494024,-2.6454184,-2.6414342,-2.6374502,-2.6334662,-2.629482,-2.625498,-2.6215138,-2.6175299,-2.613546,-2.6095617,-2.6055777,-2.6015937,-2.5976095,-2.5936255,-2.5896413,-2.5856574,-2.5816734,-2.5776892,-2.5737052,-2.5697212,-2.565737,-2.561753,-2.5577688,-2.5537848,-2.5498009,-2.5458167,-2.5418327,-2.5378487,-2.5338645,-2.5298805,-2.5258963,-2.5219123,-2.5179284,-2.5139441,-2.5099602,-2.5059762,-2.501992,-2.498008,-2.4940238,-2.4900398,-2.4860559,-2.4820716,-2.4780877,-2.4741037,-2.4701195,-2.4661355,-2.4621513,-2.4581673,-2.4541833,-2.4501991,-2.4462152,-2.4422312,-2.438247,-2.434263,-2.4302788,-2.4262948,-2.4223108,-2.4183266,-2.4143426,-2.4103587,-2.4063745,-2.4023905,-2.3984063,-2.3944223,-2.3904383,-2.386454,-2.3824701,-2.3784862,-2.374502,-2.370518,-2.3665338,-2.3625498,-2.3585658,-2.3545816,-2.3505976,-2.3466136,-2.3426294,-2.3386455,-2.3346612,-2.3306773,-2.3266933,-2.322709,-2.318725,-2.3147411,-2.310757,-2.306773,-2.3027887,-2.2988048,-2.2948208,-2.2908366,-2.2868526,-2.2828686,-2.2788844,-2.2749004,-2.2709162,-2.2669322,-2.2629483,-2.258964,-2.25498,-2.250996,-2.247012,-2.243028,-2.2390437,-2.2350597,-2.2310758,-2.2270916,-2.2231076,-2.2191236,-2.2151394,-2.2111554,-2.2071712,-2.2031872,-2.1992033,-2.195219,-2.191235,-2.187251,-2.1832669,-2.179283,-2.1752987,-2.1713147,-2.1673307,-2.1633465,-2.1593626,-2.1553786,-2.1513944,-2.1474104,-2.1434262,-2.1394422,-2.1354582,-2.131474,-2.12749,-2.123506,-2.1195219,-2.115538,-2.1115537,-2.1075697,-2.1035857,-2.0996015,-2.0956175,-2.0916336,-2.0876493,-2.0836654,-2.0796812,-2.0756972,-2.0717132,-2.067729,-2.063745,-2.059761,-2.0557768,-2.0517929,-2.0478086,-2.0438247,-2.0398407,-2.0358565,-2.0318725,-2.0278885,-2.0239043,-2.0199203,-2.0159361,-2.0119522,-2.0079682,-2.003984,-2.0,-1.9960159,-1.9920319,-1.9880478,-1.9840637,-1.9800797,-1.9760957,-1.9721116,-1.9681275,-1.9641434,-1.9601594,-1.9561753,-1.9521912,-1.9482071,-1.9442232,-1.9402391,-1.936255,-1.9322709,-1.9282869,-1.9243028,-1.9203187,-1.9163346,-1.9123507,-1.9083666,-1.9043825,-1.9003984,-1.8964144,-1.8924303,-1.8884462,-1.8844621,-1.8804781,-1.876494,-1.87251,-1.8685259,-1.8645419,-1.8605578,-1.8565737,-1.8525896,-1.8486056,-1.8446215,-1.8406374,-1.8366534,-1.8326694,-1.8286853,-1.8247012,-1.8207171,-1.8167331,-1.812749,-1.8087649,-1.8047808,-1.8007969,-1.7968128,-1.7928287,-1.7888446,-1.7848606,-1.7808765,-1.7768924,-1.7729083,-1.7689244,-1.7649403,-1.7609562,-1.7569721,-1.7529881,-1.749004,-1.7450199,-1.7410358,-1.7370518,-1.7330678,-1.7290837,-1.7250996,-1.7211156,-1.7171315,-1.7131474,-1.7091633,-1.7051793,-1.7011952,-1.6972111,-1.693227,-1.6892431,-1.685259,-1.6812749,-1.6772908,-1.6733068,-1.6693227,-1.6653386,-1.6613545,-1.6573706,-1.6533865,-1.6494024,-1.6454183,-1.6414343,-1.6374502,-1.6334661,-1.629482,-1.625498,-1.621514,-1.6175299,-1.6135458,-1.6095618,-1.6055777,-1.6015936,-1.5976095,-1.5936255,-1.5896415,-1.5856574,-1.5816733,-1.5776893,-1.5737052,-1.5697211,-1.565737,-1.561753,-1.557769,-1.5537848,-1.5498008,-1.5458168,-1.5418327,-1.5378486,-1.5338645,-1.5298805,-1.5258964,-1.5219123,-1.5179282,-1.5139443,-1.5099602,-1.5059761,-1.501992,-1.498008,-1.4940239,-1.4900398,-1.4860557,-1.4820718,-1.4780877,-1.4741036,-1.4701195,-1.4661355,-1.4621514,-1.4581673,-1.4541832,-1.4501992,-1.4462152,-1.442231,-1.438247,-1.434263,-1.4302789,-1.4262948,-1.4223107,-1.4183267,-1.4143426,-1.4103585,-1.4063745,-1.4023905,-1.3984064,-1.3944223,-1.3904382,-1.3864542,-1.3824701,-1.378486,-1.374502,-1.370518,-1.3665339,-1.3625498,-1.3585657,-1.3545817,-1.3505976,-1.3466135,-1.3426294,-1.3386455,-1.3346614,-1.3306773,-1.3266932,-1.3227092,-1.3187251,-1.314741,-1.3107569,-1.306773,-1.3027889,-1.2988048,-1.2948207,-1.2908367,-1.2868526,-1.2828685,-1.2788844,-1.2749004,-1.2709163,-1.2669322,-1.2629482,-1.2589642,-1.2549801,-1.250996,-1.2470119,-1.2430279,-1.2390438,-1.2350597,-1.2310756,-1.2270917,-1.2231076,-1.2191235,-1.2151394,-1.2111554,-1.2071713,-1.2031872,-1.1992031,-1.1952192,-1.1912351,-1.187251,-1.1832669,-1.1792829,-1.1752988,-1.1713147,-1.1673306,-1.1633466,-1.1593626,-1.1553785,-1.1513944,-1.1474104,-1.1434263,-1.1394422,-1.1354581,-1.1314741,-1.12749,-1.123506,-1.1195219,-1.1155379,-1.1115538,-1.1075697,-1.1035856,-1.0996016,-1.0956175,-1.0916334,-1.0876493,-1.0836654,-1.0796813,-1.0756972,-1.0717131,-1.0677291,-1.063745,-1.0597609,-1.0557768,-1.0517929,-1.0478088,-1.0438247,-1.0398406,-1.0358566,-1.0318725,-1.0278884,-1.0239043,-1.0199203,-1.0159363,-1.0119522,-1.0079681,-1.0039841,-1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json index 1808609050ff..a0c9038ccc0f 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/medium_positive.json @@ -1 +1 @@ -{"expected":[0.881373587019543,0.8785648221811828,0.8757727485921216,0.872997223399564,0.8702381053721214,0.8674952548760734,0.8647685338520688,0.8620578057922589,0.8593629357178508,0.8566837901570737,0.8540202371235461,0.8513721460950371,0.8487393879926115,0.8461218351601517,0.8435193613442457,0.8409318416744351,0.8383591526438152,0.8358011720899767,0.8332577791762857,0.830728854373491,0.8282142794416545,0.8257139374123945,0.8232277125714388,0.8207554904414776,0.818297157765313,0.8158526024892955,0.8134217137470444,0.8110043818434439,0.808600498238911,0.8062099555339275,0.8038326474538329,0.80146846883387,0.7991173156044817,0.7967790847768498,0.7944536744286734,0.7921409836901823,0.7898409127303782,0.7875533627435015,0.7852782359357193,0.7830154355120266,0.7807648656633612,0.7785264315539255,0.7763000393087106,0.7740855960012203,0.7718830096413907,0.7696921891637005,0.7675130444154687,0.7653454861453384,0.7631894259919384,0.761044776472724,0.7589114509729903,0.7567893637350566,0.7546784298476171,0.7525785652352567,0.7504896866481258,0.7484117116517751,0.7463445586171438,0.7442881467106999,0.742242395884731,0.7402072268677793,0.7381825611552224,0.7361683209999937,0.7341644294034417,0.7321708101063261,0.7301873875799457,0.7282140870173991,0.7262508343249728,0.7242975561136566,0.7223541796907823,0.720420633051785,0.7184968448720837,0.7165827444990802,0.7146782619442725,0.7127833278754824,0.7108978736091945,0.7090218311030053,0.7071551329481788,0.7052977123623084,0.7034495031820842,0.7016104398561599,0.6997804574381221,0.6979594915795581,0.696147478523219,0.6943443550962817,0.6925500587037001,0.6907645273216532,0.6889876994910803,0.6872195143113065,0.6854599114337566,0.683708831055755,0.6819662139144081,0.6802320012805743,0.6785061349529113,0.6767885572520083,0.6750792110145938,0.6733780395878244,0.6716849868236489,0.6699999970732475,0.6683230151815468,0.6666539864818065,0.6649928567902786,0.6633395724009379,0.6616940800802807,0.6600563270621939,0.6584262610428896,0.6568038301759084,0.6551889830671853,0.6535816687701826,0.6519818367810841,0.6503894370340527,0.6488044198965491,0.6472267361647105,0.6456563370587898,0.644093174218652,0.6425371996993297,0.6409883659666337,0.6394466258928211,0.6379119327523178,0.6363842402174951,0.6348635023544987,0.6333496736191336,0.6318427088527967,0.630342563278463,0.6288491924967214,0.6273625524818596,0.6258825995779984,0.6244092904952742,0.6229425823060674,0.6214824324412789,0.6200287986866527,0.6185816391791422,0.6171409124033228,0.6157065771878469,0.6142785927019441,0.6128569184519623,0.6114415142779519,0.610032340350291,0.6086293571663518,0.6072325255472073,0.6058418066343769,0.6044571618866126,0.6030785530767222,0.6017059422884318,0.6003392919132852,0.5989785646475797,0.5976237234893401,0.5962747317353265,0.5949315529780789,0.5935941511029963,0.5922624902854505,0.5909365349879331,0.5896162499572373,0.588301600221671,0.5869925510883044,0.585689068140248,0.5843911172339632,0.5830986644966043,0.5818116763233905,0.580530119375009,0.5792539605750476,0.5779831671074576,0.5767177064140449,0.5754575461919903,0.5742026543913986,0.5729529992128755,0.5717085491051309,0.5704692727626122,0.569235139123161,0.5680061173656998,0.5667821769079422,0.5655632874041299,0.5643494187427962,0.5631405410445529,0.5619366246599032,0.5607376401670785,0.5595435583698998,0.5583543502956627,0.5571699871930462,0.5559904405300442,0.5548156819919204,0.5536456834791864,0.5524804171056001,0.5513198551961892,0.550163970285293,0.5490127351146292,0.5478661226313792,0.5467241059862957,0.5455866585318304,0.5444537538202826,0.5433253656019679,0.5422014678234057,0.5410820346255282,0.5399670403419075,0.538856459497002,0.5377502668044223,0.5366484371652145,0.5355509456661643,0.5344577675781161,0.5333688783543128,0.5322842536287523,0.5312038692145611,0.5301277011023863,0.5290557254588031,0.5279879186247411,0.5269242571139265,0.5258647176113392,0.5248092769716893,0.5237579122179066,0.522710600539648,0.5216673192918201,0.5206280459931163,0.5195927583245711,0.5185614341281269,0.5175340514052191,0.5165105883153723,0.515491023174814,0.5144753344551012,0.513463500781761,0.5124555009329473,0.5114513138381083,0.5104509185766699,0.5094542943767325,0.5084614206137804,0.5074722768094041,0.5064868426300376,0.5055050978857065,0.50452702252879,0.5035525966527954,0.5025818004911444,0.5016146144159724,0.5006510189369405,0.4996909947000577,0.4987345224865169,0.4977815832115414,0.4968321579232438,0.49588622780149577,0.4949437741568095,0.49400477842923035,0.49306922218724064,0.49213708712667387,0.49120835506964045,0.4902830079634639,0.48936102787962743,0.488442397012731,0.4875270976794594,0.48661511231755883,0.4857064234848262,0.4848010138581056,0.4838988662322967,0.48299996351937236,0.4821042887474049,0.48121182505960347,0.48032255571335974,0.47943646407930335,0.47855353364036657,0.4776737479908578,0.4767970908355445,0.47592354598874453,0.475053097373427,0.47418572902032097,0.4733214250670334,0.47246016975717536,0.47160194743949707,0.47074674256703003,0.4698945396962395,0.46904532348618255,0.4681990786976768,0.4673557901924748,0.466515442932448,0.4656780219787775,0.46484351249115274,0.4640118997269785,0.463183169040588,0.4623573058824648,0.4615342957984718,0.46071412442908655,0.4598967775086452,0.45908224086459243,0.4582705004167394,0.4574615421765278,0.4566553522463012,0.45585191681858345,0.4550512221753634,0.4542532546873867,0.4534580008134538,0.4526654470997248,0.4518755801790307,0.4510883867701911,0.4503038536773379,0.44952196778924586,0.4487427160786688,0.4479660856016819,0.447192063497031,0.4464206369854866,0.44565179336920463,0.44488552003109283,0.4441218044341831,0.44336063412100923,0.4426019967129909,0.4418458799098227,0.4410922714888692,0.44034115930456513,0.4395925312878215,0.43884637544543653,0.43810267985951257,0.43736143268687755,0.4366226221585126,0.4358862365789836,0.4351522643258793,0.4344206938492533,0.43369151367107184,0.4329647123846659,0.4322402786541888,0.4315182012140784,0.43079846886852385,0.4300810704909378,0.4293659950234328,0.4286532314763019,0.42794276892750527,0.4272345965221598,0.42652870347203464,0.42582507905505007,0.4251237126147816,0.4244245935599676,0.4237277113640225,0.4230330555645532,0.4223406157628802,0.42165038162356266,0.4209623428739282,0.4202764893036064,0.41959281076406607,0.4189112971681575,0.41823193848965756,0.41755472476281996,0.4168796460819281,0.4162066926008534,0.41553585453261566,0.4148671221489491,0.4142004857798705,0.41353593581325204,0.412873462694398,0.412213056925624,0.41155470906584096,0.4108984097301425,0.41024414958939526,0.40959191936983297,0.4089417098526549,0.4082935118736262,0.4076473163226829,0.40700311414353985,0.4063608963333015,0.40572065394207757,0.40508237807259945,0.4044460598798426,0.4038116905706502,0.4031792614033609,0.4025487636874394,0.4019201887831102,0.4012935281009946,0.4006687731017507,0.4000459152957161,0.399424946242554,0.3988058575509024,0.39818864087802575,0.3975732879294696,0.3969597904587188,0.3963481402668575,0.395738329202233,0.3951303491601217,0.39452419208239803,0.3939198499572065,0.3933173148186359,0.3927165787463964,0.39211763386549964,0.3915204723459409,0.39092508640238455,0.3903314682938515,0.38973961032340965,0.38914950483786637,0.38856114422746446,0.38797452092557944,0.3873896274084201,0.38680645619473136,0.3862249998454995,0.38564525096365965,0.3850672021938058,0.38449084622190327,0.3839161757750034,0.38334318362096076,0.3827718625681521,0.38220220546519845,0.3816342052006884,0.38106785470290494,0.38050314693955306,0.3799400749174908,0.3793786316824615,0.37881881031882914,0.37826060394931477,0.37770400573473595,0.3771490088737478,0.37659560660258634,0.3760437921948137,0.3754935589610655,0.37494490024880006,0.3743978094420501,0.3738522799611758,0.37330830526262015,0.3727658788386662,0.37222499421719635,0.37168564496145323,0.37114782466980284,0.3706115269754993,0.3700767455464516,0.3695434740849921,0.369011706327647,0.36848143604490835,0.36795265704100827,0.3674253631536943,0.3668995482540072,0.36637520624606046,0.36585233106682036,0.3653309166858898,0.36481095710529166,0.3642924463592556,0.36377537851400543,0.3632597476675484,0.36274554794946673,0.3622327735207094,0.3617214185733872,0.36121147733056824,0.3607029440460752,0.36019581300428466,0.3596900785199273,0.3591857349378902,0.3586827766330203,0.3581811980099295,0.3576809935028014,0.3571821575751993,0.3566846847198756,0.356188569458583,0.35569380634188696,0.3552003899489795,0.35470831488749444,0.3542175757933242,0.3537281673304381,0.35324008419070135,0.35275332109369645,0.35226787278654503,0.3517837340437316,0.35130089966692835,0.35081936448482154,0.3503391233529387,0.3498601711534779,0.34938250279513744,0.3489061132129476,0.3484309973681031,0.34795715024779705,0.34748456686505624,0.34701324225857744,0.3465431714925648,0.34607434965656925,0.3456067718653281,0.3451404332586063,0.3446753290010391,0.34421145428197525,0.3437488043153223,0.34328737433939177,0.34282715961674715,0.3423681554340509,0.34191035710191486,0.3414537599547501,0.34099835935061823,0.34054415067108457,0.3400911293210716,0.33963929072871357,0.33918863034521257,0.3387391436446951,0.33829082612407063,0.3378436733028899,0.3373976807232054,0.33695284394943215,0.3365091585682099,0.33606662018826605,0.33562522444028003,0.3351849669767478,0.3347458434718485,0.3343078496213109,0.33387098114228164,0.33343523377319423,0.3330006032736386,0.33256708542423236,0.332134676026492,0.331703370902706,0.3312731658958082,0.33084405686925233,0.3304160397068874,0.329989110312834,0.3295632646113615,0.32913849854676597,0.32871480808324927,0.3282921892047988,0.3278706379150681,0.32745015023725843],"x":[1.0,1.00398406374502,1.0079681274900398,1.0119521912350598,1.0159362549800797,1.0199203187250996,1.0239043824701195,1.0278884462151394,1.0318725099601593,1.0358565737051793,1.0398406374501992,1.043824701195219,1.047808764940239,1.051792828685259,1.0557768924302788,1.0597609561752988,1.0637450199203187,1.0677290836653386,1.0717131474103585,1.0756972111553784,1.0796812749003983,1.0836653386454183,1.0876494023904382,1.091633466135458,1.095617529880478,1.099601593625498,1.1035856573705178,1.1075697211155378,1.1115537848605577,1.1155378486055776,1.1195219123505975,1.1235059760956174,1.1274900398406376,1.1314741035856575,1.1354581673306774,1.1394422310756973,1.1434262948207172,1.1474103585657371,1.151394422310757,1.155378486055777,1.159362549800797,1.1633466135458168,1.1673306772908367,1.1713147410358566,1.1752988047808766,1.1792828685258965,1.1832669322709164,1.1872509960159363,1.1912350597609562,1.1952191235059761,1.199203187250996,1.203187250996016,1.207171314741036,1.2111553784860558,1.2151394422310757,1.2191235059760956,1.2231075697211156,1.2270916334661355,1.2310756972111554,1.2350597609561753,1.2390438247011952,1.2430278884462151,1.247011952191235,1.250996015936255,1.254980079681275,1.2589641434262948,1.2629482071713147,1.2669322709163346,1.2709163346613546,1.2749003984063745,1.2788844621513944,1.2828685258964143,1.2868525896414342,1.2908366533864541,1.294820717131474,1.298804780876494,1.302788844621514,1.3067729083665338,1.3107569721115537,1.3147410358565736,1.3187250996015936,1.3227091633466135,1.3266932270916334,1.3306772908366533,1.3346613545816732,1.3386454183266931,1.342629482071713,1.346613545816733,1.350597609561753,1.3545816733067728,1.3585657370517927,1.3625498007968126,1.3665338645418326,1.3705179282868525,1.3745019920318724,1.3784860557768925,1.3824701195219125,1.3864541832669324,1.3904382470119523,1.3944223107569722,1.3984063745019921,1.402390438247012,1.406374501992032,1.4103585657370519,1.4143426294820718,1.4183266932270917,1.4223107569721116,1.4262948207171315,1.4302788844621515,1.4342629482071714,1.4382470119521913,1.4422310756972112,1.4462151394422311,1.450199203187251,1.454183266932271,1.4581673306772909,1.4621513944223108,1.4661354581673307,1.4701195219123506,1.4741035856573705,1.4780876494023905,1.4820717131474104,1.4860557768924303,1.4900398406374502,1.4940239043824701,1.49800796812749,1.50199203187251,1.5059760956175299,1.5099601593625498,1.5139442231075697,1.5179282868525896,1.5219123505976095,1.5258964143426295,1.5298804780876494,1.5338645418326693,1.5378486055776892,1.5418326693227091,1.545816733067729,1.549800796812749,1.5537848605577689,1.5577689243027888,1.5617529880478087,1.5657370517928286,1.5697211155378485,1.5737051792828685,1.5776892430278884,1.5816733067729083,1.5856573705179282,1.5896414342629481,1.593625498007968,1.597609561752988,1.6015936254980079,1.6055776892430278,1.6095617529880477,1.6135458167330676,1.6175298804780875,1.6215139442231075,1.6254980079681276,1.6294820717131475,1.6334661354581674,1.6374501992031874,1.6414342629482073,1.6454183266932272,1.649402390438247,1.653386454183267,1.657370517928287,1.6613545816733069,1.6653386454183268,1.6693227091633467,1.6733067729083666,1.6772908366533865,1.6812749003984064,1.6852589641434264,1.6892430278884463,1.6932270916334662,1.697211155378486,1.701195219123506,1.705179282868526,1.7091633466135459,1.7131474103585658,1.7171314741035857,1.7211155378486056,1.7250996015936255,1.7290836653386454,1.7330677290836654,1.7370517928286853,1.7410358565737052,1.745019920318725,1.749003984063745,1.752988047808765,1.7569721115537849,1.7609561752988048,1.7649402390438247,1.7689243027888446,1.7729083665338645,1.7768924302788844,1.7808764940239044,1.7848605577689243,1.7888446215139442,1.792828685258964,1.796812749003984,1.800796812749004,1.8047808764940239,1.8087649402390438,1.8127490039840637,1.8167330677290836,1.8207171314741035,1.8247011952191234,1.8286852589641434,1.8326693227091633,1.8366533864541832,1.840637450199203,1.844621513944223,1.848605577689243,1.8525896414342629,1.8565737051792828,1.8605577689243027,1.8645418326693226,1.8685258964143425,1.8725099601593624,1.8764940239043826,1.8804780876494025,1.8844621513944224,1.8884462151394423,1.8924302788844622,1.8964143426294822,1.900398406374502,1.904382470119522,1.908366533864542,1.9123505976095618,1.9163346613545817,1.9203187250996017,1.9243027888446216,1.9282868525896415,1.9322709163346614,1.9362549800796813,1.9402390438247012,1.9442231075697212,1.948207171314741,1.952191235059761,1.956175298804781,1.9601593625498008,1.9641434262948207,1.9681274900398407,1.9721115537848606,1.9760956175298805,1.9800796812749004,1.9840637450199203,1.9880478087649402,1.9920318725099602,1.99601593625498,2.0,2.00398406374502,2.00796812749004,2.0119521912350598,2.0159362549800797,2.0199203187250996,2.0239043824701195,2.0278884462151394,2.0318725099601593,2.0358565737051793,2.039840637450199,2.043824701195219,2.047808764940239,2.051792828685259,2.055776892430279,2.0597609561752988,2.0637450199203187,2.0677290836653386,2.0717131474103585,2.0756972111553784,2.0796812749003983,2.0836653386454183,2.087649402390438,2.091633466135458,2.095617529880478,2.099601593625498,2.103585657370518,2.1075697211155378,2.1115537848605577,2.1155378486055776,2.1195219123505975,2.1235059760956174,2.1274900398406373,2.1314741035856573,2.135458167330677,2.139442231075697,2.143426294820717,2.147410358565737,2.151394422310757,2.1553784860557768,2.1593625498007967,2.1633466135458166,2.1673306772908365,2.1713147410358564,2.1752988047808763,2.1792828685258963,2.183266932270916,2.187250996015936,2.191235059760956,2.195219123505976,2.199203187250996,2.2031872509960158,2.2071713147410357,2.2111553784860556,2.2151394422310755,2.2191235059760954,2.2231075697211153,2.2270916334661353,2.231075697211155,2.235059760956175,2.239043824701195,2.243027888446215,2.247011952191235,2.250996015936255,2.254980079681275,2.258964143426295,2.262948207171315,2.266932270916335,2.270916334661355,2.2749003984063747,2.2788844621513946,2.2828685258964145,2.2868525896414345,2.2908366533864544,2.2948207171314743,2.298804780876494,2.302788844621514,2.306772908366534,2.310756972111554,2.314741035856574,2.318725099601594,2.3227091633466137,2.3266932270916336,2.3306772908366535,2.3346613545816735,2.3386454183266934,2.3426294820717133,2.346613545816733,2.350597609561753,2.354581673306773,2.358565737051793,2.362549800796813,2.366533864541833,2.3705179282868527,2.3745019920318726,2.3784860557768925,2.3824701195219125,2.3864541832669324,2.3904382470119523,2.394422310756972,2.398406374501992,2.402390438247012,2.406374501992032,2.410358565737052,2.414342629482072,2.4183266932270917,2.4223107569721116,2.4262948207171315,2.4302788844621515,2.4342629482071714,2.4382470119521913,2.442231075697211,2.446215139442231,2.450199203187251,2.454183266932271,2.458167330677291,2.462151394422311,2.4661354581673307,2.4701195219123506,2.4741035856573705,2.4780876494023905,2.4820717131474104,2.4860557768924303,2.49003984063745,2.49402390438247,2.49800796812749,2.50199203187251,2.50597609561753,2.50996015936255,2.5139442231075697,2.5179282868525896,2.5219123505976095,2.5258964143426295,2.5298804780876494,2.5338645418326693,2.537848605577689,2.541832669322709,2.545816733067729,2.549800796812749,2.553784860557769,2.557768924302789,2.5617529880478087,2.5657370517928286,2.5697211155378485,2.5737051792828685,2.5776892430278884,2.5816733067729083,2.585657370517928,2.589641434262948,2.593625498007968,2.597609561752988,2.601593625498008,2.605577689243028,2.6095617529880477,2.6135458167330676,2.6175298804780875,2.6215139442231075,2.6254980079681274,2.6294820717131473,2.633466135458167,2.637450199203187,2.641434262948207,2.645418326693227,2.649402390438247,2.653386454183267,2.6573705179282867,2.6613545816733066,2.6653386454183265,2.6693227091633465,2.6733067729083664,2.6772908366533863,2.681274900398406,2.685258964143426,2.689243027888446,2.693227091633466,2.697211155378486,2.701195219123506,2.7051792828685257,2.7091633466135456,2.7131474103585655,2.7171314741035855,2.7211155378486054,2.7250996015936253,2.729083665338645,2.733067729083665,2.737051792828685,2.741035856573705,2.745019920318725,2.749003984063745,2.752988047808765,2.756972111553785,2.760956175298805,2.764940239043825,2.768924302788845,2.7729083665338647,2.7768924302788847,2.7808764940239046,2.7848605577689245,2.7888446215139444,2.7928286852589643,2.7968127490039842,2.800796812749004,2.804780876494024,2.808764940239044,2.812749003984064,2.816733067729084,2.8207171314741037,2.8247011952191237,2.8286852589641436,2.8326693227091635,2.8366533864541834,2.8406374501992033,2.8446215139442232,2.848605577689243,2.852589641434263,2.856573705179283,2.860557768924303,2.864541832669323,2.8685258964143427,2.8725099601593627,2.8764940239043826,2.8804780876494025,2.8844621513944224,2.8884462151394423,2.8924302788844622,2.896414342629482,2.900398406374502,2.904382470119522,2.908366533864542,2.912350597609562,2.9163346613545817,2.9203187250996017,2.9243027888446216,2.9282868525896415,2.9322709163346614,2.9362549800796813,2.9402390438247012,2.944223107569721,2.948207171314741,2.952191235059761,2.956175298804781,2.960159362549801,2.9641434262948207,2.9681274900398407,2.9721115537848606,2.9760956175298805,2.9800796812749004,2.9840637450199203,2.9880478087649402,2.99203187250996,2.99601593625498,3.0]} +{"expected":[0.8813736,0.87856483,0.87577283,0.8729972,0.8702381,0.86749524,0.86476856,0.8620578,0.85936296,0.8566838,0.8540203,0.8513722,0.8487394,0.8461218,0.84351933,0.84093183,0.8383591,0.8358011,0.83325785,0.8307288,0.8282143,0.82571393,0.82322776,0.8207555,0.81829715,0.8158526,0.8134217,0.81100446,0.8086005,0.8062099,0.8038327,0.8014685,0.7991173,0.7967791,0.7944537,0.792141,0.78984094,0.78755337,0.78527826,0.78301543,0.7807648,0.7785264,0.7763001,0.77408564,0.771883,0.7696922,0.7675131,0.76534545,0.76318944,0.76104474,0.7589115,0.7567894,0.7546784,0.75257856,0.7504897,0.7484117,0.74634457,0.74428815,0.74224246,0.7402072,0.73818254,0.7361683,0.7341645,0.7321708,0.7301874,0.7282141,0.7262508,0.7242976,0.7223542,0.7204206,0.7184969,0.7165828,0.7146782,0.71278334,0.71089786,0.70902187,0.7071551,0.7052977,0.70344955,0.7016104,0.69978046,0.6979594,0.69614744,0.6943444,0.69255006,0.6907645,0.68898773,0.6872195,0.6854599,0.68370885,0.68196625,0.68023205,0.67850614,0.67678857,0.6750792,0.67337805,0.671685,0.66999996,0.66832304,0.666654,0.66499287,0.66333956,0.6616941,0.66005635,0.6584263,0.6568038,0.655189,0.6535817,0.65198183,0.6503894,0.6488044,0.64722675,0.64565635,0.64409316,0.64253724,0.6409884,0.6394467,0.6379119,0.63638425,0.63486356,0.63334966,0.6318427,0.63034254,0.6288492,0.62736255,0.62588257,0.6244093,0.62294257,0.62148243,0.62002873,0.61858165,0.61714095,0.61570656,0.61427855,0.6128569,0.61144155,0.6100323,0.60862935,0.6072326,0.6058418,0.6044572,0.60307854,0.60170597,0.6003393,0.5989786,0.5976237,0.5962748,0.59493154,0.59359413,0.5922625,0.59093654,0.58961624,0.5883016,0.5869925,0.5856891,0.5843911,0.58309865,0.58181167,0.5805301,0.579254,0.5779832,0.57671773,0.5754576,0.57420266,0.57295305,0.57170856,0.57046926,0.56923515,0.5680061,0.5667822,0.56556326,0.5643494,0.5631406,0.5619366,0.5607377,0.55954355,0.5583544,0.55717,0.55599046,0.5548157,0.5536457,0.5524804,0.55131984,0.550164,0.5490127,0.5478661,0.54672414,0.54558665,0.54445374,0.54332536,0.54220146,0.541082,0.53996706,0.53885645,0.5377503,0.53664845,0.5355509,0.5344578,0.5333689,0.53228426,0.53120387,0.5301277,0.5290557,0.5279879,0.5269242,0.5258647,0.5248093,0.5237579,0.5227106,0.5216673,0.5206281,0.5195927,0.5185614,0.517534,0.5165106,0.51549107,0.51447535,0.5134635,0.51245546,0.5114513,0.5104509,0.50945425,0.5084614,0.5074723,0.50648683,0.5055051,0.50452703,0.5035526,0.5025818,0.50161463,0.50065106,0.499691,0.49873453,0.49778157,0.49683216,0.49588624,0.49494377,0.4940048,0.49306923,0.49213707,0.49120834,0.490283,0.48936105,0.4884424,0.48752713,0.48661512,0.48570645,0.484801,0.48389885,0.48299995,0.4821043,0.48121184,0.48032254,0.47943646,0.47855356,0.47767377,0.4767971,0.47592354,0.47505307,0.47418573,0.47332147,0.47246018,0.47160196,0.4707468,0.46989453,0.46904534,0.46819904,0.4673558,0.46651545,0.46567804,0.46484354,0.46401194,0.46318316,0.4623573,0.46153426,0.46071413,0.4598968,0.45908225,0.4582705,0.45746154,0.45665535,0.4558519,0.4550512,0.45425326,0.453458,0.45266542,0.4518756,0.4510884,0.45030382,0.44952196,0.4487427,0.44796607,0.44719207,0.4464206,0.4456518,0.44488555,0.44412178,0.44336066,0.442602,0.44184586,0.44109228,0.44034114,0.43959254,0.43884638,0.4381027,0.43736142,0.4366226,0.4358862,0.43515226,0.43442068,0.4336915,0.43296474,0.43224028,0.4315182,0.43079847,0.4300811,0.42936602,0.4286532,0.4279428,0.4272346,0.42652866,0.4258251,0.4251237,0.4244246,0.42372772,0.42303306,0.42234063,0.42165038,0.42096233,0.4202765,0.4195928,0.41891128,0.41823196,0.41755474,0.41687965,0.41620675,0.41553584,0.41486716,0.41420048,0.41353595,0.41287348,0.41221303,0.41155472,0.41089842,0.41024414,0.4095919,0.4089417,0.40829352,0.4076473,0.4070031,0.40636092,0.40572065,0.40508237,0.40444607,0.40381166,0.40317926,0.4025488,0.40192017,0.40129355,0.40066877,0.4000459,0.39942497,0.39880586,0.39818865,0.3975733,0.39695978,0.39634812,0.39573833,0.39513034,0.3945242,0.39391983,0.3933173,0.3927166,0.39211762,0.39152047,0.3909251,0.39033148,0.38973963,0.3891495,0.38856113,0.38797453,0.38738963,0.38680646,0.386225,0.38564527,0.3850672,0.38449085,0.38391614,0.3833432,0.38277185,0.3822022,0.38163424,0.38106787,0.38050315,0.3799401,0.37937862,0.3788188,0.37826058,0.37770402,0.37714902,0.3765956,0.3760438,0.37549356,0.3749449,0.3743978,0.37385228,0.37330833,0.3727659,0.372225,0.37168562,0.37114778,0.37061155,0.37007678,0.36954346,0.3690117,0.36848143,0.36795264,0.36742538,0.36689955,0.3663752,0.36585233,0.3653309,0.36481094,0.36429247,0.36377537,0.36325973,0.36274555,0.36223277,0.36172143,0.36121148,0.36070296,0.36019582,0.35969007,0.35918576,0.35868275,0.3581812,0.357681,0.35718215,0.35668468,0.3561886,0.35569382,0.35520038,0.35470828,0.3542176,0.35372818,0.3532401,0.35275334,0.3522679,0.35178372,0.3513009,0.35081935,0.3503391,0.3498602,0.34938252,0.34890613,0.34843102,0.34795713,0.3474846,0.34701324,0.3465432,0.34607434,0.34560674,0.34514043,0.34467533,0.34421146,0.34374884,0.34328735,0.34282717,0.34236816,0.34191033,0.34145376,0.34099835,0.34054413,0.3400911,0.33963928,0.33918864,0.33873916,0.3382908,0.3378437,0.3373977,0.33695284,0.33650917,0.3360666,0.33562523,0.335185,0.33474582,0.33430785,0.333871,0.33343524,0.33300063,0.33256707,0.33213466,0.3317034,0.33127314,0.33084404,0.33041602,0.3299891,0.3295633,0.3291385,0.32871482,0.3282922,0.32787064,0.32745016],"x":[1.0,1.0039841,1.0079681,1.0119522,1.0159363,1.0199203,1.0239043,1.0278884,1.0318725,1.0358566,1.0398406,1.0438247,1.0478088,1.0517929,1.0557768,1.0597609,1.063745,1.0677291,1.0717131,1.0756972,1.0796813,1.0836654,1.0876493,1.0916334,1.0956175,1.0996016,1.1035856,1.1075697,1.1115538,1.1155379,1.1195219,1.123506,1.12749,1.1314741,1.1354581,1.1394422,1.1434263,1.1474104,1.1513944,1.1553785,1.1593626,1.1633466,1.1673306,1.1713147,1.1752988,1.1792829,1.1832669,1.187251,1.1912351,1.1952192,1.1992031,1.2031872,1.2071713,1.2111554,1.2151394,1.2191235,1.2231076,1.2270917,1.2310756,1.2350597,1.2390438,1.2430279,1.2470119,1.250996,1.2549801,1.2589642,1.2629482,1.2669322,1.2709163,1.2749004,1.2788844,1.2828685,1.2868526,1.2908367,1.2948207,1.2988048,1.3027889,1.306773,1.3107569,1.314741,1.3187251,1.3227092,1.3266932,1.3306773,1.3346614,1.3386455,1.3426294,1.3466135,1.3505976,1.3545817,1.3585657,1.3625498,1.3665339,1.370518,1.374502,1.378486,1.3824701,1.3864542,1.3904382,1.3944223,1.3984064,1.4023905,1.4063745,1.4103585,1.4143426,1.4183267,1.4223107,1.4262948,1.4302789,1.434263,1.438247,1.442231,1.4462152,1.4501992,1.4541832,1.4581673,1.4621514,1.4661355,1.4701195,1.4741036,1.4780877,1.4820718,1.4860557,1.4900398,1.4940239,1.498008,1.501992,1.5059761,1.5099602,1.5139443,1.5179282,1.5219123,1.5258964,1.5298805,1.5338645,1.5378486,1.5418327,1.5458168,1.5498008,1.5537848,1.557769,1.561753,1.565737,1.5697211,1.5737052,1.5776893,1.5816733,1.5856574,1.5896415,1.5936255,1.5976095,1.6015936,1.6055777,1.6095618,1.6135458,1.6175299,1.621514,1.625498,1.629482,1.6334661,1.6374502,1.6414343,1.6454183,1.6494024,1.6533865,1.6573706,1.6613545,1.6653386,1.6693227,1.6733068,1.6772908,1.6812749,1.685259,1.6892431,1.693227,1.6972111,1.7011952,1.7051793,1.7091633,1.7131474,1.7171315,1.7211156,1.7250996,1.7290837,1.7330678,1.7370518,1.7410358,1.7450199,1.749004,1.7529881,1.7569721,1.7609562,1.7649403,1.7689244,1.7729083,1.7768924,1.7808765,1.7848606,1.7888446,1.7928287,1.7968128,1.8007969,1.8047808,1.8087649,1.812749,1.8167331,1.8207171,1.8247012,1.8286853,1.8326694,1.8366534,1.8406374,1.8446215,1.8486056,1.8525896,1.8565737,1.8605578,1.8645419,1.8685259,1.87251,1.876494,1.8804781,1.8844621,1.8884462,1.8924303,1.8964144,1.9003984,1.9043825,1.9083666,1.9123507,1.9163346,1.9203187,1.9243028,1.9282869,1.9322709,1.936255,1.9402391,1.9442232,1.9482071,1.9521912,1.9561753,1.9601594,1.9641434,1.9681275,1.9721116,1.9760957,1.9800797,1.9840637,1.9880478,1.9920319,1.9960159,2.0,2.003984,2.0079682,2.0119522,2.0159361,2.0199203,2.0239043,2.0278885,2.0318725,2.0358565,2.0398407,2.0438247,2.0478086,2.0517929,2.0557768,2.059761,2.063745,2.067729,2.0717132,2.0756972,2.0796812,2.0836654,2.0876493,2.0916336,2.0956175,2.0996015,2.1035857,2.1075697,2.1115537,2.115538,2.1195219,2.123506,2.12749,2.131474,2.1354582,2.1394422,2.1434262,2.1474104,2.1513944,2.1553786,2.1593626,2.1633465,2.1673307,2.1713147,2.1752987,2.179283,2.1832669,2.187251,2.191235,2.195219,2.1992033,2.2031872,2.2071712,2.2111554,2.2151394,2.2191236,2.2231076,2.2270916,2.2310758,2.2350597,2.2390437,2.243028,2.247012,2.250996,2.25498,2.258964,2.2629483,2.2669322,2.2709162,2.2749004,2.2788844,2.2828686,2.2868526,2.2908366,2.2948208,2.2988048,2.3027887,2.306773,2.310757,2.3147411,2.318725,2.322709,2.3266933,2.3306773,2.3346612,2.3386455,2.3426294,2.3466136,2.3505976,2.3545816,2.3585658,2.3625498,2.3665338,2.370518,2.374502,2.3784862,2.3824701,2.386454,2.3904383,2.3944223,2.3984063,2.4023905,2.4063745,2.4103587,2.4143426,2.4183266,2.4223108,2.4262948,2.4302788,2.434263,2.438247,2.4422312,2.4462152,2.4501991,2.4541833,2.4581673,2.4621513,2.4661355,2.4701195,2.4741037,2.4780877,2.4820716,2.4860559,2.4900398,2.4940238,2.498008,2.501992,2.5059762,2.5099602,2.5139441,2.5179284,2.5219123,2.5258963,2.5298805,2.5338645,2.5378487,2.5418327,2.5458167,2.5498009,2.5537848,2.5577688,2.561753,2.565737,2.5697212,2.5737052,2.5776892,2.5816734,2.5856574,2.5896413,2.5936255,2.5976095,2.6015937,2.6055777,2.6095617,2.613546,2.6175299,2.6215138,2.625498,2.629482,2.6334662,2.6374502,2.6414342,2.6454184,2.6494024,2.6533864,2.6573706,2.6613545,2.6653388,2.6693227,2.6733067,2.677291,2.681275,2.6852589,2.689243,2.693227,2.6972113,2.7011952,2.7051792,2.7091634,2.7131474,2.7171314,2.7211156,2.7250996,2.7290838,2.7330678,2.7370517,2.741036,2.74502,2.749004,2.752988,2.756972,2.7609563,2.7649403,2.7689242,2.7729084,2.7768924,2.7808764,2.7848606,2.7888446,2.7928288,2.7968128,2.8007967,2.804781,2.808765,2.812749,2.8167331,2.820717,2.8247013,2.8286853,2.8326693,2.8366535,2.8406374,2.8446214,2.8486056,2.8525896,2.8565738,2.8605578,2.8645418,2.868526,2.87251,2.876494,2.8804781,2.884462,2.8884463,2.8924303,2.8964143,2.9003985,2.9043825,2.9083664,2.9123507,2.9163346,2.9203188,2.9243028,2.9282868,2.932271,2.936255,2.940239,2.9442232,2.9482071,2.9521914,2.9561753,2.9601593,2.9641435,2.9681275,2.9721115,2.9760957,2.9800797,2.9840639,2.9880478,2.9920318,2.996016,3.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl index c98a4c5aa415..3fd14707d40a 100755 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/runner.jl @@ -19,7 +19,7 @@ import JSON """ -gen( domain, name ) + gen( domain, name ) Generate fixture data and write to file. @@ -32,12 +32,12 @@ Generate fixture data and write to file. ``` julia julia> x = range( -1000, stop = 1000, length = 2001 ); -julia> gen( x, \"data.json\" ); +julia> gen( x, "data.json" ); ``` """ function gen( domain, name ) - x = collect( domain ); - y = acschf.( x ); + x = collect( Float32.( domain ) ); + y = acsch.( x ); # Store data to be written to file as a collection: data = Dict([ @@ -62,11 +62,11 @@ file = @__FILE__; dir = dirname( file ); # Negative tiny values: -x = range( -1e-300, stop = -1e-308, length = 503 ); +x = range( -1e-30, stop = -1e-38, length = 503 ); gen( x, "tiny_negative.json" ); # Positive tiny values: -x = range( 1e-300, stop = 1e-308, length = 503 ); +x = range( 1e-30, stop = 1e-38, length = 503 ); gen( x, "tiny_positive.json" ); # Small(er) values: @@ -106,9 +106,9 @@ x = range( 28.0, stop = 100.0, length = 503 ); gen( x, "larger_positive.json" ); # Huge negative values: -x = range( -1e200, stop = -1e208, length = 503 ); +x = range( -1e30, stop = -1e38, length = 503 ); gen( x, "huge_negative.json" ); # Huge positive values: -x = range( 1e300, stop = 1e308, length = 503 ); +x = range( 1e30, stop = 1e38, length = 503 ); gen( x, "huge_positive.json" ); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json index 24089f994a16..3544a5243c8c 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_negative.json @@ -1 +1 @@ -{"expected":[-1.0475930126492587,-1.0472042683349878,-1.0468157929876352,-1.0464275863331858,-1.0460396480980116,-1.045651978008868,-1.045264575792896,-1.0448774411776196,-1.0444905738909456,-1.0441039736611633,-1.0437176402169426,-1.0433315732873356,-1.0429457726017728,-1.0425602378900651,-1.0421749688824014,-1.041789965309348,-1.04140522690185,-1.0410207533912268,-1.0406365445091748,-1.040252599987765,-1.039868919559443,-1.039485502957028,-1.0391023499137115,-1.0387194601630576,-1.0383368334390022,-1.0379544694758516,-1.0375723680082822,-1.0371905287713403,-1.0368089515004404,-1.036427635931365,-1.0360465818002647,-1.035665788843656,-1.0352852567984214,-1.0349049854018093,-1.0345249743914327,-1.0341452235052673,-1.0337657324816538,-1.0333865010592946,-1.0330075289772538,-1.0326288159749573,-1.0322503617921914,-1.031872166169102,-1.0314942288461946,-1.0311165495643335,-1.0307391280647402,-1.030361964088994,-1.0299850573790306,-1.0296084076771415,-1.029232014725974,-1.0288558782685293,-1.0284799980481631,-1.0281043738085842,-1.0277290052938537,-1.0273538922483856,-1.0269790344169443,-1.0266044315446454,-1.0262300833769549,-1.0258559896596873,-1.0254821501390066,-1.0251085645614246,-1.024735232673801,-1.0243621542233419,-1.0239893289575996,-1.0236167566244727,-1.023244436972204,-1.0228723697493805,-1.022500554704934,-1.0221289915881382,-1.0217576801486092,-1.0213866201363064,-1.0210158113015286,-1.0206452533949162,-1.0202749461674492,-1.019904889370447,-1.0195350827555676,-1.0191655260748074,-1.0187962190805,-1.0184271615253155,-1.0180583531622613,-1.0176897937446796,-1.0173214830262474,-1.0169534207609767,-1.0165856067032133,-1.016218040607636,-1.015850722229256,-1.0154836513234171,-1.0151168276457938,-1.0147502509523918,-1.0143839209995469,-1.0140178375439244,-1.013652000342519,-1.013286409152653,-1.0129210637319774,-1.0125559638384702,-1.0121911092304356,-1.011826499666504,-1.0114621349056319,-1.0110980147070994,-1.0107341388305124,-1.0103705070357993,-1.010007119083212,-1.0096439747333252,-1.0092810737470355,-1.0089184158855604,-1.0085560009104388,-1.0081938285835295,-1.007831898667011,-1.0074702109233808,-1.0071087651154558,-1.0067475610063688,-1.0063865983595723,-1.0060258769388344,-1.0056653965082387,-1.0053051568321867,-1.0049451576753927,-1.004585398802887,-1.0042258799800134,-1.003866600972429,-1.0035075615461044,-1.0031487614673211,-1.0027902005026743,-1.002431878419069,-1.0020737949837208,-1.0017159499641568,-1.001358343128212,-1.0010009742440316,-1.0006438430800684,-1.0002869494050834,-0.9999302929881454,-0.9995738735986293,-0.9992176910062168,-0.9988617449808951,-0.9985060352929567,-0.9981505617129987,-0.9977953240119218,-0.9974403219609316,-0.9970855553315355,-0.9967310238955436,-0.9963767274250684,-0.9960226656925236,-0.995668838470624,-0.9953152455323845,-0.9949618866511196,-0.9946087616004441,-0.9942558701542705,-0.9939032120868104,-0.9935507871725725,-0.9931985951863631,-0.9928466359032853,-0.9924949090987379,-0.9921434145484161,-0.9917921520283096,-0.9914411213147029,-0.9910903221841749,-0.9907397544135975,-0.9903894177801363,-0.9900393120612494,-0.9896894370346866,-0.9893397924784894,-0.9889903781709906,-0.9886411938908132,-0.9882922394168704,-0.987943514528365,-0.9875950190047889,-0.9872467526259219,-0.9868987151718327,-0.9865509064228768,-0.9862033261596973,-0.9858559741632233,-0.9855088502146703,-0.9851619540955391,-0.9848152855876158,-0.9844688444729707,-0.9841226305339584,-0.9837766435532168,-0.9834308833136675,-0.9830853495985136,-0.9827400421912414,-0.982394960875618,-0.9820501054356919,-0.9817054756557927,-0.981361071320529,-0.9810168922147902,-0.9806729381237442,-0.980329208832838,-0.9799857041277965,-0.9796424237946224,-0.9792993676195962,-0.9789565353892744,-0.97861392689049,-0.9782715419103523,-0.9779293802362451,-0.9775874416558282,-0.9772457259570353,-0.9769042329280734,-0.976562962357424,-0.9762219140338412,-0.9758810877463514,-0.9755404832842535,-0.9752001004371177,-0.9748599389947856,-0.9745199987473692,-0.9741802794852509,-0.973840780999083,-0.9735015030797869,-0.9731624455185525,-0.972823608106839,-0.9724849906363727,-0.9721465928991478,-0.9718084146874253,-0.9714704557937328,-0.9711327160108643,-0.970795195131879,-0.9704578929501015,-0.9701208092591214,-0.969783943852792,-0.9694472965252313,-0.9691108670708202,-0.9687746552842021,-0.9684386609602842,-0.9681028838942345,-0.9677673238814831,-0.9674319807177219,-0.9670968541989027,-0.9667619441212378,-0.9664272502811997,-0.9660927724755198,-0.9657585105011893,-0.965424464155457,-0.9650906332358307,-0.964757017540075,-0.9644236168662127,-0.964090431012523,-0.9637574597775407,-0.9634247029600583,-0.9630921603591222,-0.9627598317740348,-0.9624277170043529,-0.9620958158498873,-0.9617641281107034,-0.9614326535871189,-0.9611013920797055,-0.9607703433892867,-0.9604395073169384,-0.9601088836639885,-0.9597784722320156,-0.9594482728228496,-0.9591182852385708,-0.9587885092815093,-0.9584589447542449,-0.9581295914596066,-0.9578004492006723,-0.957471517780768,-0.9571427970034679,-0.9568142866725937,-0.9564859865922144,-0.9561578965666448,-0.9558300164004475,-0.9555023458984294,-0.9551748848656442,-0.9548476331073898,-0.9545205904292094,-0.95419375663689,-0.9538671315364626,-0.9535407149342019,-0.9532145066366253,-0.952888506450493,-0.9525627141828074,-0.9522371296408128,-0.951911752631995,-0.9515865829640807,-0.9512616204450374,-0.950936864883073,-0.9506123160866348,-0.95028797386441,-0.9499638380253246,-0.9496399083785434,-0.9493161847334695,-0.9489926668997435,-0.9486693546872444,-0.9483462479060876,-0.9480233463666251,-0.9477006498794458,-0.947378158255374,-0.9470558713054703,-0.9467337888410293,-0.9464119106735815,-0.9460902366148913,-0.9457687664769571,-0.9454475000720111,-0.9451264372125184,-0.9448055777111778,-0.9444849213809196,-0.9441644680349064,-0.943844217486533,-0.9435241695494256,-0.9432043240374407,-0.9428846807646659,-0.9425652395454188,-0.9422460001942472,-0.9419269625259277,-0.9416081263554669,-0.9412894914980993,-0.9409710577692881,-0.9406528249847247,-0.9403347929603276,-0.9400169615122429,-0.9396993304568437,-0.9393818996107294,-0.9390646687907254,-0.9387476378138826,-0.9384308064974785,-0.9381141746590144,-0.9377977421162169,-0.9374815086870366,-0.9371654741896484,-0.9368496384424503,-0.9365340012640642,-0.936218562473334,-0.9359033218893271,-0.935588279331332,-0.9352734346188601,-0.9349587875716433,-0.9346443380096346,-0.9343300857530089,-0.9340160306221599,-0.9337021724377024,-0.9333885110204703,-0.9330750461915167,-0.9327617777721146,-0.9324487055837543,-0.9321358294481452,-0.9318231491872144,-0.9315106646231066,-0.9311983755781834,-0.9308862818750236,-0.9305743833364224,-0.930262679785391,-0.9299511710451563,-0.9296398569391616,-0.9293287372910639,-0.929017811924736,-0.928707080664265,-0.9283965433339515,-0.9280861997583105,-0.9277760497620702,-0.9274660931701718,-0.9271563298077694,-0.9268467595002291,-0.9265373820731296,-0.9262281973522608,-0.9259192051636245,-0.9256104053334328,-0.9253017976881094,-0.9249933820542878,-0.9246851582588115,-0.9243771261287339,-0.924069285491318,-0.9237616361740354,-0.9234541780045665,-0.9231469108108002,-0.9228398344208336,-0.9225329486629711,-0.922226253365725,-0.9219197483578141,-0.9216134334681643,-0.9213073085259078,-0.9210013733603829,-0.920695627801134,-0.92039007167791,-0.920084704820666,-0.919779527059561,-0.9194745382249591,-0.9191697381474281,-0.91886512665774,-0.9185607035868698,-0.9182564687659964,-0.9179524220265008,-0.917648563199967,-0.9173448921181809,-0.9170414086131308,-0.9167381125170061,-0.9164350036621974,-0.9161320818812971,-0.9158293470070973,-0.9155267988725905,-0.9152244373109699,-0.9149222621556277,-0.9146202732401559,-0.9143184703983454,-0.9140168534641858,-0.9137154222718653,-0.9134141766557703,-0.9131131164504848,-0.9128122414907904,-0.912511551611666,-0.9122110466482874,-0.9119107264360269,-0.9116105908104533,-0.9113106396073312,-0.9110108726626207,-0.9107112898124777,-0.9104118908932529,-0.9101126757414922,-0.9098136441939351,-0.9095147960875161,-0.9092161312593633,-0.908917649546798,-0.9086193507873355,-0.9083212348186835,-0.9080233014787423,-0.9077255506056051,-0.9074279820375569,-0.9071305956130741,-0.9068333911708252,-0.9065363685496695,-0.9062395275886571,-0.9059428681270292,-0.9056463900042167,-0.9053500930598408,-0.9050539771337126,-0.9047580420658322,-0.904462287696389,-0.9041667138657611,-0.9038713204145156,-0.9035761071834073,-0.9032810740133793,-0.9029862207455622,-0.9026915472212742,-0.9023970532820201,-0.9021027387694923,-0.9018086035255691,-0.9015146473923151,-0.9012208702119812,-0.9009272718270034,-0.9006338520800037,-0.9003406108137888,-0.9000475478713502,-0.8997546630958643,-0.8994619563306911,-0.8991694274193753,-0.898877076205645,-0.8985849025334114,-0.898292906246769,-0.8980010871899954,-0.8977094452075505,-0.8974179801440767,-0.897126691844398,-0.8968355801535206,-0.8965446449166316,-0.8962538859791002,-0.8959633031864754,-0.8956728963844875,-0.8953826654190472,-0.8950926101362449,-0.894802730382351,-0.8945130260038152,-0.894223496847267,-0.8939341427595145,-0.8936449635875442,-0.893355959178522,-0.8930671293797907,-0.8927784740388721,-0.8924899930034652,-0.8922016861214461,-0.8919135532408686,-0.8916255942099627,-0.8913378088771354,-0.8910501970909699,-0.890762758700225,-0.890475493553836,-0.8901884015009133,-0.8899014823907423,-0.8896147360727839,-0.8893281623966732,-0.88904176121222,-0.8887555323694083,-0.8884694757183959,-0.8881835911095142,-0.8878978783932681,-0.8876123374203357,-0.887326968041568,-0.8870417701079882,-0.8867567434707923,-0.886471887981348,-0.8861872034911955,-0.8859026898520457,-0.8856183469157816,-0.8853341745344567,-0.8850501725602954,-0.8847663408456932,-0.8844826792432148,-0.8841991876055962,-0.8839158657857425,-0.883632713636728,-0.8833497310117971,-0.8830669177643627,-0.8827842737480064,-0.8825017988164786,-0.8822194928236978,-0.881937355623751,-0.8816553870708921,-0.881373587019543],"x":[-0.8,-0.800398406374502,-0.8007968127490039,-0.801195219123506,-0.801593625498008,-0.80199203187251,-0.802390438247012,-0.8027888446215139,-0.803187250996016,-0.8035856573705179,-0.80398406374502,-0.8043824701195219,-0.8047808764940239,-0.8051792828685259,-0.8055776892430279,-0.8059760956175299,-0.8063745019920319,-0.8067729083665338,-0.8071713147410359,-0.8075697211155378,-0.8079681274900399,-0.8083665338645418,-0.8087649402390438,-0.8091633466135458,-0.8095617529880478,-0.8099601593625498,-0.8103585657370518,-0.8107569721115537,-0.8111553784860558,-0.8115537848605577,-0.8119521912350598,-0.8123505976095617,-0.8127490039840638,-0.8131474103585657,-0.8135458167330677,-0.8139442231075698,-0.8143426294820717,-0.8147410358565738,-0.8151394422310757,-0.8155378486055777,-0.8159362549800797,-0.8163346613545817,-0.8167330677290837,-0.8171314741035857,-0.8175298804780876,-0.8179282868525897,-0.8183266932270916,-0.8187250996015937,-0.8191235059760956,-0.8195219123505976,-0.8199203187250996,-0.8203187250996016,-0.8207171314741036,-0.8211155378486056,-0.8215139442231075,-0.8219123505976096,-0.8223107569721115,-0.8227091633466136,-0.8231075697211155,-0.8235059760956175,-0.8239043824701195,-0.8243027888446215,-0.8247011952191236,-0.8250996015936255,-0.8254980079681274,-0.8258964143426295,-0.8262948207171315,-0.8266932270916335,-0.8270916334661355,-0.8274900398406374,-0.8278884462151395,-0.8282868525896414,-0.8286852589641435,-0.8290836653386454,-0.8294820717131474,-0.8298804780876494,-0.8302788844621514,-0.8306772908366534,-0.8310756972111554,-0.8314741035856573,-0.8318725099601594,-0.8322709163346613,-0.8326693227091634,-0.8330677290836653,-0.8334661354581673,-0.8338645418326693,-0.8342629482071713,-0.8346613545816733,-0.8350597609561753,-0.8354581673306772,-0.8358565737051793,-0.8362549800796812,-0.8366533864541833,-0.8370517928286852,-0.8374501992031872,-0.8378486055776893,-0.8382470119521912,-0.8386454183266933,-0.8390438247011952,-0.8394422310756973,-0.8398406374501992,-0.8402390438247012,-0.8406374501992032,-0.8410358565737052,-0.8414342629482072,-0.8418326693227092,-0.8422310756972111,-0.8426294820717132,-0.8430278884462151,-0.8434262948207172,-0.8438247011952191,-0.8442231075697211,-0.8446215139442231,-0.8450199203187251,-0.8454183266932271,-0.8458167330677291,-0.846215139442231,-0.8466135458167331,-0.847011952191235,-0.8474103585657371,-0.847808764940239,-0.848207171314741,-0.848605577689243,-0.849003984063745,-0.8494023904382471,-0.849800796812749,-0.850199203187251,-0.850597609561753,-0.850996015936255,-0.851394422310757,-0.851792828685259,-0.8521912350597609,-0.852589641434263,-0.8529880478087649,-0.853386454183267,-0.8537848605577689,-0.8541832669322709,-0.8545816733067729,-0.8549800796812749,-0.8553784860557769,-0.8557768924302789,-0.8561752988047808,-0.8565737051792829,-0.8569721115537848,-0.8573705179282869,-0.8577689243027888,-0.8581673306772908,-0.8585657370517928,-0.8589641434262948,-0.8593625498007968,-0.8597609561752988,-0.8601593625498007,-0.8605577689243028,-0.8609561752988047,-0.8613545816733068,-0.8617529880478088,-0.8621513944223107,-0.8625498007968128,-0.8629482071713147,-0.8633466135458168,-0.8637450199203187,-0.8641434262948208,-0.8645418326693227,-0.8649402390438247,-0.8653386454183267,-0.8657370517928287,-0.8661354581673307,-0.8665338645418327,-0.8669322709163346,-0.8673306772908367,-0.8677290836653386,-0.8681274900398407,-0.8685258964143426,-0.8689243027888446,-0.8693227091633466,-0.8697211155378486,-0.8701195219123506,-0.8705179282868526,-0.8709163346613545,-0.8713147410358566,-0.8717131474103585,-0.8721115537848606,-0.8725099601593626,-0.8729083665338645,-0.8733067729083666,-0.8737051792828685,-0.8741035856573706,-0.8745019920318725,-0.8749003984063745,-0.8752988047808765,-0.8756972111553785,-0.8760956175298805,-0.8764940239043825,-0.8768924302788844,-0.8772908366533865,-0.8776892430278884,-0.8780876494023905,-0.8784860557768924,-0.8788844621513944,-0.8792828685258964,-0.8796812749003984,-0.8800796812749004,-0.8804780876494024,-0.8808764940239043,-0.8812749003984064,-0.8816733067729083,-0.8820717131474104,-0.8824701195219123,-0.8828685258964143,-0.8832669322709163,-0.8836653386454183,-0.8840637450199204,-0.8844621513944223,-0.8848605577689242,-0.8852589641434263,-0.8856573705179283,-0.8860557768924303,-0.8864541832669323,-0.8868525896414342,-0.8872509960159363,-0.8876494023904382,-0.8880478087649403,-0.8884462151394422,-0.8888446215139443,-0.8892430278884462,-0.8896414342629482,-0.8900398406374502,-0.8904382470119522,-0.8908366533864542,-0.8912350597609562,-0.8916334661354581,-0.8920318725099602,-0.8924302788844621,-0.8928286852589642,-0.8932270916334661,-0.8936254980079681,-0.8940239043824701,-0.8944223107569721,-0.8948207171314742,-0.8952191235059761,-0.895617529880478,-0.8960159362549801,-0.896414342629482,-0.8968127490039841,-0.8972111553784861,-0.897609561752988,-0.8980079681274901,-0.898406374501992,-0.8988047808764941,-0.899203187250996,-0.899601593625498,-0.9,-0.900398406374502,-0.900796812749004,-0.901195219123506,-0.9015936254980079,-0.90199203187251,-0.9023904382470119,-0.902788844621514,-0.9031872509960159,-0.9035856573705179,-0.9039840637450199,-0.9043824701195219,-0.904780876494024,-0.9051792828685259,-0.9055776892430278,-0.9059760956175299,-0.9063745019920318,-0.9067729083665339,-0.9071713147410359,-0.9075697211155378,-0.9079681274900399,-0.9083665338645418,-0.9087649402390439,-0.9091633466135458,-0.9095617529880478,-0.9099601593625498,-0.9103585657370518,-0.9107569721115538,-0.9111553784860558,-0.9115537848605577,-0.9119521912350598,-0.9123505976095617,-0.9127490039840638,-0.9131474103585657,-0.9135458167330678,-0.9139442231075697,-0.9143426294820717,-0.9147410358565737,-0.9151394422310757,-0.9155378486055777,-0.9159362549800797,-0.9163346613545816,-0.9167330677290837,-0.9171314741035856,-0.9175298804780877,-0.9179282868525896,-0.9183266932270916,-0.9187250996015937,-0.9191235059760956,-0.9195219123505977,-0.9199203187250996,-0.9203187250996016,-0.9207171314741036,-0.9211155378486056,-0.9215139442231076,-0.9219123505976096,-0.9223107569721115,-0.9227091633466136,-0.9231075697211155,-0.9235059760956176,-0.9239043824701195,-0.9243027888446215,-0.9247011952191235,-0.9250996015936255,-0.9254980079681275,-0.9258964143426295,-0.9262948207171314,-0.9266932270916335,-0.9270916334661354,-0.9274900398406375,-0.9278884462151394,-0.9282868525896414,-0.9286852589641434,-0.9290836653386454,-0.9294820717131475,-0.9298804780876494,-0.9302788844621513,-0.9306772908366534,-0.9310756972111554,-0.9314741035856574,-0.9318725099601594,-0.9322709163346613,-0.9326693227091634,-0.9330677290836653,-0.9334661354581674,-0.9338645418326693,-0.9342629482071713,-0.9346613545816733,-0.9350597609561753,-0.9354581673306773,-0.9358565737051793,-0.9362549800796812,-0.9366533864541833,-0.9370517928286852,-0.9374501992031873,-0.9378486055776892,-0.9382470119521913,-0.9386454183266932,-0.9390438247011952,-0.9394422310756972,-0.9398406374501992,-0.9402390438247012,-0.9406374501992032,-0.9410358565737051,-0.9414342629482072,-0.9418326693227091,-0.9422310756972112,-0.9426294820717132,-0.9430278884462151,-0.9434262948207172,-0.9438247011952191,-0.9442231075697212,-0.9446215139442231,-0.9450199203187251,-0.9454183266932271,-0.9458167330677291,-0.9462151394422311,-0.9466135458167331,-0.947011952191235,-0.9474103585657371,-0.947808764940239,-0.9482071713147411,-0.948605577689243,-0.949003984063745,-0.949402390438247,-0.949800796812749,-0.950199203187251,-0.950597609561753,-0.9509960159362549,-0.951394422310757,-0.9517928286852589,-0.952191235059761,-0.952589641434263,-0.9529880478087649,-0.953386454183267,-0.9537848605577689,-0.954183266932271,-0.9545816733067729,-0.9549800796812749,-0.9553784860557769,-0.9557768924302789,-0.9561752988047809,-0.9565737051792829,-0.9569721115537848,-0.9573705179282869,-0.9577689243027888,-0.9581673306772909,-0.9585657370517928,-0.9589641434262948,-0.9593625498007968,-0.9597609561752988,-0.9601593625498008,-0.9605577689243028,-0.9609561752988047,-0.9613545816733068,-0.9617529880478087,-0.9621513944223108,-0.9625498007968127,-0.9629482071713148,-0.9633466135458167,-0.9637450199203187,-0.9641434262948207,-0.9645418326693227,-0.9649402390438248,-0.9653386454183267,-0.9657370517928286,-0.9661354581673307,-0.9665338645418327,-0.9669322709163347,-0.9673306772908367,-0.9677290836653386,-0.9681274900398407,-0.9685258964143426,-0.9689243027888447,-0.9693227091633466,-0.9697211155378486,-0.9701195219123506,-0.9705179282868526,-0.9709163346613546,-0.9713147410358566,-0.9717131474103585,-0.9721115537848606,-0.9725099601593625,-0.9729083665338646,-0.9733067729083665,-0.9737051792828685,-0.9741035856573705,-0.9745019920318725,-0.9749003984063745,-0.9752988047808765,-0.9756972111553784,-0.9760956175298805,-0.9764940239043824,-0.9768924302788845,-0.9772908366533865,-0.9776892430278884,-0.9780876494023905,-0.9784860557768924,-0.9788844621513945,-0.9792828685258964,-0.9796812749003984,-0.9800796812749004,-0.9804780876494024,-0.9808764940239044,-0.9812749003984064,-0.9816733067729083,-0.9820717131474104,-0.9824701195219123,-0.9828685258964144,-0.9832669322709163,-0.9836653386454183,-0.9840637450199203,-0.9844621513944223,-0.9848605577689243,-0.9852589641434263,-0.9856573705179282,-0.9860557768924303,-0.9864541832669322,-0.9868525896414343,-0.9872509960159362,-0.9876494023904383,-0.9880478087649402,-0.9884462151394422,-0.9888446215139443,-0.9892430278884462,-0.9896414342629483,-0.9900398406374502,-0.9904382470119522,-0.9908366533864542,-0.9912350597609562,-0.9916334661354582,-0.9920318725099602,-0.9924302788844621,-0.9928286852589642,-0.9932270916334661,-0.9936254980079682,-0.9940239043824701,-0.9944223107569721,-0.9948207171314741,-0.9952191235059761,-0.9956175298804781,-0.9960159362549801,-0.996414342629482,-0.9968127490039841,-0.997211155378486,-0.9976095617529881,-0.99800796812749,-0.998406374501992,-0.998804780876494,-0.999203187250996,-0.999601593625498,-1.0]} +{"expected":[-1.047593,-1.0489558,-1.0503218,-1.051691,-1.0530638,-1.0544398,-1.0558193,-1.057202,-1.0585881,-1.0599777,-1.0613706,-1.062767,-1.0641668,-1.0655701,-1.0669768,-1.0683869,-1.0698006,-1.0712177,-1.0726384,-1.0740626,-1.0754904,-1.0769215,-1.0783563,-1.0797946,-1.0812366,-1.0826823,-1.0841314,-1.0855842,-1.0870407,-1.0885007,-1.0899645,-1.0914319,-1.092903,-1.0943779,-1.0958564,-1.0973388,-1.0988247,-1.1003146,-1.1018082,-1.1033056,-1.1048068,-1.1063118,-1.1078205,-1.1093333,-1.1108497,-1.1123703,-1.1138946,-1.1154228,-1.1169549,-1.118491,-1.120031,-1.1215751,-1.123123,-1.1246752,-1.1262311,-1.1277912,-1.1293553,-1.1309233,-1.1324956,-1.1340718,-1.1356523,-1.1372368,-1.1388255,-1.1404184,-1.1420155,-1.1436167,-1.1452221,-1.1468316,-1.1484456,-1.1500636,-1.1516862,-1.1533128,-1.1549438,-1.1565791,-1.1582189,-1.1598629,-1.1615113,-1.1631641,-1.1648214,-1.166483,-1.168149,-1.1698197,-1.1714947,-1.1731743,-1.1748582,-1.1765469,-1.1782402,-1.1799378,-1.1816401,-1.1833471,-1.1850587,-1.186775,-1.1884959,-1.1902214,-1.1919516,-1.1936867,-1.1954266,-1.1971711,-1.1989204,-1.2006745,-1.2024335,-1.2041973,-1.205966,-1.2077396,-1.2095181,-1.2113014,-1.2130898,-1.2148831,-1.2166815,-1.2184849,-1.2202933,-1.2221066,-1.2239252,-1.2257488,-1.2275776,-1.2294114,-1.2312505,-1.2330947,-1.2349441,-1.2367988,-1.2386588,-1.2405239,-1.2423944,-1.2442703,-1.2461514,-1.248038,-1.2499299,-1.2518274,-1.2537302,-1.2556385,-1.2575521,-1.2594714,-1.2613963,-1.2633266,-1.2652627,-1.2672043,-1.2691514,-1.2711043,-1.273063,-1.2750272,-1.2769973,-1.2789731,-1.2809547,-1.2829422,-1.2849355,-1.2869345,-1.2889396,-1.2909504,-1.2929674,-1.2949903,-1.2970192,-1.2990541,-1.3010951,-1.3031423,-1.3051956,-1.3072549,-1.3093204,-1.3113923,-1.3134701,-1.3155545,-1.317645,-1.319742,-1.321845,-1.3239547,-1.3260708,-1.3281932,-1.3303221,-1.3324577,-1.3345996,-1.3367482,-1.3389033,-1.3410653,-1.3432336,-1.3454088,-1.3475906,-1.3497794,-1.3519747,-1.354177,-1.3563862,-1.3586023,-1.3608253,-1.3630551,-1.3652922,-1.3675361,-1.3697871,-1.3720452,-1.3743105,-1.376583,-1.3788626,-1.3811495,-1.3834438,-1.3857453,-1.3880541,-1.3903705,-1.3926942,-1.3950253,-1.3973641,-1.3997103,-1.4020641,-1.4044256,-1.4067947,-1.4091716,-1.4115561,-1.4139485,-1.4163486,-1.4187567,-1.4211726,-1.4235966,-1.4260284,-1.4284685,-1.4309163,-1.4333726,-1.4358369,-1.4383094,-1.44079,-1.4432793,-1.4457767,-1.4482824,-1.4507966,-1.4533193,-1.4558506,-1.4583902,-1.4609388,-1.4634959,-1.4660615,-1.4686362,-1.4712195,-1.4738117,-1.4764129,-1.479023,-1.4816421,-1.4842703,-1.4869075,-1.489554,-1.4922097,-1.4948745,-1.4975487,-1.5002323,-1.5029253,-1.5056279,-1.5083399,-1.5110615,-1.5137929,-1.5165339,-1.5192845,-1.5220451,-1.5248156,-1.5275958,-1.5303862,-1.5331866,-1.5359972,-1.5388179,-1.5416487,-1.54449,-1.5473415,-1.5502034,-1.5530759,-1.5559589,-1.5588526,-1.5617568,-1.5646718,-1.5675977,-1.5705342,-1.5734819,-1.5764406,-1.5794103,-1.5823911,-1.5853833,-1.5883867,-1.5914013,-1.5944275,-1.5974652,-1.6005144,-1.6035752,-1.6066477,-1.6097322,-1.6128285,-1.6159366,-1.6190569,-1.6221893,-1.6253338,-1.6284906,-1.6316597,-1.6348414,-1.6380354,-1.6412421,-1.6444615,-1.6476936,-1.6509386,-1.6541965,-1.6574675,-1.6607517,-1.6640489,-1.6673595,-1.6706835,-1.674021,-1.6773719,-1.6807367,-1.684115,-1.6875074,-1.6909137,-1.6943339,-1.6977684,-1.7012172,-1.7046803,-1.7081578,-1.71165,-1.7151568,-1.7186784,-1.7222147,-1.7257662,-1.7293328,-1.7329146,-1.7365116,-1.7401242,-1.7437522,-1.747396,-1.7510556,-1.754731,-1.7584225,-1.76213,-1.765854,-1.7695944,-1.7733512,-1.7771248,-1.7809149,-1.7847222,-1.7885464,-1.7923878,-1.7962465,-1.8001227,-1.8040164,-1.807928,-1.8118575,-1.8158048,-1.8197705,-1.8237542,-1.8277565,-1.8317775,-1.8358172,-1.8398759,-1.8439536,-1.8480505,-1.8521669,-1.8563027,-1.8604584,-1.8646339,-1.8688294,-1.8730453,-1.8772815,-1.8815384,-1.885816,-1.8901145,-1.8944342,-1.8987752,-1.9031377,-1.907522,-1.9119279,-1.9163561,-1.9208065,-1.9252795,-1.9297751,-1.9342937,-1.9388354,-1.9434004,-1.9479889,-1.9526011,-1.9572374,-1.9618979,-1.9665828,-1.9712924,-1.9760269,-1.9807866,-1.9855716,-1.9903823,-1.995219,-2.0000815,-2.0049708,-2.0098865,-2.0148294,-2.0197992,-2.0247967,-2.0298219,-2.0348752,-2.0399566,-2.0450668,-2.0502057,-2.0553741,-2.060572,-2.0657995,-2.0710573,-2.0763454,-2.0816646,-2.087015,-2.0923965,-2.0978098,-2.1032555,-2.1087334,-2.1142447,-2.119789,-2.1253667,-2.1309786,-2.1366246,-2.1423056,-2.148022,-2.1537735,-2.1595614,-2.1653855,-2.1712465,-2.1771448,-2.1830807,-2.189055,-2.1950676,-2.2011197,-2.207211,-2.2133427,-2.2195148,-2.225728,-2.2319827,-2.2382798,-2.2446194,-2.251002,-2.2574286,-2.2638996,-2.2704153,-2.2769766,-2.2835839,-2.2902381,-2.2969394,-2.303689,-2.310487,-2.3173344,-2.3242316,-2.3311799,-2.3381793,-2.3452308,-2.3523352,-2.3594933,-2.3667057,-2.3739734,-2.381297,-2.3886776,-2.3961158,-2.4036124,-2.4111686,-2.4187849,-2.4264627,-2.4342027,-2.4420059,-2.4498732,-2.4578056,-2.4658046,-2.4738705,-2.4820051,-2.490209,-2.498484,-2.5068305,-2.5152502,-2.5237443,-2.5323138,-2.5409606,-2.5496855,-2.5584898,-2.5673752,-2.5763433,-2.5853953,-2.5945327,-2.6037574,-2.613071,-2.6224747,-2.6319706,-2.6415606,-2.651246,-2.6610293,-2.6709118,-2.680896,-2.6909838,-2.7011771,-2.7114785,-2.7218897,-2.7324135,-2.7430522,-2.753808,-2.7646837,-2.775682,-2.7868054,-2.7980566,-2.8094387,-2.8209553,-2.8326085,-2.844402,-2.8563392,-2.8684235,-2.8806584,-2.893048,-2.905596,-2.918306,-2.9311829,-2.9442306,-2.9574535,-2.9708567,-2.9844446,-2.9982228],"x":[-0.8,-0.79860556,-0.79721117,-0.7958167,-0.7944223,-0.7930279,-0.7916335,-0.79023904,-0.78884465,-0.7874502,-0.7860558,-0.78466135,-0.78326696,-0.7818725,-0.78047806,-0.77908367,-0.7776892,-0.7762948,-0.7749004,-0.773506,-0.77211154,-0.77071714,-0.7693227,-0.7679283,-0.76653385,-0.76513946,-0.763745,-0.7623506,-0.76095617,-0.7595618,-0.7581673,-0.75677294,-0.7553785,-0.75398403,-0.75258964,-0.7511952,-0.7498008,-0.74840635,-0.74701196,-0.7456175,-0.7442231,-0.74282867,-0.7414343,-0.7400398,-0.73864543,-0.737251,-0.7358566,-0.73446214,-0.73306775,-0.7316733,-0.7302789,-0.72888446,-0.72749007,-0.7260956,-0.72470117,-0.7233068,-0.7219123,-0.72051793,-0.7191235,-0.7177291,-0.71633464,-0.71494025,-0.7135458,-0.7121514,-0.71075696,-0.70936257,-0.7079681,-0.7065737,-0.7051793,-0.7037849,-0.70239043,-0.70099604,-0.6996016,-0.6982072,-0.69681275,-0.6954183,-0.6940239,-0.69262946,-0.69123507,-0.6898406,-0.6884462,-0.6870518,-0.6856574,-0.68426293,-0.68286854,-0.6814741,-0.6800797,-0.67868525,-0.67729086,-0.6758964,-0.674502,-0.67310756,-0.6717132,-0.6703187,-0.66892433,-0.6675299,-0.66613543,-0.66474104,-0.6633466,-0.6619522,-0.66055775,-0.65916336,-0.6577689,-0.6563745,-0.65498006,-0.6535857,-0.6521912,-0.65079683,-0.6494024,-0.648008,-0.64661354,-0.64521915,-0.6438247,-0.6424303,-0.64103585,-0.63964146,-0.638247,-0.63685256,-0.6354582,-0.6340637,-0.6326693,-0.6312749,-0.6298805,-0.62848604,-0.62709165,-0.6256972,-0.6243028,-0.62290835,-0.62151396,-0.6201195,-0.6187251,-0.6173307,-0.6159363,-0.6145418,-0.61314744,-0.611753,-0.61035854,-0.60896415,-0.6075697,-0.6061753,-0.60478085,-0.60338646,-0.601992,-0.6005976,-0.59920317,-0.5978088,-0.5964143,-0.59501994,-0.5936255,-0.5922311,-0.59083664,-0.58944225,-0.5880478,-0.5866534,-0.58525896,-0.58386457,-0.5824701,-0.58107567,-0.5796813,-0.5782868,-0.57689244,-0.575498,-0.5741036,-0.57270914,-0.57131475,-0.5699203,-0.5685259,-0.56713146,-0.56573707,-0.5643426,-0.5629482,-0.5615538,-0.5601594,-0.55876493,-0.55737054,-0.5559761,-0.5545817,-0.55318725,-0.5517928,-0.5503984,-0.54900396,-0.54760957,-0.5462151,-0.5448207,-0.5434263,-0.5420319,-0.54063743,-0.53924304,-0.5378486,-0.5364542,-0.53505975,-0.53366536,-0.5322709,-0.5308765,-0.52948207,-0.5280877,-0.5266932,-0.52529883,-0.5239044,-0.52250993,-0.52111554,-0.5197211,-0.5183267,-0.51693225,-0.51553786,-0.5141434,-0.512749,-0.51135457,-0.5099602,-0.5085657,-0.50717133,-0.5057769,-0.5043825,-0.50298804,-0.50159365,-0.5001992,-0.49880478,-0.49741036,-0.49601594,-0.49462152,-0.4932271,-0.49183267,-0.49043825,-0.48904383,-0.4876494,-0.486255,-0.48486057,-0.48346615,-0.48207173,-0.48067728,-0.47928286,-0.47788844,-0.476494,-0.4750996,-0.47370517,-0.47231075,-0.47091633,-0.4695219,-0.4681275,-0.46673307,-0.46533865,-0.46394423,-0.4625498,-0.46115538,-0.45976096,-0.45836654,-0.45697212,-0.4555777,-0.45418328,-0.45278883,-0.4513944,-0.45,-0.44860557,-0.44721115,-0.44581673,-0.4444223,-0.44302788,-0.44163346,-0.44023904,-0.43884462,-0.4374502,-0.43605578,-0.43466136,-0.43326694,-0.43187252,-0.4304781,-0.42908368,-0.42768925,-0.42629483,-0.4249004,-0.42350596,-0.42211154,-0.42071712,-0.4193227,-0.41792828,-0.41653386,-0.41513944,-0.41374502,-0.4123506,-0.41095617,-0.40956175,-0.40816733,-0.4067729,-0.4053785,-0.40398407,-0.40258965,-0.40119523,-0.3998008,-0.3984064,-0.39701197,-0.39561754,-0.3942231,-0.39282867,-0.39143425,-0.39003983,-0.3886454,-0.387251,-0.38585657,-0.38446215,-0.38306773,-0.3816733,-0.3802789,-0.37888446,-0.37749004,-0.37609562,-0.3747012,-0.37330678,-0.37191236,-0.37051794,-0.36912352,-0.3677291,-0.36633465,-0.36494023,-0.3635458,-0.36215138,-0.36075696,-0.35936254,-0.35796812,-0.3565737,-0.35517928,-0.35378486,-0.35239044,-0.35099602,-0.3496016,-0.34820718,-0.34681275,-0.34541833,-0.3440239,-0.3426295,-0.34123507,-0.33984065,-0.33844623,-0.33705178,-0.33565736,-0.33426294,-0.33286852,-0.3314741,-0.33007967,-0.32868525,-0.32729083,-0.3258964,-0.324502,-0.32310757,-0.32171315,-0.32031873,-0.3189243,-0.3175299,-0.31613547,-0.31474105,-0.31334662,-0.3119522,-0.31055778,-0.30916333,-0.3077689,-0.3063745,-0.30498007,-0.30358565,-0.30219123,-0.3007968,-0.2994024,-0.29800797,-0.29661354,-0.29521912,-0.2938247,-0.29243028,-0.29103586,-0.28964144,-0.28824702,-0.2868526,-0.28545818,-0.28406376,-0.28266934,-0.2812749,-0.27988046,-0.27848604,-0.27709162,-0.2756972,-0.27430278,-0.27290836,-0.27151394,-0.27011952,-0.2687251,-0.26733068,-0.26593626,-0.26454183,-0.2631474,-0.261753,-0.26035857,-0.25896415,-0.25756973,-0.2561753,-0.2547809,-0.25338647,-0.25199202,-0.2505976,-0.24920319,-0.24780877,-0.24641435,-0.24501993,-0.24362549,-0.24223107,-0.24083665,-0.23944223,-0.23804781,-0.23665339,-0.23525897,-0.23386455,-0.23247012,-0.2310757,-0.22968127,-0.22828685,-0.22689243,-0.225498,-0.22410358,-0.22270916,-0.22131474,-0.21992032,-0.2185259,-0.21713148,-0.21573704,-0.21434262,-0.2129482,-0.21155378,-0.21015936,-0.20876494,-0.20737052,-0.2059761,-0.20458168,-0.20318726,-0.20179282,-0.2003984,-0.19900398,-0.19760956,-0.19621514,-0.19482072,-0.1934263,-0.19203188,-0.19063745,-0.18924303,-0.18784861,-0.18645418,-0.18505976,-0.18366534,-0.18227091,-0.1808765,-0.17948207,-0.17808765,-0.17669323,-0.17529881,-0.17390439,-0.17250995,-0.17111553,-0.16972111,-0.16832669,-0.16693227,-0.16553785,-0.16414343,-0.162749,-0.16135459,-0.15996017,-0.15856573,-0.15717131,-0.15577689,-0.15438247,-0.15298805,-0.15159363,-0.1501992,-0.14880478,-0.14741036,-0.14601594,-0.14462152,-0.14322709,-0.14183266,-0.14043824,-0.13904382,-0.1376494,-0.13625498,-0.13486056,-0.13346614,-0.13207172,-0.1306773,-0.12928286,-0.12788844,-0.12649402,-0.1250996,-0.12370518,-0.12231076,-0.12091634,-0.119521916,-0.11812749,-0.11673307,-0.115338646,-0.113944225,-0.112549804,-0.111155376,-0.109760955,-0.108366534,-0.10697211,-0.10557769,-0.104183264,-0.10278884,-0.10139442,-0.1]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json index be07fa4a05c8..9379881bac0c 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/small_positive.json @@ -1 +1 @@ -{"expected":[1.0475930126492587,1.0472042683349878,1.0468157929876352,1.0464275863331858,1.0460396480980116,1.045651978008868,1.045264575792896,1.0448774411776196,1.0444905738909456,1.0441039736611633,1.0437176402169426,1.0433315732873356,1.0429457726017728,1.0425602378900651,1.0421749688824014,1.041789965309348,1.04140522690185,1.0410207533912268,1.0406365445091748,1.040252599987765,1.039868919559443,1.039485502957028,1.0391023499137115,1.0387194601630576,1.0383368334390022,1.0379544694758516,1.0375723680082822,1.0371905287713403,1.0368089515004404,1.036427635931365,1.0360465818002647,1.035665788843656,1.0352852567984214,1.0349049854018093,1.0345249743914327,1.0341452235052673,1.0337657324816538,1.0333865010592946,1.0330075289772538,1.0326288159749573,1.0322503617921914,1.031872166169102,1.0314942288461946,1.0311165495643335,1.0307391280647402,1.030361964088994,1.0299850573790306,1.0296084076771415,1.029232014725974,1.0288558782685293,1.0284799980481631,1.0281043738085842,1.0277290052938537,1.0273538922483856,1.0269790344169443,1.0266044315446454,1.0262300833769549,1.0258559896596873,1.0254821501390066,1.0251085645614246,1.024735232673801,1.0243621542233419,1.0239893289575996,1.0236167566244727,1.023244436972204,1.0228723697493805,1.022500554704934,1.0221289915881382,1.0217576801486092,1.0213866201363064,1.0210158113015286,1.0206452533949162,1.0202749461674492,1.019904889370447,1.0195350827555676,1.0191655260748074,1.0187962190805,1.0184271615253155,1.0180583531622613,1.0176897937446796,1.0173214830262474,1.0169534207609767,1.0165856067032133,1.016218040607636,1.015850722229256,1.0154836513234171,1.0151168276457938,1.0147502509523918,1.0143839209995469,1.0140178375439244,1.013652000342519,1.013286409152653,1.0129210637319774,1.0125559638384702,1.0121911092304356,1.011826499666504,1.0114621349056319,1.0110980147070994,1.0107341388305124,1.0103705070357993,1.010007119083212,1.0096439747333252,1.0092810737470355,1.0089184158855604,1.0085560009104388,1.0081938285835295,1.007831898667011,1.0074702109233808,1.0071087651154558,1.0067475610063688,1.0063865983595723,1.0060258769388344,1.0056653965082387,1.0053051568321867,1.0049451576753927,1.004585398802887,1.0042258799800134,1.003866600972429,1.0035075615461044,1.0031487614673211,1.0027902005026743,1.002431878419069,1.0020737949837208,1.0017159499641568,1.001358343128212,1.0010009742440316,1.0006438430800684,1.0002869494050834,0.9999302929881454,0.9995738735986293,0.9992176910062168,0.9988617449808951,0.9985060352929567,0.9981505617129987,0.9977953240119218,0.9974403219609316,0.9970855553315355,0.9967310238955436,0.9963767274250684,0.9960226656925236,0.995668838470624,0.9953152455323845,0.9949618866511196,0.9946087616004441,0.9942558701542705,0.9939032120868104,0.9935507871725725,0.9931985951863631,0.9928466359032853,0.9924949090987379,0.9921434145484161,0.9917921520283096,0.9914411213147029,0.9910903221841749,0.9907397544135975,0.9903894177801363,0.9900393120612494,0.9896894370346866,0.9893397924784894,0.9889903781709906,0.9886411938908132,0.9882922394168704,0.987943514528365,0.9875950190047889,0.9872467526259219,0.9868987151718327,0.9865509064228768,0.9862033261596973,0.9858559741632233,0.9855088502146703,0.9851619540955391,0.9848152855876158,0.9844688444729707,0.9841226305339584,0.9837766435532168,0.9834308833136675,0.9830853495985136,0.9827400421912414,0.982394960875618,0.9820501054356919,0.9817054756557927,0.981361071320529,0.9810168922147902,0.9806729381237442,0.980329208832838,0.9799857041277965,0.9796424237946224,0.9792993676195962,0.9789565353892744,0.97861392689049,0.9782715419103523,0.9779293802362451,0.9775874416558282,0.9772457259570353,0.9769042329280734,0.976562962357424,0.9762219140338412,0.9758810877463514,0.9755404832842535,0.9752001004371177,0.9748599389947856,0.9745199987473692,0.9741802794852509,0.973840780999083,0.9735015030797869,0.9731624455185525,0.972823608106839,0.9724849906363727,0.9721465928991478,0.9718084146874253,0.9714704557937328,0.9711327160108643,0.970795195131879,0.9704578929501015,0.9701208092591214,0.969783943852792,0.9694472965252313,0.9691108670708202,0.9687746552842021,0.9684386609602842,0.9681028838942345,0.9677673238814831,0.9674319807177219,0.9670968541989027,0.9667619441212378,0.9664272502811997,0.9660927724755198,0.9657585105011893,0.965424464155457,0.9650906332358307,0.964757017540075,0.9644236168662127,0.964090431012523,0.9637574597775407,0.9634247029600583,0.9630921603591222,0.9627598317740348,0.9624277170043529,0.9620958158498873,0.9617641281107034,0.9614326535871189,0.9611013920797055,0.9607703433892867,0.9604395073169384,0.9601088836639885,0.9597784722320156,0.9594482728228496,0.9591182852385708,0.9587885092815093,0.9584589447542449,0.9581295914596066,0.9578004492006723,0.957471517780768,0.9571427970034679,0.9568142866725937,0.9564859865922144,0.9561578965666448,0.9558300164004475,0.9555023458984294,0.9551748848656442,0.9548476331073898,0.9545205904292094,0.95419375663689,0.9538671315364626,0.9535407149342019,0.9532145066366253,0.952888506450493,0.9525627141828074,0.9522371296408128,0.951911752631995,0.9515865829640807,0.9512616204450374,0.950936864883073,0.9506123160866348,0.95028797386441,0.9499638380253246,0.9496399083785434,0.9493161847334695,0.9489926668997435,0.9486693546872444,0.9483462479060876,0.9480233463666251,0.9477006498794458,0.947378158255374,0.9470558713054703,0.9467337888410293,0.9464119106735815,0.9460902366148913,0.9457687664769571,0.9454475000720111,0.9451264372125184,0.9448055777111778,0.9444849213809196,0.9441644680349064,0.943844217486533,0.9435241695494256,0.9432043240374407,0.9428846807646659,0.9425652395454188,0.9422460001942472,0.9419269625259277,0.9416081263554669,0.9412894914980993,0.9409710577692881,0.9406528249847247,0.9403347929603276,0.9400169615122429,0.9396993304568437,0.9393818996107294,0.9390646687907254,0.9387476378138826,0.9384308064974785,0.9381141746590144,0.9377977421162169,0.9374815086870366,0.9371654741896484,0.9368496384424503,0.9365340012640642,0.936218562473334,0.9359033218893271,0.935588279331332,0.9352734346188601,0.9349587875716433,0.9346443380096346,0.9343300857530089,0.9340160306221599,0.9337021724377024,0.9333885110204703,0.9330750461915167,0.9327617777721146,0.9324487055837543,0.9321358294481452,0.9318231491872144,0.9315106646231066,0.9311983755781834,0.9308862818750236,0.9305743833364224,0.930262679785391,0.9299511710451563,0.9296398569391616,0.9293287372910639,0.929017811924736,0.928707080664265,0.9283965433339515,0.9280861997583105,0.9277760497620702,0.9274660931701718,0.9271563298077694,0.9268467595002291,0.9265373820731296,0.9262281973522608,0.9259192051636245,0.9256104053334328,0.9253017976881094,0.9249933820542878,0.9246851582588115,0.9243771261287339,0.924069285491318,0.9237616361740354,0.9234541780045665,0.9231469108108002,0.9228398344208336,0.9225329486629711,0.922226253365725,0.9219197483578141,0.9216134334681643,0.9213073085259078,0.9210013733603829,0.920695627801134,0.92039007167791,0.920084704820666,0.919779527059561,0.9194745382249591,0.9191697381474281,0.91886512665774,0.9185607035868698,0.9182564687659964,0.9179524220265008,0.917648563199967,0.9173448921181809,0.9170414086131308,0.9167381125170061,0.9164350036621974,0.9161320818812971,0.9158293470070973,0.9155267988725905,0.9152244373109699,0.9149222621556277,0.9146202732401559,0.9143184703983454,0.9140168534641858,0.9137154222718653,0.9134141766557703,0.9131131164504848,0.9128122414907904,0.912511551611666,0.9122110466482874,0.9119107264360269,0.9116105908104533,0.9113106396073312,0.9110108726626207,0.9107112898124777,0.9104118908932529,0.9101126757414922,0.9098136441939351,0.9095147960875161,0.9092161312593633,0.908917649546798,0.9086193507873355,0.9083212348186835,0.9080233014787423,0.9077255506056051,0.9074279820375569,0.9071305956130741,0.9068333911708252,0.9065363685496695,0.9062395275886571,0.9059428681270292,0.9056463900042167,0.9053500930598408,0.9050539771337126,0.9047580420658322,0.904462287696389,0.9041667138657611,0.9038713204145156,0.9035761071834073,0.9032810740133793,0.9029862207455622,0.9026915472212742,0.9023970532820201,0.9021027387694923,0.9018086035255691,0.9015146473923151,0.9012208702119812,0.9009272718270034,0.9006338520800037,0.9003406108137888,0.9000475478713502,0.8997546630958643,0.8994619563306911,0.8991694274193753,0.898877076205645,0.8985849025334114,0.898292906246769,0.8980010871899954,0.8977094452075505,0.8974179801440767,0.897126691844398,0.8968355801535206,0.8965446449166316,0.8962538859791002,0.8959633031864754,0.8956728963844875,0.8953826654190472,0.8950926101362449,0.894802730382351,0.8945130260038152,0.894223496847267,0.8939341427595145,0.8936449635875442,0.893355959178522,0.8930671293797907,0.8927784740388721,0.8924899930034652,0.8922016861214461,0.8919135532408686,0.8916255942099627,0.8913378088771354,0.8910501970909699,0.890762758700225,0.890475493553836,0.8901884015009133,0.8899014823907423,0.8896147360727839,0.8893281623966732,0.88904176121222,0.8887555323694083,0.8884694757183959,0.8881835911095142,0.8878978783932681,0.8876123374203357,0.887326968041568,0.8870417701079882,0.8867567434707923,0.886471887981348,0.8861872034911955,0.8859026898520457,0.8856183469157816,0.8853341745344567,0.8850501725602954,0.8847663408456932,0.8844826792432148,0.8841991876055962,0.8839158657857425,0.883632713636728,0.8833497310117971,0.8830669177643627,0.8827842737480064,0.8825017988164786,0.8822194928236978,0.881937355623751,0.8816553870708921,0.881373587019543],"x":[0.8,0.800398406374502,0.8007968127490039,0.801195219123506,0.801593625498008,0.80199203187251,0.802390438247012,0.8027888446215139,0.803187250996016,0.8035856573705179,0.80398406374502,0.8043824701195219,0.8047808764940239,0.8051792828685259,0.8055776892430279,0.8059760956175299,0.8063745019920319,0.8067729083665338,0.8071713147410359,0.8075697211155378,0.8079681274900399,0.8083665338645418,0.8087649402390438,0.8091633466135458,0.8095617529880478,0.8099601593625498,0.8103585657370518,0.8107569721115537,0.8111553784860558,0.8115537848605577,0.8119521912350598,0.8123505976095617,0.8127490039840638,0.8131474103585657,0.8135458167330677,0.8139442231075698,0.8143426294820717,0.8147410358565738,0.8151394422310757,0.8155378486055777,0.8159362549800797,0.8163346613545817,0.8167330677290837,0.8171314741035857,0.8175298804780876,0.8179282868525897,0.8183266932270916,0.8187250996015937,0.8191235059760956,0.8195219123505976,0.8199203187250996,0.8203187250996016,0.8207171314741036,0.8211155378486056,0.8215139442231075,0.8219123505976096,0.8223107569721115,0.8227091633466136,0.8231075697211155,0.8235059760956175,0.8239043824701195,0.8243027888446215,0.8247011952191236,0.8250996015936255,0.8254980079681274,0.8258964143426295,0.8262948207171315,0.8266932270916335,0.8270916334661355,0.8274900398406374,0.8278884462151395,0.8282868525896414,0.8286852589641435,0.8290836653386454,0.8294820717131474,0.8298804780876494,0.8302788844621514,0.8306772908366534,0.8310756972111554,0.8314741035856573,0.8318725099601594,0.8322709163346613,0.8326693227091634,0.8330677290836653,0.8334661354581673,0.8338645418326693,0.8342629482071713,0.8346613545816733,0.8350597609561753,0.8354581673306772,0.8358565737051793,0.8362549800796812,0.8366533864541833,0.8370517928286852,0.8374501992031872,0.8378486055776893,0.8382470119521912,0.8386454183266933,0.8390438247011952,0.8394422310756973,0.8398406374501992,0.8402390438247012,0.8406374501992032,0.8410358565737052,0.8414342629482072,0.8418326693227092,0.8422310756972111,0.8426294820717132,0.8430278884462151,0.8434262948207172,0.8438247011952191,0.8442231075697211,0.8446215139442231,0.8450199203187251,0.8454183266932271,0.8458167330677291,0.846215139442231,0.8466135458167331,0.847011952191235,0.8474103585657371,0.847808764940239,0.848207171314741,0.848605577689243,0.849003984063745,0.8494023904382471,0.849800796812749,0.850199203187251,0.850597609561753,0.850996015936255,0.851394422310757,0.851792828685259,0.8521912350597609,0.852589641434263,0.8529880478087649,0.853386454183267,0.8537848605577689,0.8541832669322709,0.8545816733067729,0.8549800796812749,0.8553784860557769,0.8557768924302789,0.8561752988047808,0.8565737051792829,0.8569721115537848,0.8573705179282869,0.8577689243027888,0.8581673306772908,0.8585657370517928,0.8589641434262948,0.8593625498007968,0.8597609561752988,0.8601593625498007,0.8605577689243028,0.8609561752988047,0.8613545816733068,0.8617529880478088,0.8621513944223107,0.8625498007968128,0.8629482071713147,0.8633466135458168,0.8637450199203187,0.8641434262948208,0.8645418326693227,0.8649402390438247,0.8653386454183267,0.8657370517928287,0.8661354581673307,0.8665338645418327,0.8669322709163346,0.8673306772908367,0.8677290836653386,0.8681274900398407,0.8685258964143426,0.8689243027888446,0.8693227091633466,0.8697211155378486,0.8701195219123506,0.8705179282868526,0.8709163346613545,0.8713147410358566,0.8717131474103585,0.8721115537848606,0.8725099601593626,0.8729083665338645,0.8733067729083666,0.8737051792828685,0.8741035856573706,0.8745019920318725,0.8749003984063745,0.8752988047808765,0.8756972111553785,0.8760956175298805,0.8764940239043825,0.8768924302788844,0.8772908366533865,0.8776892430278884,0.8780876494023905,0.8784860557768924,0.8788844621513944,0.8792828685258964,0.8796812749003984,0.8800796812749004,0.8804780876494024,0.8808764940239043,0.8812749003984064,0.8816733067729083,0.8820717131474104,0.8824701195219123,0.8828685258964143,0.8832669322709163,0.8836653386454183,0.8840637450199204,0.8844621513944223,0.8848605577689242,0.8852589641434263,0.8856573705179283,0.8860557768924303,0.8864541832669323,0.8868525896414342,0.8872509960159363,0.8876494023904382,0.8880478087649403,0.8884462151394422,0.8888446215139443,0.8892430278884462,0.8896414342629482,0.8900398406374502,0.8904382470119522,0.8908366533864542,0.8912350597609562,0.8916334661354581,0.8920318725099602,0.8924302788844621,0.8928286852589642,0.8932270916334661,0.8936254980079681,0.8940239043824701,0.8944223107569721,0.8948207171314742,0.8952191235059761,0.895617529880478,0.8960159362549801,0.896414342629482,0.8968127490039841,0.8972111553784861,0.897609561752988,0.8980079681274901,0.898406374501992,0.8988047808764941,0.899203187250996,0.899601593625498,0.9,0.900398406374502,0.900796812749004,0.901195219123506,0.9015936254980079,0.90199203187251,0.9023904382470119,0.902788844621514,0.9031872509960159,0.9035856573705179,0.9039840637450199,0.9043824701195219,0.904780876494024,0.9051792828685259,0.9055776892430278,0.9059760956175299,0.9063745019920318,0.9067729083665339,0.9071713147410359,0.9075697211155378,0.9079681274900399,0.9083665338645418,0.9087649402390439,0.9091633466135458,0.9095617529880478,0.9099601593625498,0.9103585657370518,0.9107569721115538,0.9111553784860558,0.9115537848605577,0.9119521912350598,0.9123505976095617,0.9127490039840638,0.9131474103585657,0.9135458167330678,0.9139442231075697,0.9143426294820717,0.9147410358565737,0.9151394422310757,0.9155378486055777,0.9159362549800797,0.9163346613545816,0.9167330677290837,0.9171314741035856,0.9175298804780877,0.9179282868525896,0.9183266932270916,0.9187250996015937,0.9191235059760956,0.9195219123505977,0.9199203187250996,0.9203187250996016,0.9207171314741036,0.9211155378486056,0.9215139442231076,0.9219123505976096,0.9223107569721115,0.9227091633466136,0.9231075697211155,0.9235059760956176,0.9239043824701195,0.9243027888446215,0.9247011952191235,0.9250996015936255,0.9254980079681275,0.9258964143426295,0.9262948207171314,0.9266932270916335,0.9270916334661354,0.9274900398406375,0.9278884462151394,0.9282868525896414,0.9286852589641434,0.9290836653386454,0.9294820717131475,0.9298804780876494,0.9302788844621513,0.9306772908366534,0.9310756972111554,0.9314741035856574,0.9318725099601594,0.9322709163346613,0.9326693227091634,0.9330677290836653,0.9334661354581674,0.9338645418326693,0.9342629482071713,0.9346613545816733,0.9350597609561753,0.9354581673306773,0.9358565737051793,0.9362549800796812,0.9366533864541833,0.9370517928286852,0.9374501992031873,0.9378486055776892,0.9382470119521913,0.9386454183266932,0.9390438247011952,0.9394422310756972,0.9398406374501992,0.9402390438247012,0.9406374501992032,0.9410358565737051,0.9414342629482072,0.9418326693227091,0.9422310756972112,0.9426294820717132,0.9430278884462151,0.9434262948207172,0.9438247011952191,0.9442231075697212,0.9446215139442231,0.9450199203187251,0.9454183266932271,0.9458167330677291,0.9462151394422311,0.9466135458167331,0.947011952191235,0.9474103585657371,0.947808764940239,0.9482071713147411,0.948605577689243,0.949003984063745,0.949402390438247,0.949800796812749,0.950199203187251,0.950597609561753,0.9509960159362549,0.951394422310757,0.9517928286852589,0.952191235059761,0.952589641434263,0.9529880478087649,0.953386454183267,0.9537848605577689,0.954183266932271,0.9545816733067729,0.9549800796812749,0.9553784860557769,0.9557768924302789,0.9561752988047809,0.9565737051792829,0.9569721115537848,0.9573705179282869,0.9577689243027888,0.9581673306772909,0.9585657370517928,0.9589641434262948,0.9593625498007968,0.9597609561752988,0.9601593625498008,0.9605577689243028,0.9609561752988047,0.9613545816733068,0.9617529880478087,0.9621513944223108,0.9625498007968127,0.9629482071713148,0.9633466135458167,0.9637450199203187,0.9641434262948207,0.9645418326693227,0.9649402390438248,0.9653386454183267,0.9657370517928286,0.9661354581673307,0.9665338645418327,0.9669322709163347,0.9673306772908367,0.9677290836653386,0.9681274900398407,0.9685258964143426,0.9689243027888447,0.9693227091633466,0.9697211155378486,0.9701195219123506,0.9705179282868526,0.9709163346613546,0.9713147410358566,0.9717131474103585,0.9721115537848606,0.9725099601593625,0.9729083665338646,0.9733067729083665,0.9737051792828685,0.9741035856573705,0.9745019920318725,0.9749003984063745,0.9752988047808765,0.9756972111553784,0.9760956175298805,0.9764940239043824,0.9768924302788845,0.9772908366533865,0.9776892430278884,0.9780876494023905,0.9784860557768924,0.9788844621513945,0.9792828685258964,0.9796812749003984,0.9800796812749004,0.9804780876494024,0.9808764940239044,0.9812749003984064,0.9816733067729083,0.9820717131474104,0.9824701195219123,0.9828685258964144,0.9832669322709163,0.9836653386454183,0.9840637450199203,0.9844621513944223,0.9848605577689243,0.9852589641434263,0.9856573705179282,0.9860557768924303,0.9864541832669322,0.9868525896414343,0.9872509960159362,0.9876494023904383,0.9880478087649402,0.9884462151394422,0.9888446215139443,0.9892430278884462,0.9896414342629483,0.9900398406374502,0.9904382470119522,0.9908366533864542,0.9912350597609562,0.9916334661354582,0.9920318725099602,0.9924302788844621,0.9928286852589642,0.9932270916334661,0.9936254980079682,0.9940239043824701,0.9944223107569721,0.9948207171314741,0.9952191235059761,0.9956175298804781,0.9960159362549801,0.996414342629482,0.9968127490039841,0.997211155378486,0.9976095617529881,0.99800796812749,0.998406374501992,0.998804780876494,0.999203187250996,0.999601593625498,1.0]} +{"expected":[1.047593,1.0472043,1.0468158,1.0464276,1.0460397,1.045652,1.0452645,1.0448774,1.0444906,1.044104,1.0437176,1.0433316,1.0429457,1.0425603,1.0421749,1.04179,1.0414053,1.0410209,1.0406367,1.0402526,1.039869,1.0394855,1.0391023,1.0387195,1.0383369,1.0379544,1.0375724,1.0371906,1.036809,1.0364276,1.0360466,1.0356659,1.0352852,1.034905,1.0345249,1.0341452,1.0337657,1.0333865,1.0330075,1.0326288,1.0322504,1.0318722,1.0314943,1.0311166,1.0307391,1.030362,1.0299851,1.0296084,1.029232,1.0288559,1.02848,1.0281044,1.027729,1.0273539,1.026979,1.0266045,1.0262301,1.025856,1.0254822,1.0251085,1.0247352,1.0243622,1.0239893,1.0236167,1.0232445,1.0228723,1.0225005,1.022129,1.0217577,1.0213866,1.0210158,1.0206453,1.0202749,1.019905,1.0195351,1.0191655,1.0187962,1.0184271,1.0180583,1.0176897,1.0173215,1.0169535,1.0165856,1.0162181,1.0158508,1.0154836,1.0151168,1.0147502,1.0143839,1.0140178,1.013652,1.0132865,1.0129211,1.012556,1.012191,1.0118265,1.0114621,1.011098,1.0107342,1.0103705,1.0100071,1.0096439,1.009281,1.0089184,1.008556,1.0081939,1.0078319,1.0074703,1.0071087,1.0067476,1.0063866,1.0060259,1.0056653,1.0053052,1.004945,1.0045854,1.0042259,1.0038667,1.0035076,1.0031487,1.0027902,1.0024319,1.0020738,1.001716,1.0013584,1.001001,1.0006438,1.0002869,0.9999303,0.9995739,0.9992177,0.9988618,0.99850607,0.9981506,0.99779534,0.99744034,0.9970856,0.99673104,0.9963767,0.9960226,0.9956688,0.99531525,0.99496186,0.99460876,0.9942559,0.99390316,0.99355084,0.9931986,0.9928466,0.99249494,0.9921435,0.99179214,0.9914411,0.9910903,0.99073976,0.9903894,0.9900393,0.98968947,0.9893398,0.98899037,0.9886412,0.9882922,0.98794353,0.987595,0.98724675,0.9868987,0.98655087,0.9862033,0.985856,0.98550886,0.98516196,0.9848153,0.9844688,0.98412263,0.9837766,0.98343086,0.9830854,0.9827401,0.982395,0.9820501,0.9817055,0.9813611,0.98101693,0.980673,0.9803292,0.97998565,0.9796424,0.97929937,0.9789565,0.9786139,0.97827154,0.9779294,0.97758746,0.97724575,0.9769042,0.976563,0.976222,0.9758811,0.9755405,0.97520006,0.97485995,0.97452,0.9741803,0.9738408,0.9735015,0.97316235,0.9728236,0.972485,0.9721466,0.97180843,0.9714705,0.97113276,0.9707952,0.9704579,0.9701208,0.96978396,0.9694473,0.9691109,0.9687747,0.9684386,0.96810293,0.9677673,0.96743196,0.96709687,0.96676195,0.9664272,0.9660927,0.9657585,0.9654244,0.96509063,0.964757,0.96442366,0.96409047,0.9637574,0.96342474,0.9630922,0.96275985,0.96242774,0.9620959,0.96176416,0.9614327,0.96110135,0.9607703,0.9604395,0.9601089,0.9597784,0.9594482,0.9591183,0.9587885,0.95845896,0.95812964,0.95780045,0.9574715,0.9571428,0.9568143,0.95648605,0.9561579,0.95583004,0.9555024,0.9551749,0.95484763,0.9545206,0.9541937,0.9538672,0.9535407,0.9532145,0.9528885,0.95256263,0.9522371,0.95191175,0.9515866,0.95126164,0.95093685,0.95061225,0.950288,0.9499638,0.9496399,0.9493162,0.9489927,0.9486693,0.9483462,0.9480233,0.9477006,0.94737816,0.94705594,0.9467338,0.94641185,0.9460903,0.9457688,0.94544756,0.9451264,0.9448056,0.9444849,0.94416445,0.9438442,0.9435241,0.9432043,0.9428847,0.94256526,0.94224596,0.941927,0.94160813,0.9412894,0.9409711,0.94065285,0.94033486,0.9400169,0.93969935,0.93938196,0.9390647,0.93874764,0.93843085,0.93811417,0.9377977,0.9374815,0.9371655,0.9368496,0.93653405,0.9362185,0.9359033,0.93558824,0.9352734,0.9349588,0.9346443,0.9343301,0.93401605,0.9337022,0.9333885,0.933075,0.9327618,0.93244874,0.9321359,0.9318232,0.9315106,0.93119836,0.9308863,0.9305744,0.9302626,0.9299512,0.9296398,0.92932874,0.9290178,0.92870706,0.9283965,0.9280862,0.9277761,0.92746603,0.9271563,0.9268468,0.92653733,0.9262283,0.9259192,0.92561036,0.9253018,0.9249934,0.9246851,0.9243771,0.9240693,0.92376167,0.9234541,0.9231469,0.9228399,0.922533,0.9222263,0.92191976,0.92161345,0.92130727,0.9210014,0.9206956,0.92039007,0.92008466,0.9197796,0.9194745,0.9191697,0.9188651,0.9185607,0.9182565,0.9179525,0.9176486,0.91734487,0.9170414,0.9167381,0.91643494,0.91613215,0.91582936,0.9155268,0.9152244,0.91492224,0.9146203,0.9143185,0.9140169,0.9137155,0.9134142,0.9131132,0.9128123,0.9125115,0.912211,0.9119108,0.9116106,0.9113106,0.9110108,0.9107113,0.9104119,0.9101127,0.90981364,0.9095148,0.9092161,0.90891767,0.90861934,0.9083212,0.90802336,0.9077255,0.90742797,0.9071306,0.90683335,0.90653646,0.9062395,0.9059429,0.9056464,0.90535,0.9050539,0.904758,0.9044623,0.9041667,0.90387136,0.9035761,0.90328103,0.9029862,0.9026915,0.9023971,0.90210277,0.9018086,0.9015147,0.90122086,0.90092725,0.9006338,0.9003407,0.9000476,0.8997547,0.8994619,0.8991694,0.8988771,0.89858484,0.8982929,0.89800113,0.8977094,0.89741796,0.8971267,0.89683557,0.8965447,0.8962539,0.89596325,0.89567286,0.89538264,0.8950926,0.89480275,0.8945131,0.8942235,0.89393413,0.893645,0.89335597,0.8930671,0.89277846,0.89249,0.89220166,0.89191353,0.8916256,0.8913379,0.8910502,0.8907628,0.8904755,0.89018846,0.8899015,0.8896147,0.8893282,0.8890418,0.8887556,0.8884695,0.8881836,0.88789785,0.88761234,0.88732696,0.88704175,0.8867568,0.8864719,0.88618726,0.8859027,0.88561827,0.88533413,0.8850502,0.88476634,0.88448274,0.88419914,0.8839159,0.88363266,0.8833498,0.88306695,0.8827843,0.88250184,0.88221943,0.8819373,0.88165534,0.8813736],"x":[0.8,0.8003984,0.8007968,0.8011952,0.8015936,0.80199206,0.80239046,0.80278885,0.80318725,0.80358565,0.80398405,0.80438244,0.8047809,0.8051793,0.8055777,0.8059761,0.8063745,0.8067729,0.8071713,0.80756974,0.80796814,0.80836654,0.80876493,0.80916333,0.8095617,0.8099602,0.8103586,0.810757,0.8111554,0.8115538,0.8119522,0.8123506,0.812749,0.8131474,0.8135458,0.8139442,0.8143426,0.814741,0.8151394,0.81553787,0.81593627,0.81633466,0.81673306,0.81713146,0.81752986,0.8179283,0.8183267,0.8187251,0.8191235,0.8195219,0.8199203,0.8203187,0.82071716,0.82111555,0.82151395,0.82191235,0.82231075,0.82270914,0.82310754,0.823506,0.8239044,0.8243028,0.8247012,0.8250996,0.825498,0.82589644,0.82629484,0.82669324,0.82709163,0.82749003,0.8278884,0.8282868,0.8286853,0.8290837,0.8294821,0.8298805,0.8302789,0.8306773,0.83107567,0.8314741,0.8318725,0.8322709,0.8326693,0.8330677,0.8334661,0.83386457,0.83426297,0.83466136,0.83505976,0.83545816,0.83585656,0.83625495,0.8366534,0.8370518,0.8374502,0.8378486,0.838247,0.8386454,0.8390438,0.83944225,0.83984065,0.84023905,0.84063745,0.84103584,0.84143424,0.8418327,0.8422311,0.8426295,0.8430279,0.8434263,0.8438247,0.8442231,0.84462154,0.84501994,0.84541833,0.84581673,0.8462151,0.8466135,0.8470119,0.8474104,0.8478088,0.8482072,0.8486056,0.849004,0.84940237,0.8498008,0.8501992,0.8505976,0.850996,0.8513944,0.8517928,0.8521912,0.85258967,0.85298806,0.85338646,0.85378486,0.85418326,0.85458165,0.85498005,0.8553785,0.8557769,0.8561753,0.8565737,0.8569721,0.8573705,0.85776895,0.85816735,0.85856575,0.85896415,0.85936254,0.85976094,0.86015934,0.8605578,0.8609562,0.8613546,0.861753,0.8621514,0.8625498,0.8629482,0.86334664,0.86374503,0.86414343,0.8645418,0.8649402,0.8653386,0.8657371,0.8661355,0.8665339,0.8669323,0.8673307,0.86772907,0.86812747,0.8685259,0.8689243,0.8693227,0.8697211,0.8701195,0.8705179,0.8709163,0.87131476,0.87171316,0.87211156,0.87250996,0.87290835,0.87330675,0.8737052,0.8741036,0.874502,0.8749004,0.8752988,0.8756972,0.8760956,0.87649405,0.87689245,0.87729084,0.87768924,0.87808764,0.87848604,0.87888443,0.8792829,0.8796813,0.8800797,0.8804781,0.8808765,0.8812749,0.88167334,0.88207173,0.88247013,0.8828685,0.8832669,0.8836653,0.8840637,0.8844622,0.8848606,0.885259,0.88565737,0.88605577,0.88645416,0.88685256,0.887251,0.8876494,0.8880478,0.8884462,0.8888446,0.889243,0.88964146,0.89003986,0.89043826,0.89083666,0.89123505,0.89163345,0.89203185,0.8924303,0.8928287,0.8932271,0.8936255,0.8940239,0.8944223,0.8948207,0.89521915,0.89561754,0.89601594,0.89641434,0.89681274,0.89721113,0.8976096,0.898008,0.8984064,0.8988048,0.8992032,0.8996016,0.9,0.90039843,0.90079683,0.9011952,0.9015936,0.901992,0.9023904,0.9027888,0.9031873,0.9035857,0.90398407,0.90438247,0.90478086,0.90517926,0.90557766,0.9059761,0.9063745,0.9067729,0.9071713,0.9075697,0.9079681,0.90836656,0.90876496,0.90916336,0.90956175,0.90996015,0.91035855,0.91075695,0.9111554,0.9115538,0.9119522,0.9123506,0.912749,0.9131474,0.9135458,0.91394424,0.91434264,0.91474104,0.91513944,0.91553783,0.91593623,0.9163347,0.9167331,0.9171315,0.9175299,0.9179283,0.9183267,0.9187251,0.91912353,0.9195219,0.9199203,0.9203187,0.9207171,0.9211155,0.9215139,0.9219124,0.92231077,0.92270917,0.92310756,0.92350596,0.92390436,0.9243028,0.9247012,0.9250996,0.925498,0.9258964,0.9262948,0.9266932,0.92709166,0.92749006,0.92788845,0.92828685,0.92868525,0.92908365,0.92948204,0.9298805,0.9302789,0.9306773,0.9310757,0.9314741,0.9318725,0.93227094,0.93266934,0.93306774,0.93346614,0.93386453,0.93426293,0.9346613,0.9350598,0.9354582,0.9358566,0.936255,0.9366534,0.9370518,0.9374502,0.9378486,0.938247,0.9386454,0.9390438,0.9394422,0.9398406,0.9402391,0.94063747,0.94103587,0.94143426,0.94183266,0.94223106,0.94262946,0.9430279,0.9434263,0.9438247,0.9442231,0.9446215,0.9450199,0.9454183,0.94581676,0.94621515,0.94661355,0.94701195,0.94741035,0.94780874,0.9482072,0.9486056,0.949004,0.9494024,0.9498008,0.9501992,0.9505976,0.95099604,0.95139444,0.95179284,0.95219123,0.95258963,0.952988,0.9533864,0.9537849,0.9541833,0.9545817,0.9549801,0.9553785,0.9557769,0.9561753,0.9565737,0.9569721,0.9573705,0.9577689,0.9581673,0.9585657,0.95896417,0.95936257,0.95976096,0.96015936,0.96055776,0.96095616,0.96135455,0.961753,0.9621514,0.9625498,0.9629482,0.9633466,0.963745,0.96414346,0.96454185,0.96494025,0.96533865,0.96573704,0.96613544,0.96653384,0.9669323,0.9673307,0.9677291,0.9681275,0.9685259,0.9689243,0.9693227,0.96972114,0.97011954,0.97051793,0.97091633,0.9713147,0.9717131,0.9721116,0.97251,0.9729084,0.9733068,0.9737052,0.97410357,0.97450197,0.9749004,0.9752988,0.9756972,0.9760956,0.976494,0.9768924,0.9772908,0.97768927,0.97808766,0.97848606,0.97888446,0.97928286,0.97968125,0.9800797,0.9804781,0.9808765,0.9812749,0.9816733,0.9820717,0.9824701,0.98286855,0.98326695,0.98366535,0.98406374,0.98446214,0.98486054,0.98525894,0.9856574,0.9860558,0.9864542,0.9868526,0.987251,0.9876494,0.98804784,0.98844624,0.98884463,0.98924303,0.9896414,0.9900398,0.9904382,0.9908367,0.9912351,0.9916335,0.9920319,0.99243027,0.99282867,0.99322706,0.9936255,0.9940239,0.9944223,0.9948207,0.9952191,0.9956175,0.99601597,0.99641436,0.99681276,0.99721116,0.99760956,0.99800795,0.99840635,0.9988048,0.9992032,0.9996016,1.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json index b06547e25f72..c0b7b0a6f47f 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/smaller.json @@ -1 +1 @@ -{"expected":[-1.0475930126492587,-1.050712682982123,-1.0538497262810698,-1.0570042855481372,-1.0601765054206598,-1.0633665321965549,-1.0665745138601146,-1.069800600108321,-1.0730449423776909,-1.076307693871669,-1.0795890095885794,-1.0828890463501508,-1.086207962830632,-1.0895459195865074,-1.0929030790868344,-1.0962796057442115,-1.0996756659464004,-1.1030914280886135,-1.1065270626064847,-1.1099827420097463,-1.1134586409166232,-1.1169549360889668,-1.1204718064681511,-1.1240094332117447,-1.127567999730982,-1.131147691729059,-1.1347486972402698,-1.1383712066700087,-1.142015412835662,-1.1456815110084138,-1.1493696989559892,-1.1530801769863606,-1.1568131479924475,-1.1605688174978306,-1.1643473937035136,-1.1681490875357614,-1.1719741126950416,-1.1758226857061038,-1.179695025969228,-1.183591355812675,-1.1875119005463703,-1.191456888516865,-1.1954265511636004,-1.1994211230765215,-1.203440842055075,-1.2074859491686345,-1.2115566888183915,-1.2156533088007604,-1.2197760603723382,-1.2239251983164667,-1.2281009810114456,-1.2323036705004458,-1.236533532563175,-1.2407908367893474,-1.2450758566540145,-1.249388869594812,-1.2537301570911854,-1.2581000047456496,-1.262498702367156,-1.2669265440566195,-1.2713838282946874,-1.275870858031811,-1.2803879407806988,-1.2849353887112231,-1.2895135187478657,-1.294122652669777,-1.2987631172135379,-1.3034352441787138,-1.3081393705362876,-1.3128758385400723,-1.3176449958411993,-1.3224471956057846,-1.327282796635882,-1.3321521634938303,-1.337055666630116,-1.3419936825148653,-1.3469665937730917,-1.3519747893238334,-1.3570186645233069,-1.3620986213122275,-1.3672150683674316,-1.3723684212579652,-1.377559102605784,-1.3827875422512423,-1.3880541774235347,-1.3933594529162727,-1.3987038212683809,-1.4040877429505136,-1.4095116865571848,-1.4149761290048337,-1.4204815557360393,-1.4260284609301177,-1.4316173477203453,-1.4372487284180535,-1.4429231247438616,-1.4486410680663229,-1.4544030996482675,-1.4602097709011446,-1.466061643647673,-1.4719592903931373,-1.4779032946056583,-1.4838942510058106,-1.489932765865954,-1.4960194573196761,-1.5021549556817557,-1.5083399037790812,-1.5145749572929765,-1.5208607851134044,-1.5271980697055525,-1.5335875074893164,-1.5400298092322338,-1.5465257004564403,-1.5530759218602537,-1.559681229755021,-1.5663423965178944,-1.573060211061235,-1.5798354793193878,-1.5866690247535986,-1.5935616888758881,-1.6005143317927486,-1.6075278327695617,-1.6146030908166964,-1.62174102529829,-1.6289425765647698,-1.6362087066102415,-1.6435403997559153,-1.6509386633608214,-1.6584045285611297,-1.6659390510394652,-1.6735433118256844,-1.6812184181306762,-1.6889655042148244,-1.6967857322928765,-1.704680293477065,-1.7126504087604317,-1.720697330042429,-1.728822341198995,-1.7370267591994346,-1.7453119352725794,-1.7536792561248595,-1.7621301452130778,-1.7706660640748606,-1.779288513719947,-1.7879990360856772,-1.796799215560272,-1.8056906805777135,-1.8146751052883139,-1.8237542113093035,-1.8329297695600908,-1.8422036021871446,-1.851577584583801,-1.8610536475106614,-1.8706337793226486,-1.8803200283092214,-1.8901145051547088,-1.9000193855262368,-1.9100369127972634,-1.9201694009153352,-1.9304192374233167,-1.9407888866440572,-1.9512808930392047,-1.9618978847537207,-1.972642577358542,-1.983517777804828,-1.9945263886043028,-2.0056714122513735,-2.016955955904001,-2.0283832363416896,-2.0399565852205135,-2.0516794546467865,-2.0635554230928377,-2.0755882016803837,-2.0877816408592564,-2.1001397375117006,-2.1126666425151903,-2.1253666687997366,-2.1382442999389815,-2.151304199318072,-2.164551219925413,-2.17799041481992,-2.1916270483304747,-2.2054666080499064,-2.2195148176920854,-2.233777650887757,-2.248261346002553,-2.26297242206943,-2.277917695937627,-2.2931043007513177,-2.308539705883625,-2.324231738465722,-2.3401886066666675,-2.3564189248976164,-2.3729317411345057,-2.389736566576514,-2.406843407884078,-2.4242628022704427,-2.4420058557552893,-2.4600842849286226,-2.478510462618673,-2.4972974679100637,-2.51645914101918,-2.536010143603957,-2.5559660251669443,-2.57634329630564,-2.597159509675202,-2.618433349658955,-2.6401847318952565,-2.6624349139900443,-2.6852066189583574,-2.7085241731924,-2.732413661057043,-2.756903098576883,-2.7820226291158683,-2.807804744478142,-2.834284535499068,-2.861499976976091,-2.8894922527458418,-2.9183061278925857,-2.9479903765334856,-2.9785982754462124,-3.01018817608706,-3.042824170429464,-3.0765768697167064,-3.1115243199157074,-3.1477530837184227,-3.1853595268280137,-3.224451356635561,-3.2651494751510466,-3.3075902264993444,-3.3519281443061937,-3.398339338633899,-3.4470257098804122,-3.498220244433146,-3.5521937434361215,-3.6092634768305305,-3.6698044640515506,-3.7342644002456393,-3.8031837400156534,-3.8772232370258037,-3.957202529247597,-4.044155553366893,-4.139412445542508,-4.244724741243645,-4.362464626815531,-4.4959579411973225,-4.650075616362258,-4.832369243581718,-5.0554899416852015,-5.343154238334272,-5.748606648860114,-6.441746210638492,null,6.441746210638492,5.748606648860114,5.343154238334272,5.0554899416852015,4.832369243581718,4.650075616362258,4.4959579411973225,4.362464626815531,4.244724741243645,4.139412445542508,4.044155553366893,3.957202529247597,3.8772232370258037,3.8031837400156534,3.7342644002456393,3.6698044640515506,3.6092634768305305,3.5521937434361215,3.498220244433146,3.4470257098804122,3.398339338633899,3.3519281443061937,3.3075902264993444,3.2651494751510466,3.224451356635561,3.1853595268280137,3.1477530837184227,3.1115243199157074,3.0765768697167064,3.042824170429464,3.01018817608706,2.9785982754462124,2.9479903765334856,2.9183061278925857,2.8894922527458418,2.861499976976091,2.834284535499068,2.807804744478142,2.7820226291158683,2.756903098576883,2.732413661057043,2.7085241731924,2.6852066189583574,2.6624349139900443,2.6401847318952565,2.618433349658955,2.597159509675202,2.57634329630564,2.5559660251669443,2.536010143603957,2.51645914101918,2.4972974679100637,2.478510462618673,2.4600842849286226,2.4420058557552893,2.4242628022704427,2.406843407884078,2.389736566576514,2.3729317411345057,2.3564189248976164,2.3401886066666675,2.324231738465722,2.308539705883625,2.2931043007513177,2.277917695937627,2.26297242206943,2.248261346002553,2.233777650887757,2.2195148176920854,2.2054666080499064,2.1916270483304747,2.17799041481992,2.164551219925413,2.151304199318072,2.1382442999389815,2.1253666687997366,2.1126666425151903,2.1001397375117006,2.0877816408592564,2.0755882016803837,2.0635554230928377,2.0516794546467865,2.0399565852205135,2.0283832363416896,2.016955955904001,2.0056714122513735,1.9945263886043028,1.983517777804828,1.972642577358542,1.9618978847537207,1.9512808930392047,1.9407888866440572,1.9304192374233167,1.9201694009153352,1.9100369127972634,1.9000193855262368,1.8901145051547088,1.8803200283092214,1.8706337793226486,1.8610536475106614,1.851577584583801,1.8422036021871446,1.8329297695600908,1.8237542113093035,1.8146751052883139,1.8056906805777135,1.796799215560272,1.7879990360856772,1.779288513719947,1.7706660640748606,1.7621301452130778,1.7536792561248595,1.7453119352725794,1.7370267591994346,1.728822341198995,1.720697330042429,1.7126504087604317,1.704680293477065,1.6967857322928765,1.6889655042148244,1.6812184181306762,1.6735433118256844,1.6659390510394652,1.6584045285611297,1.6509386633608214,1.6435403997559153,1.6362087066102415,1.6289425765647698,1.62174102529829,1.6146030908166964,1.6075278327695617,1.6005143317927486,1.5935616888758881,1.5866690247535986,1.5798354793193878,1.573060211061235,1.5663423965178944,1.559681229755021,1.5530759218602537,1.5465257004564403,1.5400298092322338,1.5335875074893164,1.5271980697055525,1.5208607851134044,1.5145749572929765,1.5083399037790812,1.5021549556817557,1.4960194573196761,1.489932765865954,1.4838942510058106,1.4779032946056583,1.4719592903931373,1.466061643647673,1.4602097709011446,1.4544030996482675,1.4486410680663229,1.4429231247438616,1.4372487284180535,1.4316173477203453,1.4260284609301177,1.4204815557360393,1.4149761290048337,1.4095116865571848,1.4040877429505136,1.3987038212683809,1.3933594529162727,1.3880541774235347,1.3827875422512423,1.377559102605784,1.3723684212579652,1.3672150683674316,1.3620986213122275,1.3570186645233069,1.3519747893238334,1.3469665937730917,1.3419936825148653,1.337055666630116,1.3321521634938303,1.327282796635882,1.3224471956057846,1.3176449958411993,1.3128758385400723,1.3081393705362876,1.3034352441787138,1.2987631172135379,1.294122652669777,1.2895135187478657,1.2849353887112231,1.2803879407806988,1.275870858031811,1.2713838282946874,1.2669265440566195,1.262498702367156,1.2581000047456496,1.2537301570911854,1.249388869594812,1.2450758566540145,1.2407908367893474,1.236533532563175,1.2323036705004458,1.2281009810114456,1.2239251983164667,1.2197760603723382,1.2156533088007604,1.2115566888183915,1.2074859491686345,1.203440842055075,1.1994211230765215,1.1954265511636004,1.191456888516865,1.1875119005463703,1.183591355812675,1.179695025969228,1.1758226857061038,1.1719741126950416,1.1681490875357614,1.1643473937035136,1.1605688174978306,1.1568131479924475,1.1530801769863606,1.1493696989559892,1.1456815110084138,1.142015412835662,1.1383712066700087,1.1347486972402698,1.131147691729059,1.127567999730982,1.1240094332117447,1.1204718064681511,1.1169549360889668,1.1134586409166232,1.1099827420097463,1.1065270626064847,1.1030914280886135,1.0996756659464004,1.0962796057442115,1.0929030790868344,1.0895459195865074,1.086207962830632,1.0828890463501508,1.0795890095885794,1.076307693871669,1.0730449423776909,1.069800600108321,1.0665745138601146,1.0633665321965549,1.0601765054206598,1.0570042855481372,1.0538497262810698,1.050712682982123,1.0475930126492587],"x":[-0.8,-0.796812749003984,-0.7936254980079681,-0.7904382470119522,-0.7872509960159363,-0.7840637450199203,-0.7808764940239044,-0.7776892430278884,-0.7745019920318725,-0.7713147410358566,-0.7681274900398406,-0.7649402390438247,-0.7617529880478088,-0.7585657370517929,-0.7553784860557768,-0.7521912350597609,-0.749003984063745,-0.7458167330677291,-0.7426294820717132,-0.7394422310756972,-0.7362549800796813,-0.7330677290836654,-0.7298804780876494,-0.7266932270916334,-0.7235059760956175,-0.7203187250996016,-0.7171314741035857,-0.7139442231075698,-0.7107569721115538,-0.7075697211155378,-0.7043824701195219,-0.701195219123506,-0.69800796812749,-0.6948207171314741,-0.6916334661354582,-0.6884462151394423,-0.6852589641434262,-0.6820717131474103,-0.6788844621513944,-0.6756972111553785,-0.6725099601593626,-0.6693227091633466,-0.6661354581673307,-0.6629482071713148,-0.6597609561752988,-0.6565737051792828,-0.6533864541832669,-0.650199203187251,-0.6470119521912351,-0.6438247011952192,-0.6406374501992032,-0.6374501992031872,-0.6342629482071713,-0.6310756972111554,-0.6278884462151394,-0.6247011952191235,-0.6215139442231076,-0.6183266932270917,-0.6151394422310758,-0.6119521912350597,-0.6087649402390438,-0.6055776892430279,-0.602390438247012,-0.599203187250996,-0.5960159362549801,-0.5928286852589641,-0.5896414342629482,-0.5864541832669322,-0.5832669322709163,-0.5800796812749004,-0.5768924302788845,-0.5737051792828686,-0.5705179282868525,-0.5673306772908366,-0.5641434262948207,-0.5609561752988048,-0.5577689243027888,-0.5545816733067729,-0.551394422310757,-0.5482071713147411,-0.5450199203187251,-0.5418326693227091,-0.5386454183266932,-0.5354581673306773,-0.5322709163346614,-0.5290836653386454,-0.5258964143426295,-0.5227091633466135,-0.5195219123505976,-0.5163346613545817,-0.5131474103585657,-0.5099601593625498,-0.5067729083665339,-0.503585657370518,-0.500398406374502,-0.49721115537848604,-0.4940239043824701,-0.49083665338645416,-0.48764940239043825,-0.48446215139442234,-0.48127490039840637,-0.47808764940239046,-0.4749003984063745,-0.4717131474103586,-0.4685258964143426,-0.4653386454183267,-0.46215139442231074,-0.4589641434262948,-0.45577689243027886,-0.45258964143426295,-0.44940239043824703,-0.44621513944223107,-0.44302788844621516,-0.4398406374501992,-0.4366533864541833,-0.4334661354581673,-0.4302788844621514,-0.42709163346613543,-0.4239043824701195,-0.4207171314741036,-0.41752988047808764,-0.41434262948207173,-0.41115537848605577,-0.40796812749003986,-0.4047808764940239,-0.401593625498008,-0.398406374501992,-0.3952191235059761,-0.39203187250996013,-0.3888446215139442,-0.3856573705179283,-0.38247011952191234,-0.37928286852589643,-0.37609561752988047,-0.37290836653386455,-0.3697211155378486,-0.3665338645418327,-0.3633466135458167,-0.3601593625498008,-0.3569721115537849,-0.3537848605577689,-0.350597609561753,-0.34741035856573704,-0.34422310756972113,-0.34103585657370517,-0.33784860557768925,-0.3346613545816733,-0.3314741035856574,-0.3282868525896414,-0.3250996015936255,-0.3219123505976096,-0.3187250996015936,-0.3155378486055777,-0.31235059760956174,-0.30916334661354583,-0.30597609561752986,-0.30278884462151395,-0.299601593625498,-0.2964143426294821,-0.2932270916334661,-0.2900398406374502,-0.2868525896414343,-0.2836653386454183,-0.2804780876494024,-0.27729083665338644,-0.27410358565737053,-0.27091633466135456,-0.26772908366533865,-0.2645418326693227,-0.2613545816733068,-0.25816733067729086,-0.2549800796812749,-0.251792828685259,-0.24860557768924302,-0.24541832669322708,-0.24223107569721117,-0.23904382470119523,-0.2358565737051793,-0.23266932270916335,-0.2294820717131474,-0.22629482071713147,-0.22310756972111553,-0.2199203187250996,-0.21673306772908366,-0.21354581673306772,-0.2103585657370518,-0.20717131474103587,-0.20398406374501993,-0.200796812749004,-0.19760956175298805,-0.1944223107569721,-0.19123505976095617,-0.18804780876494023,-0.1848605577689243,-0.18167330677290836,-0.17848605577689244,-0.1752988047808765,-0.17211155378486057,-0.16892430278884463,-0.1657370517928287,-0.16254980079681275,-0.1593625498007968,-0.15617529880478087,-0.15298804780876493,-0.149800796812749,-0.14661354581673305,-0.14342629482071714,-0.1402390438247012,-0.13705179282868526,-0.13386454183266933,-0.1306772908366534,-0.12749003984063745,-0.12430278884462151,-0.12111553784860558,-0.11792828685258964,-0.1147410358565737,-0.11155378486055777,-0.10836653386454183,-0.1051792828685259,-0.10199203187250996,-0.09880478087649402,-0.09561752988047809,-0.09243027888446215,-0.08924302788844622,-0.08605577689243028,-0.08286852589641434,-0.0796812749003984,-0.07649402390438247,-0.07330677290836653,-0.0701195219123506,-0.06693227091633466,-0.06374501992031872,-0.06055776892430279,-0.05737051792828685,-0.054183266932270914,-0.05099601593625498,-0.04780876494023904,-0.04462151394422311,-0.04143426294820717,-0.03824701195219123,-0.0350597609561753,-0.03187250996015936,-0.028685258964143426,-0.02549800796812749,-0.022310756972111555,-0.019123505976095617,-0.01593625498007968,-0.012749003984063745,-0.009561752988047808,-0.006374501992031873,-0.0031872509960159364,0.0,0.0031872509960159364,0.006374501992031873,0.009561752988047808,0.012749003984063745,0.01593625498007968,0.019123505976095617,0.022310756972111555,0.02549800796812749,0.028685258964143426,0.03187250996015936,0.0350597609561753,0.03824701195219123,0.04143426294820717,0.04462151394422311,0.04780876494023904,0.05099601593625498,0.054183266932270914,0.05737051792828685,0.06055776892430279,0.06374501992031872,0.06693227091633466,0.0701195219123506,0.07330677290836653,0.07649402390438247,0.0796812749003984,0.08286852589641434,0.08605577689243028,0.08924302788844622,0.09243027888446215,0.09561752988047809,0.09880478087649402,0.10199203187250996,0.1051792828685259,0.10836653386454183,0.11155378486055777,0.1147410358565737,0.11792828685258964,0.12111553784860558,0.12430278884462151,0.12749003984063745,0.1306772908366534,0.13386454183266933,0.13705179282868526,0.1402390438247012,0.14342629482071714,0.14661354581673305,0.149800796812749,0.15298804780876493,0.15617529880478087,0.1593625498007968,0.16254980079681275,0.1657370517928287,0.16892430278884463,0.17211155378486057,0.1752988047808765,0.17848605577689244,0.18167330677290836,0.1848605577689243,0.18804780876494023,0.19123505976095617,0.1944223107569721,0.19760956175298805,0.200796812749004,0.20398406374501993,0.20717131474103587,0.2103585657370518,0.21354581673306772,0.21673306772908366,0.2199203187250996,0.22310756972111553,0.22629482071713147,0.2294820717131474,0.23266932270916335,0.2358565737051793,0.23904382470119523,0.24223107569721117,0.24541832669322708,0.24860557768924302,0.251792828685259,0.2549800796812749,0.25816733067729086,0.2613545816733068,0.2645418326693227,0.26772908366533865,0.27091633466135456,0.27410358565737053,0.27729083665338644,0.2804780876494024,0.2836653386454183,0.2868525896414343,0.2900398406374502,0.2932270916334661,0.2964143426294821,0.299601593625498,0.30278884462151395,0.30597609561752986,0.30916334661354583,0.31235059760956174,0.3155378486055777,0.3187250996015936,0.3219123505976096,0.3250996015936255,0.3282868525896414,0.3314741035856574,0.3346613545816733,0.33784860557768925,0.34103585657370517,0.34422310756972113,0.34741035856573704,0.350597609561753,0.3537848605577689,0.3569721115537849,0.3601593625498008,0.3633466135458167,0.3665338645418327,0.3697211155378486,0.37290836653386455,0.37609561752988047,0.37928286852589643,0.38247011952191234,0.3856573705179283,0.3888446215139442,0.39203187250996013,0.3952191235059761,0.398406374501992,0.401593625498008,0.4047808764940239,0.40796812749003986,0.41115537848605577,0.41434262948207173,0.41752988047808764,0.4207171314741036,0.4239043824701195,0.42709163346613543,0.4302788844621514,0.4334661354581673,0.4366533864541833,0.4398406374501992,0.44302788844621516,0.44621513944223107,0.44940239043824703,0.45258964143426295,0.45577689243027886,0.4589641434262948,0.46215139442231074,0.4653386454183267,0.4685258964143426,0.4717131474103586,0.4749003984063745,0.47808764940239046,0.48127490039840637,0.48446215139442234,0.48764940239043825,0.49083665338645416,0.4940239043824701,0.49721115537848604,0.500398406374502,0.503585657370518,0.5067729083665339,0.5099601593625498,0.5131474103585657,0.5163346613545817,0.5195219123505976,0.5227091633466135,0.5258964143426295,0.5290836653386454,0.5322709163346614,0.5354581673306773,0.5386454183266932,0.5418326693227091,0.5450199203187251,0.5482071713147411,0.551394422310757,0.5545816733067729,0.5577689243027888,0.5609561752988048,0.5641434262948207,0.5673306772908366,0.5705179282868525,0.5737051792828686,0.5768924302788845,0.5800796812749004,0.5832669322709163,0.5864541832669322,0.5896414342629482,0.5928286852589641,0.5960159362549801,0.599203187250996,0.602390438247012,0.6055776892430279,0.6087649402390438,0.6119521912350597,0.6151394422310758,0.6183266932270917,0.6215139442231076,0.6247011952191235,0.6278884462151394,0.6310756972111554,0.6342629482071713,0.6374501992031872,0.6406374501992032,0.6438247011952192,0.6470119521912351,0.650199203187251,0.6533864541832669,0.6565737051792828,0.6597609561752988,0.6629482071713148,0.6661354581673307,0.6693227091633466,0.6725099601593626,0.6756972111553785,0.6788844621513944,0.6820717131474103,0.6852589641434262,0.6884462151394423,0.6916334661354582,0.6948207171314741,0.69800796812749,0.701195219123506,0.7043824701195219,0.7075697211155378,0.7107569721115538,0.7139442231075698,0.7171314741035857,0.7203187250996016,0.7235059760956175,0.7266932270916334,0.7298804780876494,0.7330677290836654,0.7362549800796813,0.7394422310756972,0.7426294820717132,0.7458167330677291,0.749003984063745,0.7521912350597609,0.7553784860557768,0.7585657370517929,0.7617529880478088,0.7649402390438247,0.7681274900398406,0.7713147410358566,0.7745019920318725,0.7776892430278884,0.7808764940239044,0.7840637450199203,0.7872509960159363,0.7904382470119522,0.7936254980079681,0.796812749003984,0.8]} +{"expected":[2.9982228,2.9844446,2.9708567,2.9574535,2.9442306,2.9311829,2.918306,2.905596,2.893048,2.8806584,2.8684235,2.8563392,2.844402,2.8326085,2.8209553,2.8094387,2.7980566,2.7868054,2.775682,2.7646837,2.753808,2.7430522,2.7324135,2.7218897,2.7114785,2.7011771,2.6909838,2.680896,2.6709118,2.6610293,2.651246,2.6415606,2.6319706,2.6224747,2.613071,2.6037574,2.5945327,2.5853953,2.5763433,2.5673752,2.5584898,2.5496855,2.5409606,2.5323138,2.5237443,2.5152502,2.5068305,2.498484,2.490209,2.4820051,2.4738705,2.4658046,2.4578056,2.4498732,2.4420059,2.4342027,2.4264627,2.4187849,2.4111686,2.4036124,2.3961158,2.3886776,2.381297,2.3739734,2.3667057,2.3594933,2.3523352,2.3452308,2.3381793,2.3311799,2.3242316,2.3173344,2.310487,2.303689,2.2969394,2.2902381,2.2835839,2.2769766,2.2704153,2.2638996,2.2574286,2.251002,2.2446194,2.2382798,2.2319827,2.225728,2.2195148,2.2133427,2.207211,2.2011197,2.1950676,2.189055,2.1830807,2.1771448,2.1712465,2.1653855,2.1595614,2.1537735,2.148022,2.1423056,2.1366246,2.1309786,2.1253667,2.119789,2.1142447,2.1087334,2.1032555,2.0978098,2.0923965,2.087015,2.0816646,2.0763454,2.0710573,2.0657995,2.060572,2.0553741,2.0502057,2.0450668,2.0399566,2.0348752,2.0298219,2.0247967,2.0197992,2.0148294,2.0098865,2.0049708,2.0000815,1.995219,1.9903823,1.9855716,1.9807866,1.9760269,1.9712924,1.9665828,1.9618979,1.9572374,1.9526011,1.9479889,1.9434004,1.9388354,1.9342937,1.9297751,1.9252795,1.9208065,1.9163561,1.9119279,1.907522,1.9031377,1.8987752,1.8944342,1.8901145,1.885816,1.8815384,1.8772815,1.8730453,1.8688294,1.8646339,1.8604584,1.8563027,1.8521669,1.8480505,1.8439536,1.8398759,1.8358172,1.8317775,1.8277565,1.8237542,1.8197705,1.8158048,1.8118575,1.807928,1.8040164,1.8001227,1.7962465,1.7923878,1.7885464,1.7847222,1.7809149,1.7771248,1.7733512,1.7695944,1.765854,1.76213,1.7584225,1.754731,1.7510556,1.747396,1.7437522,1.7401242,1.7365116,1.7329146,1.7293328,1.7257662,1.7222147,1.7186784,1.7151568,1.71165,1.7081578,1.7046803,1.7012172,1.6977684,1.6943339,1.6909137,1.6875074,1.684115,1.6807367,1.6773719,1.674021,1.6706835,1.6673595,1.6640489,1.6607517,1.6574675,1.6541965,1.6509386,1.6476936,1.6444615,1.6412421,1.6380354,1.6348414,1.6316597,1.6284906,1.6253338,1.6221893,1.6190569,1.6159366,1.6128285,1.6097322,1.6066477,1.6035752,1.6005144,1.5974652,1.5944275,1.5914013,1.5883867,1.5853833,1.5823911,1.5794103,1.5764406,1.5734819,1.5705342,1.5675977,1.5646718,1.5617568,1.5588526,1.5559589,1.5530759,1.5502034,1.5473415,1.54449,1.5416487,1.5388179,1.5359972,1.5331866,1.5303862,1.5275958,1.5248156,1.5220451,1.5192845,1.5165339,1.5137929,1.5110615,1.5083399,1.5056279,1.5029253,1.5002323,1.4975487,1.4948745,1.4922097,1.489554,1.4869075,1.4842703,1.4816421,1.479023,1.4764129,1.4738117,1.4712195,1.4686362,1.4660615,1.4634959,1.4609388,1.4583902,1.4558506,1.4533193,1.4507966,1.4482824,1.4457767,1.4432793,1.44079,1.4383094,1.4358369,1.4333726,1.4309163,1.4284685,1.4260284,1.4235966,1.4211726,1.4187567,1.4163486,1.4139485,1.4115561,1.4091716,1.4067947,1.4044256,1.4020641,1.3997103,1.3973641,1.3950253,1.3926942,1.3903705,1.3880541,1.3857453,1.3834438,1.3811495,1.3788626,1.376583,1.3743105,1.3720452,1.3697871,1.3675361,1.3652922,1.3630551,1.3608253,1.3586023,1.3563862,1.354177,1.3519747,1.3497794,1.3475906,1.3454088,1.3432336,1.3410653,1.3389033,1.3367482,1.3345996,1.3324577,1.3303221,1.3281932,1.3260708,1.3239547,1.321845,1.319742,1.317645,1.3155545,1.3134701,1.3113923,1.3093204,1.3072549,1.3051956,1.3031423,1.3010951,1.2990541,1.2970192,1.2949903,1.2929674,1.2909504,1.2889396,1.2869345,1.2849355,1.2829422,1.2809547,1.2789731,1.2769973,1.2750272,1.273063,1.2711043,1.2691514,1.2672043,1.2652627,1.2633266,1.2613963,1.2594714,1.2575521,1.2556385,1.2537302,1.2518274,1.2499299,1.248038,1.2461514,1.2442703,1.2423944,1.2405239,1.2386588,1.2367988,1.2349441,1.2330947,1.2312505,1.2294114,1.2275776,1.2257488,1.2239252,1.2221066,1.2202933,1.2184849,1.2166815,1.2148831,1.2130898,1.2113014,1.2095181,1.2077396,1.205966,1.2041973,1.2024335,1.2006745,1.1989204,1.1971711,1.1954266,1.1936867,1.1919516,1.1902214,1.1884959,1.186775,1.1850587,1.1833471,1.1816401,1.1799378,1.1782402,1.1765469,1.1748582,1.1731743,1.1714947,1.1698197,1.168149,1.166483,1.1648214,1.1631641,1.1615113,1.1598629,1.1582189,1.1565791,1.1549438,1.1533128,1.1516862,1.1500636,1.1484456,1.1468316,1.1452221,1.1436167,1.1420155,1.1404184,1.1388255,1.1372368,1.1356523,1.1340718,1.1324956,1.1309233,1.1293553,1.1277912,1.1262311,1.1246752,1.123123,1.1215751,1.120031,1.118491,1.1169549,1.1154228,1.1138946,1.1123703,1.1108497,1.1093333,1.1078205,1.1063118,1.1048068,1.1033056,1.1018082,1.1003146,1.0988247,1.0973388,1.0958564,1.0943779,1.092903,1.0914319,1.0899645,1.0885007,1.0870407,1.0855842,1.0841314,1.0826823,1.0812366,1.0797946,1.0783563,1.0769215,1.0754904,1.0740626,1.0726384,1.0712177,1.0698006,1.0683869,1.0669768,1.0655701,1.0641668,1.062767,1.0613706,1.0599777,1.0585881,1.057202,1.0558193,1.0544398,1.0530638,1.051691,1.0503218,1.0489558,1.047593],"x":[0.1,0.10139442,0.10278884,0.104183264,0.10557769,0.10697211,0.108366534,0.109760955,0.111155376,0.112549804,0.113944225,0.115338646,0.11673307,0.11812749,0.119521916,0.12091634,0.12231076,0.12370518,0.1250996,0.12649402,0.12788844,0.12928286,0.1306773,0.13207172,0.13346614,0.13486056,0.13625498,0.1376494,0.13904382,0.14043824,0.14183266,0.14322709,0.14462152,0.14601594,0.14741036,0.14880478,0.1501992,0.15159363,0.15298805,0.15438247,0.15577689,0.15717131,0.15856573,0.15996017,0.16135459,0.162749,0.16414343,0.16553785,0.16693227,0.16832669,0.16972111,0.17111553,0.17250995,0.17390439,0.17529881,0.17669323,0.17808765,0.17948207,0.1808765,0.18227091,0.18366534,0.18505976,0.18645418,0.18784861,0.18924303,0.19063745,0.19203188,0.1934263,0.19482072,0.19621514,0.19760956,0.19900398,0.2003984,0.20179282,0.20318726,0.20458168,0.2059761,0.20737052,0.20876494,0.21015936,0.21155378,0.2129482,0.21434262,0.21573704,0.21713148,0.2185259,0.21992032,0.22131474,0.22270916,0.22410358,0.225498,0.22689243,0.22828685,0.22968127,0.2310757,0.23247012,0.23386455,0.23525897,0.23665339,0.23804781,0.23944223,0.24083665,0.24223107,0.24362549,0.24501993,0.24641435,0.24780877,0.24920319,0.2505976,0.25199202,0.25338647,0.2547809,0.2561753,0.25756973,0.25896415,0.26035857,0.261753,0.2631474,0.26454183,0.26593626,0.26733068,0.2687251,0.27011952,0.27151394,0.27290836,0.27430278,0.2756972,0.27709162,0.27848604,0.27988046,0.2812749,0.28266934,0.28406376,0.28545818,0.2868526,0.28824702,0.28964144,0.29103586,0.29243028,0.2938247,0.29521912,0.29661354,0.29800797,0.2994024,0.3007968,0.30219123,0.30358565,0.30498007,0.3063745,0.3077689,0.30916333,0.31055778,0.3119522,0.31334662,0.31474105,0.31613547,0.3175299,0.3189243,0.32031873,0.32171315,0.32310757,0.324502,0.3258964,0.32729083,0.32868525,0.33007967,0.3314741,0.33286852,0.33426294,0.33565736,0.33705178,0.33844623,0.33984065,0.34123507,0.3426295,0.3440239,0.34541833,0.34681275,0.34820718,0.3496016,0.35099602,0.35239044,0.35378486,0.35517928,0.3565737,0.35796812,0.35936254,0.36075696,0.36215138,0.3635458,0.36494023,0.36633465,0.3677291,0.36912352,0.37051794,0.37191236,0.37330678,0.3747012,0.37609562,0.37749004,0.37888446,0.3802789,0.3816733,0.38306773,0.38446215,0.38585657,0.387251,0.3886454,0.39003983,0.39143425,0.39282867,0.3942231,0.39561754,0.39701197,0.3984064,0.3998008,0.40119523,0.40258965,0.40398407,0.4053785,0.4067729,0.40816733,0.40956175,0.41095617,0.4123506,0.41374502,0.41513944,0.41653386,0.41792828,0.4193227,0.42071712,0.42211154,0.42350596,0.4249004,0.42629483,0.42768925,0.42908368,0.4304781,0.43187252,0.43326694,0.43466136,0.43605578,0.4374502,0.43884462,0.44023904,0.44163346,0.44302788,0.4444223,0.44581673,0.44721115,0.44860557,0.45,0.4513944,0.45278883,0.45418328,0.4555777,0.45697212,0.45836654,0.45976096,0.46115538,0.4625498,0.46394423,0.46533865,0.46673307,0.4681275,0.4695219,0.47091633,0.47231075,0.47370517,0.4750996,0.476494,0.47788844,0.47928286,0.48067728,0.48207173,0.48346615,0.48486057,0.486255,0.4876494,0.48904383,0.49043825,0.49183267,0.4932271,0.49462152,0.49601594,0.49741036,0.49880478,0.5001992,0.50159365,0.50298804,0.5043825,0.5057769,0.50717133,0.5085657,0.5099602,0.51135457,0.512749,0.5141434,0.51553786,0.51693225,0.5183267,0.5197211,0.52111554,0.52250993,0.5239044,0.52529883,0.5266932,0.5280877,0.52948207,0.5308765,0.5322709,0.53366536,0.53505975,0.5364542,0.5378486,0.53924304,0.54063743,0.5420319,0.5434263,0.5448207,0.5462151,0.54760957,0.54900396,0.5503984,0.5517928,0.55318725,0.5545817,0.5559761,0.55737054,0.55876493,0.5601594,0.5615538,0.5629482,0.5643426,0.56573707,0.56713146,0.5685259,0.5699203,0.57131475,0.57270914,0.5741036,0.575498,0.57689244,0.5782868,0.5796813,0.58107567,0.5824701,0.58386457,0.58525896,0.5866534,0.5880478,0.58944225,0.59083664,0.5922311,0.5936255,0.59501994,0.5964143,0.5978088,0.59920317,0.6005976,0.601992,0.60338646,0.60478085,0.6061753,0.6075697,0.60896415,0.61035854,0.611753,0.61314744,0.6145418,0.6159363,0.6173307,0.6187251,0.6201195,0.62151396,0.62290835,0.6243028,0.6256972,0.62709165,0.62848604,0.6298805,0.6312749,0.6326693,0.6340637,0.6354582,0.63685256,0.638247,0.63964146,0.64103585,0.6424303,0.6438247,0.64521915,0.64661354,0.648008,0.6494024,0.65079683,0.6521912,0.6535857,0.65498006,0.6563745,0.6577689,0.65916336,0.66055775,0.6619522,0.6633466,0.66474104,0.66613543,0.6675299,0.66892433,0.6703187,0.6717132,0.67310756,0.674502,0.6758964,0.67729086,0.67868525,0.6800797,0.6814741,0.68286854,0.68426293,0.6856574,0.6870518,0.6884462,0.6898406,0.69123507,0.69262946,0.6940239,0.6954183,0.69681275,0.6982072,0.6996016,0.70099604,0.70239043,0.7037849,0.7051793,0.7065737,0.7079681,0.70936257,0.71075696,0.7121514,0.7135458,0.71494025,0.71633464,0.7177291,0.7191235,0.72051793,0.7219123,0.7233068,0.72470117,0.7260956,0.72749007,0.72888446,0.7302789,0.7316733,0.73306775,0.73446214,0.7358566,0.737251,0.73864543,0.7400398,0.7414343,0.74282867,0.7442231,0.7456175,0.74701196,0.74840635,0.7498008,0.7511952,0.75258964,0.75398403,0.7553785,0.75677294,0.7581673,0.7595618,0.76095617,0.7623506,0.763745,0.76513946,0.76653385,0.7679283,0.7693227,0.77071714,0.77211154,0.773506,0.7749004,0.7762948,0.7776892,0.77908367,0.78047806,0.7818725,0.78326696,0.78466135,0.7860558,0.7874502,0.78884465,0.79023904,0.7916335,0.7930279,0.7944223,0.7958167,0.79721117,0.79860556,0.8]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json index 7b46592775a9..93fc1a42a4f1 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_negative.json @@ -1 +1 @@ -{"expected":[-691.4686750787736,-691.4706690973605,-691.4726671000032,-691.4746691026537,-691.4766751213604,-691.4786851722681,-691.4806992716194,-691.4827174357553,-691.4847396811155,-691.4867660242401,-691.4887964817698,-691.4908310704468,-691.4928698071158,-691.4949127087247,-691.4969597923252,-691.4990110750747,-691.5010665742357,-691.5031263071774,-691.5051902913768,-691.5072585444194,-691.5093310839998,-691.511407927923,-691.513489094105,-691.5155746005743,-691.5176644654717,-691.5197587070529,-691.5218573436877,-691.5239603938622,-691.5260678761796,-691.5281798093603,-691.5302962122441,-691.5324171037907,-691.5345425030804,-691.5366724293154,-691.5388069018212,-691.540945940047,-691.5430895635672,-691.5452377920823,-691.5473906454201,-691.5495481435368,-691.5517103065177,-691.5538771545793,-691.5560487080692,-691.558224987468,-691.5604060133904,-691.5625918065864,-691.5647823879422,-691.5669777784814,-691.5691779993667,-691.5713830719006,-691.573593017527,-691.5758078578318,-691.5780276145454,-691.5802523095426,-691.582481964845,-691.5847166026214,-691.5869562451896,-691.5892009150182,-691.5914506347268,-691.5937054270884,-691.5959653150302,-691.5982303216352,-691.600500470144,-691.602775783955,-691.6050562866277,-691.6073420018823,-691.6096329536025,-691.6119291658364,-691.6142306627981,-691.6165374688693,-691.6188496086008,-691.6211671067142,-691.6234899881033,-691.6258182778357,-691.6281520011546,-691.6304911834802,-691.6328358504119,-691.6351860277291,-691.6375417413938,-691.6399030175514,-691.6422698825336,-691.6446423628589,-691.6470204852355,-691.6494042765623,-691.651793763931,-691.6541889746281,-691.6565899361367,-691.6589966761383,-691.6614092225144,-691.6638276033493,-691.6662518469313,-691.668681981755,-691.671118036523,-691.6735600401487,-691.6760080217573,-691.6784620106886,-691.680922036499,-691.6833881289638,-691.6858603180784,-691.6883386340621,-691.6908231073587,-691.69331376864,-691.6958106488073,-691.698313778994,-691.7008231905678,-691.7033389151333,-691.7058609845341,-691.7083894308554,-691.7109242864262,-691.7134655838225,-691.7160133558688,-691.7185676356411,-691.7211284564698,-691.723695851942,-691.7262698559039,-691.728850502464,-691.7314378259953,-691.7340318611385,-691.7366326428047,-691.7392402061777,-691.7418545867174,-691.7444758201627,-691.7471039425344,-691.7497389901375,-691.7523809995653,-691.7550300077016,-691.7576860517244,-691.7603491691083,-691.7630193976283,-691.765696775363,-691.7683813406976,-691.7710731323269,-691.7737721892595,-691.7764785508205,-691.779192256655,-691.7819133467323,-691.7846418613481,-691.7873778411295,-691.7901213270374,-691.7928723603712,-691.7956309827722,-691.7983972362266,-691.8011711630708,-691.8039528059937,-691.8067422080422,-691.8095394126241,-691.8123444635122,-691.8151574048491,-691.8179782811508,-691.820807137311,-691.8236440186058,-691.8264889706975,-691.829342039639,-691.8322032718789,-691.8350727142656,-691.8379504140516,-691.8408364188989,-691.8437307768833,-691.8466335364989,-691.8495447466638,-691.8524644567243,-691.8553927164604,-691.8583295760905,-691.8612750862766,-691.8642292981302,-691.8671922632168,-691.8701640335617,-691.8731446616551,-691.8761342004586,-691.8791327034098,-691.8821402244283,-691.885156817922,-691.8881825387926,-691.8912174424416,-691.8942615847764,-691.8973150222164,-691.9003778116999,-691.9034500106894,-691.9065316771791,-691.9096228697009,-691.9127236473308,-691.9158340696966,-691.918954196984,-691.9220840899438,-691.925223809899,-691.9283734187521,-691.9315329789923,-691.9347025537032,-691.9378822065698,-691.9410720018868,-691.9442720045661,-691.9474822801446,-691.9507028947926,-691.9539339153216,-691.957175409193,-691.9604274445263,-691.9636900901077,-691.9669634153989,-691.970247490546,-691.9735423863883,-691.9768481744679,-691.9801649270387,-691.9834927170758,-691.9868316182854,-691.9901817051143,-691.9935430527603,-691.9969157371818,-692.0002998351085,-692.0036954240518,-692.0071025823152,-692.0105213890052,-692.013951924043,-692.0173942681745,-692.0208485029826,-692.0243147108988,-692.0277929752144,-692.031283380093,-692.0347860105826,-692.0383009526281,-692.0418282930835,-692.0453681197258,-692.0489205212668,-692.0524855873675,-692.0560634086511,-692.0596540767172,-692.0632576841552,-692.0668743245598,-692.0705040925442,-692.0741470837561,-692.077803394892,-692.0814731237134,-692.0851563690617,-692.0888532308744,-692.0925638102018,-692.0962882092231,-692.1000265312636,-692.1037788808114,-692.1075453635357,-692.1113260863038,-692.1151211572001,-692.1189306855439,-692.122754781909,-692.1265935581421,-692.1304471273836,-692.1343156040864,-692.1381991040371,-692.1420977443764,-692.1460116436206,-692.149940921683,-692.1538856998959,-692.1578461010332,-692.1618222493336,-692.1658142705231,-692.16982229184,-692.1738464420584,-692.1778868515134,-692.1819436521265,-692.1860169774308,-692.1901069625984,-692.1942137444663,-692.1983374615648,-692.2024782541448,-692.2066362642066,-692.2108116355296,-692.2150045137014,-692.2192150461487,-692.2234433821685,-692.2276896729595,-692.2319540716546,-692.2362367333545,-692.2405378151611,-692.2448574762119,-692.249195877716,-692.2535531829897,-692.2579295574933,-692.2623251688694,-692.2667401869807,-692.2711747839498,-692.2756291341996,-692.280103414494,-692.2845978039804,-692.2891124842326,-692.2936476392948,-692.2982034557265,-692.3027801226488,-692.3073778317912,-692.3119967775405,-692.3166371569888,-692.3212991699855,-692.3259830191878,-692.3306889101141,-692.3354170511977,-692.3401676538431,-692.3449409324813,-692.3497371046294,-692.3545563909488,-692.3593990153068,-692.3642652048391,-692.3691551900133,-692.3740692046945,-692.3790074862127,-692.3839702754311,-692.3889578168173,-692.3939703585147,-692.3990081524173,-692.4040714542451,-692.4091605236225,-692.414275624158,-692.4194170235257,-692.4245849935501,-692.4297798102917,-692.435001754136,-692.4402511098838,-692.4455281668448,-692.4508332189332,-692.4561665647658,-692.4615285077629,-692.4669193562519,-692.4723394235738,-692.4777890281922,-692.4832684938061,-692.4887781494647,-692.4943183296863,-692.4998893745799,-692.505491629971,-692.5111254475299,-692.5167911849045,-692.5224892058561,-692.5282198804002,-692.5339835849502,-692.5397807024658,-692.545611622606,-692.5514767418856,-692.5573764638381,-692.5633111991812,-692.5692813659887,-692.5752873898679,-692.5813297041406,-692.5874087500314,-692.593524976861,-692.5996788422453,-692.6058708123007,-692.6121013618565,-692.6183709746728,-692.6246801436662,-692.6310293711425,-692.6374191690363,-692.643850059159,-692.6503225734543,-692.6568372542624,-692.6633946545927,-692.6699953384053,-692.6766398809024,-692.6833288688285,-692.6900629007823,-692.6968425875369,-692.7036685523734,-692.7105414314241,-692.7174618740282,-692.7244305431005,-692.731448115512,-692.7385152824843,-692.7456327499989,-692.7528012392195,-692.7600214869314,-692.7672942459949,-692.7746202858175,-692.7820003928417,-692.7894353710517,-692.7969260424992,-692.8044732478487,-692.8120778469436,-692.8197407193943,-692.8274627651889,-692.8352449053269,-692.8430880824792,-692.8509932616726,-692.858961431003,-692.8669936023764,-692.87509081228,-692.8832541225845,-692.891484621381,-692.89978342385,-692.908151673169,-692.9165905414573,-692.9251012307616,-692.9336849740831,-692.9423430364499,-692.9510767160357,-692.9598873453282,-692.9687762923488,-692.9777449619278,-692.9867947970365,-692.9959272801811,-693.0051439348596,-693.0144463270875,-693.0238360669948,-693.0333148104983,-693.0428842610547,-693.0525461714979,-693.0623023459653,-693.0721546419211,-693.0821049722772,-693.0921553076237,-693.1023076785702,-693.1125641782094,-693.1229269647058,-693.1333982640227,-693.143980372791,-693.1546756613336,-693.1654865768511,-693.1764156467837,-693.1874654823573,-693.1986387823287,-693.2099383369417,-693.2213670321096,-693.2329278538397,-693.2446238929161,-693.25645834986,-693.2684345401868,-693.2805558999816,-693.2928259918176,-693.3052485110414,-693.317827292454,-693.3305663174168,-693.3434697214168,-693.3565418021263,-693.3697870279957,-693.3832100474233,-693.3968156985499,-693.4106090197271,-693.4245952607198,-693.4387798947017,-693.4531686311144,-693.4677674294657,-693.482582514149,-693.4976203903783,-693.5128878613389,-693.5283920466682,-693.5441404023912,-693.5601407424525,-693.5764012619969,-693.5929305625766,-693.6097376794748,-693.6268321113672,-693.6442238525606,-693.6619234280873,-693.6799419319601,-693.6982910689381,-693.7169832001962,-693.7360313933455,-693.7554494773096,-693.7752521026372,-693.7954548079057,-693.8160740929741,-693.8371274999467,-693.8586337028459,-693.8806126071395,-693.9030854604562,-693.9260749760276,-693.9496054706582,-693.973703019322,-693.9983956288514,-694.0237134336178,-694.0496889166337,-694.0763571601454,-694.1037561305648,-694.1319270035474,-694.1609145362021,-694.1907674948776,-694.2215391487906,-694.2532878420448,-694.2860776594698,-694.3199792053754,-694.3550705190045,-694.3914381565351,-694.4291784773669,-694.4683991827972,-694.5092211689507,-694.5517807742754,-694.5962325269252,-694.6427525316943,-694.6915426839114,-694.7428359650884,-694.7969031716804,-694.8540615691151,-694.9146861724756,-694.9792246726965,-695.0482175202787,-695.1223254648501,-695.2023681403441,-695.2893794793034,-695.3846896134714,-695.4900500733514,-695.6078330392857,-695.7413643422674,-695.895514902571,-696.0778362920317,-696.3009795923462,-696.5886612464652,-696.9941255179085,-697.6872701884779,-709.889355822726],"x":[-1.0e-300,-9.980079681474104e-301,-9.960159362948208e-301,-9.94023904442231e-301,-9.920318725896415e-301,-9.900398407370519e-301,-9.880478088844623e-301,-9.860557770318725e-301,-9.840637451792829e-301,-9.820717133266933e-301,-9.800796814741037e-301,-9.78087649621514e-301,-9.760956177689243e-301,-9.741035859163347e-301,-9.721115540637451e-301,-9.701195222111553e-301,-9.681274903585657e-301,-9.661354585059761e-301,-9.641434266533865e-301,-9.621513948007968e-301,-9.601593629482072e-301,-9.581673310956176e-301,-9.56175299243028e-301,-9.541832673904382e-301,-9.521912355378486e-301,-9.50199203685259e-301,-9.482071718326694e-301,-9.462151399800796e-301,-9.4422310812749e-301,-9.422310762749004e-301,-9.402390444223108e-301,-9.38247012569721e-301,-9.362549807171315e-301,-9.342629488645419e-301,-9.322709170119523e-301,-9.302788851593625e-301,-9.282868533067729e-301,-9.262948214541833e-301,-9.243027896015937e-301,-9.22310757749004e-301,-9.203187258964143e-301,-9.183266940438247e-301,-9.163346621912351e-301,-9.143426303386454e-301,-9.123505984860558e-301,-9.103585666334662e-301,-9.083665347808766e-301,-9.063745029282868e-301,-9.043824710756972e-301,-9.023904392231076e-301,-9.00398407370518e-301,-8.984063755179284e-301,-8.964143436653386e-301,-8.94422311812749e-301,-8.924302799601594e-301,-8.904382481075698e-301,-8.8844621625498e-301,-8.864541844023905e-301,-8.844621525498009e-301,-8.824701206972113e-301,-8.804780888446215e-301,-8.784860569920319e-301,-8.764940251394423e-301,-8.745019932868527e-301,-8.725099614342629e-301,-8.705179295816733e-301,-8.685258977290837e-301,-8.665338658764941e-301,-8.645418340239043e-301,-8.625498021713147e-301,-8.605577703187251e-301,-8.585657384661355e-301,-8.565737066135458e-301,-8.545816747609562e-301,-8.525896429083666e-301,-8.50597611055777e-301,-8.486055792031872e-301,-8.466135473505976e-301,-8.44621515498008e-301,-8.426294836454184e-301,-8.406374517928286e-301,-8.38645419940239e-301,-8.366533880876494e-301,-8.346613562350598e-301,-8.3266932438247e-301,-8.306772925298805e-301,-8.286852606772909e-301,-8.266932288247013e-301,-8.247011969721115e-301,-8.227091651195219e-301,-8.207171332669323e-301,-8.187251014143427e-301,-8.16733069561753e-301,-8.147410377091633e-301,-8.127490058565737e-301,-8.107569740039841e-301,-8.087649421513944e-301,-8.067729102988048e-301,-8.047808784462152e-301,-8.027888465936256e-301,-8.00796814741036e-301,-7.988047828884462e-301,-7.968127510358566e-301,-7.94820719183267e-301,-7.928286873306774e-301,-7.908366554780876e-301,-7.88844623625498e-301,-7.868525917729084e-301,-7.848605599203188e-301,-7.82868528067729e-301,-7.808764962151395e-301,-7.788844643625499e-301,-7.768924325099603e-301,-7.749004006573705e-301,-7.729083688047809e-301,-7.709163369521913e-301,-7.689243050996017e-301,-7.669322732470119e-301,-7.649402413944223e-301,-7.629482095418327e-301,-7.609561776892431e-301,-7.589641458366533e-301,-7.569721139840637e-301,-7.549800821314741e-301,-7.529880502788845e-301,-7.509960184262948e-301,-7.490039865737052e-301,-7.470119547211156e-301,-7.450199228685259e-301,-7.430278910159363e-301,-7.410358591633466e-301,-7.39043827310757e-301,-7.370517954581673e-301,-7.350597636055777e-301,-7.33067731752988e-301,-7.310756999003984e-301,-7.2908366804780875e-301,-7.2709163619521915e-301,-7.250996043426295e-301,-7.231075724900399e-301,-7.211155406374502e-301,-7.191235087848606e-301,-7.171314769322709e-301,-7.151394450796813e-301,-7.131474132270916e-301,-7.11155381374502e-301,-7.091633495219123e-301,-7.071713176693227e-301,-7.051792858167331e-301,-7.0318725396414344e-301,-7.0119522211155384e-301,-6.9920319025896416e-301,-6.9721115840637456e-301,-6.952191265537849e-301,-6.932270947011953e-301,-6.912350628486056e-301,-6.89243030996016e-301,-6.872509991434263e-301,-6.852589672908367e-301,-6.83266935438247e-301,-6.812749035856574e-301,-6.792828717330677e-301,-6.772908398804781e-301,-6.7529880802788845e-301,-6.7330677617529885e-301,-6.713147443227092e-301,-6.693227124701196e-301,-6.673306806175299e-301,-6.653386487649403e-301,-6.633466169123506e-301,-6.61354585059761e-301,-6.593625532071713e-301,-6.573705213545817e-301,-6.55378489501992e-301,-6.533864576494024e-301,-6.5139442579681274e-301,-6.494023939442231e-301,-6.4741036209163346e-301,-6.4541833023904386e-301,-6.434262983864542e-301,-6.414342665338646e-301,-6.394422346812749e-301,-6.374502028286853e-301,-6.354581709760956e-301,-6.33466139123506e-301,-6.314741072709163e-301,-6.294820754183267e-301,-6.27490043565737e-301,-6.254980117131474e-301,-6.2350597986055775e-301,-6.2151394800796815e-301,-6.195219161553785e-301,-6.175298843027889e-301,-6.155378524501992e-301,-6.135458205976096e-301,-6.115537887450199e-301,-6.095617568924303e-301,-6.075697250398407e-301,-6.05577693187251e-301,-6.035856613346614e-301,-6.015936294820717e-301,-5.996015976294821e-301,-5.976095657768924e-301,-5.956175339243028e-301,-5.9362550207171316e-301,-5.9163347021912356e-301,-5.896414383665339e-301,-5.876494065139443e-301,-5.856573746613546e-301,-5.83665342808765e-301,-5.816733109561753e-301,-5.796812791035857e-301,-5.77689247250996e-301,-5.756972153984064e-301,-5.737051835458167e-301,-5.717131516932271e-301,-5.6972111984063745e-301,-5.6772908798804785e-301,-5.657370561354582e-301,-5.637450242828686e-301,-5.617529924302789e-301,-5.597609605776893e-301,-5.577689287250996e-301,-5.5577689687251e-301,-5.537848650199203e-301,-5.517928331673307e-301,-5.49800801314741e-301,-5.478087694621514e-301,-5.458167376095617e-301,-5.438247057569721e-301,-5.4183267390438246e-301,-5.3984064205179285e-301,-5.378486101992032e-301,-5.358565783466136e-301,-5.338645464940239e-301,-5.318725146414343e-301,-5.298804827888446e-301,-5.27888450936255e-301,-5.258964190836653e-301,-5.239043872310757e-301,-5.21912355378486e-301,-5.199203235258964e-301,-5.1792829167330675e-301,-5.1593625982071715e-301,-5.139442279681275e-301,-5.119521961155379e-301,-5.099601642629482e-301,-5.079681324103586e-301,-5.05976100557769e-301,-5.039840687051793e-301,-5.019920368525897e-301,-5.00000005e-301,-4.980079731474104e-301,-4.960159412948207e-301,-4.940239094422311e-301,-4.920318775896414e-301,-4.900398457370518e-301,-4.8804781388446215e-301,-4.8605578203187255e-301,-4.840637501792829e-301,-4.820717183266933e-301,-4.800796864741036e-301,-4.78087654621514e-301,-4.760956227689243e-301,-4.741035909163347e-301,-4.72111559063745e-301,-4.701195272111554e-301,-4.681274953585657e-301,-4.661354635059761e-301,-4.6414343165338645e-301,-4.6215139980079685e-301,-4.601593679482072e-301,-4.581673360956176e-301,-4.561753042430279e-301,-4.541832723904383e-301,-4.521912405378486e-301,-4.50199208685259e-301,-4.482071768326693e-301,-4.462151449800797e-301,-4.4422311312749e-301,-4.422310812749004e-301,-4.402390494223107e-301,-4.382470175697211e-301,-4.3625498571713145e-301,-4.3426295386454185e-301,-4.322709220119522e-301,-4.302788901593626e-301,-4.282868583067729e-301,-4.262948264541833e-301,-4.243027946015936e-301,-4.22310762749004e-301,-4.203187308964143e-301,-4.183266990438247e-301,-4.16334667191235e-301,-4.143426353386454e-301,-4.1235060348605575e-301,-4.1035857163346615e-301,-4.0836653978087654e-301,-4.063745079282869e-301,-4.043824760756973e-301,-4.023904442231076e-301,-4.00398412370518e-301,-3.984063805179283e-301,-3.964143486653387e-301,-3.94422316812749e-301,-3.924302849601594e-301,-3.904382531075697e-301,-3.884462212549801e-301,-3.864541894023904e-301,-3.844621575498008e-301,-3.8247012569721115e-301,-3.8047809384462155e-301,-3.784860619920319e-301,-3.764940301394423e-301,-3.745019982868526e-301,-3.7250996643426294e-301,-3.705179345816733e-301,-3.6852590272908366e-301,-3.66533870876494e-301,-3.6454183902390437e-301,-3.6254980717131477e-301,-3.6055777531872513e-301,-3.585657434661355e-301,-3.5657371161354584e-301,-3.545816797609562e-301,-3.5258964790836656e-301,-3.505976160557769e-301,-3.4860558420318727e-301,-3.4661355235059763e-301,-3.44621520498008e-301,-3.4262948864541835e-301,-3.406374567928287e-301,-3.3864542494023906e-301,-3.366533930876494e-301,-3.3466136123505978e-301,-3.3266932938247014e-301,-3.306772975298805e-301,-3.2868526567729085e-301,-3.266932338247012e-301,-3.2470120197211157e-301,-3.2270917011952192e-301,-3.207171382669323e-301,-3.1872510641434264e-301,-3.16733074561753e-301,-3.1474104270916335e-301,-3.127490108565737e-301,-3.1075697900398407e-301,-3.0876494715139443e-301,-3.067729152988048e-301,-3.0478088344621514e-301,-3.027888515936255e-301,-3.0079681974103586e-301,-2.988047878884462e-301,-2.9681275603585657e-301,-2.9482072418326693e-301,-2.928286923306773e-301,-2.9083666047808765e-301,-2.88844628625498e-301,-2.8685259677290836e-301,-2.848605649203187e-301,-2.8286853306772908e-301,-2.8087650121513944e-301,-2.788844693625498e-301,-2.7689243750996015e-301,-2.749004056573705e-301,-2.7290837380478087e-301,-2.7091634195219122e-301,-2.689243100996016e-301,-2.6693227824701194e-301,-2.649402463944223e-301,-2.629482145418327e-301,-2.6095618268924305e-301,-2.589641508366534e-301,-2.5697211898406377e-301,-2.5498008713147413e-301,-2.529880552788845e-301,-2.5099602342629484e-301,-2.490039915737052e-301,-2.4701195972111556e-301,-2.450199278685259e-301,-2.4302789601593627e-301,-2.4103586416334663e-301,-2.39043832310757e-301,-2.3705180045816735e-301,-2.350597686055777e-301,-2.3306773675298806e-301,-2.310757049003984e-301,-2.2908367304780878e-301,-2.2709164119521913e-301,-2.250996093426295e-301,-2.2310757749003985e-301,-2.211155456374502e-301,-2.1912351378486056e-301,-2.1713148193227092e-301,-2.151394500796813e-301,-2.1314741822709164e-301,-2.11155386374502e-301,-2.0916335452191235e-301,-2.071713226693227e-301,-2.0517929081673307e-301,-2.0318725896414343e-301,-2.011952271115538e-301,-1.9920319525896414e-301,-1.972111634063745e-301,-1.9521913155378486e-301,-1.932270997011952e-301,-1.9123506784860557e-301,-1.8924303599601593e-301,-1.872510041434263e-301,-1.8525897229083667e-301,-1.8326694043824702e-301,-1.8127490858565738e-301,-1.7928287673306774e-301,-1.772908448804781e-301,-1.7529881302788845e-301,-1.7330678117529881e-301,-1.7131474932270917e-301,-1.6932271747011953e-301,-1.6733068561752988e-301,-1.6533865376494024e-301,-1.633466219123506e-301,-1.6135459005976096e-301,-1.5936255820717132e-301,-1.5737052635458167e-301,-1.5537849450199203e-301,-1.5338646264940239e-301,-1.5139443079681275e-301,-1.494023989442231e-301,-1.4741036709163346e-301,-1.4541833523904382e-301,-1.4342630338645418e-301,-1.4143427153386456e-301,-1.3944223968127491e-301,-1.3745020782868527e-301,-1.3545817597609563e-301,-1.3346614412350599e-301,-1.3147411227091634e-301,-1.294820804183267e-301,-1.2749004856573706e-301,-1.2549801671314742e-301,-1.2350598486055777e-301,-1.2151395300796813e-301,-1.195219211553785e-301,-1.1752988930278885e-301,-1.155378574501992e-301,-1.1354582559760956e-301,-1.1155379374501992e-301,-1.0956176189243028e-301,-1.0756973003984064e-301,-1.05577698187251e-301,-1.0358566633466135e-301,-1.015936344820717e-301,-9.960160262948207e-302,-9.760957077689242e-302,-9.561753892430278e-302,-9.362550707171314e-302,-9.163347521912351e-302,-8.964144336653387e-302,-8.764941151394422e-302,-8.565737966135458e-302,-8.366534780876494e-302,-8.16733159561753e-302,-7.968128410358566e-302,-7.768925225099602e-302,-7.569722039840638e-302,-7.370518854581674e-302,-7.171315669322709e-302,-6.972112484063745e-302,-6.772909298804781e-302,-6.573706113545817e-302,-6.374502928286853e-302,-6.175299743027888e-302,-5.976096557768924e-302,-5.77689337250996e-302,-5.577690187250997e-302,-5.378487001992032e-302,-5.179283816733068e-302,-4.980080631474104e-302,-4.78087744621514e-302,-4.5816742609561755e-302,-4.382471075697211e-302,-4.183267890438247e-302,-3.984064705179283e-302,-3.784861519920319e-302,-3.585658334661355e-302,-3.3864551494023906e-302,-3.1872519641434264e-302,-2.988048778884462e-302,-2.788845593625498e-302,-2.589642408366534e-302,-2.39043922310757e-302,-2.1912360378486057e-302,-1.9920328525896415e-302,-1.7928296673306773e-302,-1.5936264820717133e-302,-1.394423296812749e-302,-1.1952201115537848e-302,-9.960169262948207e-303,-7.968137410358566e-303,-5.976105557768925e-303,-3.984073705179283e-303,-1.9920418525896414e-303,-9.999999999999456e-309]} +{"expected":[-88.191376,-75.989296,-75.29615,-74.890686,-74.603004,-74.37986,-74.19754,-74.04339,-73.90986,-73.792076,-73.686714,-73.5914,-73.504395,-73.42435,-73.35024,-73.28125,-73.21671,-73.15608,-73.09893,-73.04486,-72.99357,-72.94478,-72.898254,-72.853806,-72.81124,-72.770424,-72.7312,-72.69346,-72.6571,-72.622,-72.588104,-72.55531,-72.52356,-72.49279,-72.46294,-72.43395,-72.40578,-72.37838,-72.351715,-72.32574,-72.30042,-72.27573,-72.25163,-72.228096,-72.20511,-72.18263,-72.16066,-72.13915,-72.118095,-72.09748,-72.07728,-72.05747,-72.038055,-72.019005,-72.00031,-71.981964,-71.96394,-71.94625,-71.928856,-71.91176,-71.89495,-71.878426,-71.86217,-71.84616,-71.830414,-71.81491,-71.799644,-71.78461,-71.76979,-71.755196,-71.74081,-71.726616,-71.71263,-71.69884,-71.685234,-71.671814,-71.65856,-71.64549,-71.63259,-71.61985,-71.60727,-71.59485,-71.58258,-71.57046,-71.55848,-71.546646,-71.53495,-71.52339,-71.51196,-71.50066,-71.48949,-71.47844,-71.46751,-71.456696,-71.44601,-71.435425,-71.42495,-71.41459,-71.40433,-71.39418,-71.384125,-71.374176,-71.36433,-71.35457,-71.34491,-71.335335,-71.32586,-71.31647,-71.30717,-71.29795,-71.28882,-71.27977,-71.2708,-71.26191,-71.2531,-71.24437,-71.23571,-71.22713,-71.21861,-71.210175,-71.201805,-71.193504,-71.18528,-71.17712,-71.169014,-71.16099,-71.153015,-71.14511,-71.13727,-71.129486,-71.121765,-71.1141,-71.1065,-71.09895,-71.09146,-71.08402,-71.076645,-71.06932,-71.06204,-71.054825,-71.04765,-71.040535,-71.03347,-71.02645,-71.019485,-71.012566,-71.00569,-70.99886,-70.99209,-70.98535,-70.97866,-70.972015,-70.965416,-70.95886,-70.95235,-70.94588,-70.939445,-70.93305,-70.926704,-70.920395,-70.91412,-70.9079,-70.9017,-70.895546,-70.889435,-70.883354,-70.87731,-70.87131,-70.86533,-70.8594,-70.8535,-70.84763,-70.841805,-70.836006,-70.830246,-70.82452,-70.81882,-70.81315,-70.80752,-70.80191,-70.79634,-70.7908,-70.78529,-70.779816,-70.77436,-70.76894,-70.76355,-70.75819,-70.75285,-70.74755,-70.74227,-70.73702,-70.731804,-70.72661,-70.72144,-70.7163,-70.71118,-70.70609,-70.701035,-70.69599,-70.69098,-70.686,-70.68103,-70.676094,-70.67118,-70.66629,-70.66142,-70.65658,-70.651764,-70.646965,-70.64219,-70.63744,-70.63271,-70.628006,-70.62332,-70.61866,-70.61402,-70.6094,-70.604805,-70.60023,-70.59567,-70.59113,-70.586624,-70.58213,-70.57765,-70.5732,-70.56876,-70.56435,-70.55995,-70.55558,-70.551216,-70.54688,-70.542564,-70.53826,-70.53398,-70.52972,-70.52547,-70.52124,-70.51703,-70.51283,-70.50866,-70.5045,-70.50036,-70.49624,-70.492134,-70.48804,-70.48397,-70.47991,-70.47587,-70.47185,-70.467834,-70.463844,-70.45987,-70.45591,-70.451965,-70.44804,-70.44412,-70.44022,-70.43634,-70.43247,-70.42862,-70.42478,-70.42095,-70.417145,-70.41335,-70.40957,-70.4058,-70.402054,-70.398315,-70.394585,-70.39088,-70.38718,-70.3835,-70.37983,-70.37617,-70.37253,-70.3689,-70.36528,-70.36168,-70.358086,-70.35451,-70.350945,-70.34739,-70.34385,-70.340324,-70.33681,-70.333305,-70.32982,-70.32634,-70.32287,-70.31942,-70.31598,-70.312546,-70.30913,-70.30572,-70.30232,-70.29894,-70.29557,-70.292206,-70.28886,-70.285515,-70.28219,-70.27887,-70.275566,-70.27227,-70.26899,-70.26572,-70.26245,-70.2592,-70.25596,-70.25272,-70.249504,-70.24629,-70.243095,-70.23991,-70.236725,-70.23356,-70.2304,-70.22725,-70.224106,-70.22098,-70.21786,-70.214745,-70.21165,-70.20856,-70.205475,-70.2024,-70.19934,-70.19628,-70.19324,-70.19021,-70.18718,-70.184166,-70.18116,-70.178154,-70.17517,-70.17219,-70.16921,-70.16625,-70.1633,-70.160355,-70.15742,-70.15449,-70.151566,-70.14866,-70.14575,-70.14286,-70.13998,-70.13709,-70.134224,-70.13136,-70.12851,-70.12566,-70.12283,-70.12,-70.11718,-70.114365,-70.111565,-70.108765,-70.10598,-70.103195,-70.10042,-70.09766,-70.094894,-70.09215,-70.0894,-70.08666,-70.08394,-70.081215,-70.0785,-70.0758,-70.0731,-70.070404,-70.06772,-70.06504,-70.06237,-70.05971,-70.05705,-70.054405,-70.051765,-70.049126,-70.0465,-70.04388,-70.04127,-70.03866,-70.03606,-70.03346,-70.030876,-70.02829,-70.02572,-70.023155,-70.02059,-70.018036,-70.01549,-70.01295,-70.010414,-70.00788,-70.00536,-70.002846,-70.000336,-69.99783,-69.99534,-69.99284,-69.990364,-69.987885,-69.98541,-69.98295,-69.980484,-69.978035,-69.975586,-69.973145,-69.9707,-69.96828,-69.96585,-69.96343,-69.96102,-69.95861,-69.956215,-69.95382,-69.95143,-69.94904,-69.94666,-69.94429,-69.941925,-69.93957,-69.93721,-69.93486,-69.93252,-69.930176,-69.92784,-69.925514,-69.92319,-69.920876,-69.918564,-69.91625,-69.913956,-69.91166,-69.90936,-69.90708,-69.9048,-69.90253,-69.90025,-69.89799,-69.89573,-69.89347,-69.89123,-69.88898,-69.88674,-69.88451,-69.88228,-69.88005,-69.87783,-69.87562,-69.873405,-69.8712,-69.869,-69.866806,-69.86462,-69.86243,-69.860245,-69.85807,-69.8559,-69.85374,-69.85157,-69.84941,-69.84726,-69.845116,-69.84297,-69.84083,-69.8387,-69.83656,-69.83444,-69.83232,-69.8302,-69.828094,-69.82598,-69.82388,-69.821785,-69.81969,-69.8176,-69.81551,-69.81343,-69.811356,-69.80928,-69.80721,-69.80515,-69.80309,-69.80103,-69.79898,-69.796936,-69.79489,-69.792854,-69.79082,-69.78879,-69.786766,-69.784744,-69.78272,-69.78071,-69.7787,-69.776695,-69.77469,-69.77269,-69.7707],"x":[-1.0e-38,-1.9920418e-33,-3.9840736e-33,-5.9761056e-33,-7.968138e-33,-9.960169e-33,-1.1952201e-32,-1.3944233e-32,-1.5936265e-32,-1.7928296e-32,-1.9920328e-32,-2.1912361e-32,-2.3904392e-32,-2.5896423e-32,-2.7888457e-32,-2.9880487e-32,-3.1872518e-32,-3.3864552e-32,-3.5856583e-32,-3.7848614e-32,-3.9840648e-32,-4.183268e-32,-4.382471e-32,-4.5816744e-32,-4.7808775e-32,-4.9800806e-32,-5.179284e-32,-5.378487e-32,-5.57769e-32,-5.7768935e-32,-5.9760963e-32,-6.1752997e-32,-6.374503e-32,-6.573706e-32,-6.772909e-32,-6.9721127e-32,-7.1713155e-32,-7.370519e-32,-7.569722e-32,-7.768925e-32,-7.9681284e-32,-8.167332e-32,-8.3665346e-32,-8.565738e-32,-8.7649414e-32,-8.964144e-32,-9.1633476e-32,-9.362551e-32,-9.561754e-32,-9.760957e-32,-9.96016e-32,-1.0159364e-31,-1.0358567e-31,-1.055777e-31,-1.0756973e-31,-1.0956176e-31,-1.1155379e-31,-1.1354583e-31,-1.1553786e-31,-1.1752989e-31,-1.1952193e-31,-1.2151395e-31,-1.2350598e-31,-1.2549802e-31,-1.2749005e-31,-1.2948208e-31,-1.3147412e-31,-1.3346615e-31,-1.3545817e-31,-1.3745021e-31,-1.3944224e-31,-1.4143427e-31,-1.434263e-31,-1.4541834e-31,-1.4741037e-31,-1.4940239e-31,-1.5139443e-31,-1.5338646e-31,-1.5537849e-31,-1.5737053e-31,-1.5936256e-31,-1.6135458e-31,-1.6334662e-31,-1.6533865e-31,-1.6733068e-31,-1.6932272e-31,-1.7131475e-31,-1.7330678e-31,-1.7529882e-31,-1.7729084e-31,-1.7928287e-31,-1.8127491e-31,-1.8326694e-31,-1.8525897e-31,-1.8725101e-31,-1.8924304e-31,-1.9123506e-31,-1.932271e-31,-1.9521913e-31,-1.9721116e-31,-1.992032e-31,-2.0119524e-31,-2.0318725e-31,-2.051793e-31,-2.0717133e-31,-2.0916335e-31,-2.111554e-31,-2.131474e-31,-2.1513945e-31,-2.1713149e-31,-2.191235e-31,-2.2111554e-31,-2.2310758e-31,-2.250996e-31,-2.2709164e-31,-2.2908368e-31,-2.310757e-31,-2.3306773e-31,-2.3505977e-31,-2.370518e-31,-2.3904383e-31,-2.4103587e-31,-2.4302789e-31,-2.4501992e-31,-2.4701196e-31,-2.4900398e-31,-2.5099602e-31,-2.5298806e-31,-2.5498008e-31,-2.5697212e-31,-2.5896416e-31,-2.6095617e-31,-2.6294821e-31,-2.6494025e-31,-2.6693227e-31,-2.689243e-31,-2.7091635e-31,-2.7290836e-31,-2.749004e-31,-2.7689244e-31,-2.7888446e-31,-2.808765e-31,-2.8286854e-31,-2.8486056e-31,-2.868526e-31,-2.8884463e-31,-2.9083665e-31,-2.928287e-31,-2.9482073e-31,-2.9681275e-31,-2.9880479e-31,-3.0079683e-31,-3.0278884e-31,-3.0478088e-31,-3.0677292e-31,-3.0876494e-31,-3.1075698e-31,-3.1274902e-31,-3.1474103e-31,-3.1673307e-31,-3.1872511e-31,-3.2071713e-31,-3.2270917e-31,-3.247012e-31,-3.2669323e-31,-3.2868527e-31,-3.306773e-31,-3.3266932e-31,-3.3466136e-31,-3.366534e-31,-3.3864542e-31,-3.4063746e-31,-3.426295e-31,-3.4462151e-31,-3.4661355e-31,-3.486056e-31,-3.505976e-31,-3.5258965e-31,-3.5458169e-31,-3.565737e-31,-3.5856574e-31,-3.6055778e-31,-3.625498e-31,-3.6454184e-31,-3.6653388e-31,-3.685259e-31,-3.7051794e-31,-3.7250998e-31,-3.74502e-31,-3.7649403e-31,-3.7848607e-31,-3.8047809e-31,-3.8247013e-31,-3.8446217e-31,-3.8645418e-31,-3.8844622e-31,-3.9043826e-31,-3.9243028e-31,-3.9442232e-31,-3.9641436e-31,-3.984064e-31,-4.003984e-31,-4.0239043e-31,-4.0438247e-31,-4.063745e-31,-4.0836655e-31,-4.103586e-31,-4.123506e-31,-4.143426e-31,-4.1633466e-31,-4.183267e-31,-4.2031874e-31,-4.223108e-31,-4.2430277e-31,-4.262948e-31,-4.2828685e-31,-4.302789e-31,-4.3227093e-31,-4.3426297e-31,-4.3625496e-31,-4.38247e-31,-4.4023904e-31,-4.422311e-31,-4.4422312e-31,-4.4621516e-31,-4.4820716e-31,-4.501992e-31,-4.5219124e-31,-4.5418328e-31,-4.561753e-31,-4.5816735e-31,-4.6015935e-31,-4.621514e-31,-4.6414343e-31,-4.6613547e-31,-4.681275e-31,-4.7011955e-31,-4.7211154e-31,-4.741036e-31,-4.760956e-31,-4.7808766e-31,-4.800797e-31,-4.8207174e-31,-4.8406373e-31,-4.8605577e-31,-4.880478e-31,-4.9003985e-31,-4.920319e-31,-4.9402393e-31,-4.960159e-31,-4.9800796e-31,-5.0e-31,-5.0199204e-31,-5.039841e-31,-5.059761e-31,-5.079681e-31,-5.0996015e-31,-5.119522e-31,-5.1394423e-31,-5.1593627e-31,-5.179283e-31,-5.199203e-31,-5.2191234e-31,-5.239044e-31,-5.2589642e-31,-5.2788846e-31,-5.298805e-31,-5.318725e-31,-5.3386454e-31,-5.3585658e-31,-5.378486e-31,-5.3984066e-31,-5.418327e-31,-5.438247e-31,-5.4581673e-31,-5.4780877e-31,-5.498008e-31,-5.5179285e-31,-5.537849e-31,-5.557769e-31,-5.577689e-31,-5.5976096e-31,-5.61753e-31,-5.6374504e-31,-5.657371e-31,-5.6772907e-31,-5.697211e-31,-5.7171315e-31,-5.737052e-31,-5.7569723e-31,-5.7768927e-31,-5.7968126e-31,-5.816733e-31,-5.8366534e-31,-5.856574e-31,-5.876494e-31,-5.8964146e-31,-5.9163345e-31,-5.936255e-31,-5.9561753e-31,-5.9760957e-31,-5.996016e-31,-6.0159365e-31,-6.0358565e-31,-6.055777e-31,-6.0756972e-31,-6.0956176e-31,-6.115538e-31,-6.1354584e-31,-6.1553784e-31,-6.1752988e-31,-6.195219e-31,-6.2151396e-31,-6.23506e-31,-6.25498e-31,-6.2749003e-31,-6.2948207e-31,-6.314741e-31,-6.3346615e-31,-6.354582e-31,-6.374502e-31,-6.394422e-31,-6.4143426e-31,-6.434263e-31,-6.4541834e-31,-6.474104e-31,-6.4940237e-31,-6.513944e-31,-6.5338645e-31,-6.553785e-31,-6.5737053e-31,-6.5936257e-31,-6.6135456e-31,-6.633466e-31,-6.6533864e-31,-6.673307e-31,-6.693227e-31,-6.7131476e-31,-6.7330675e-31,-6.752988e-31,-6.7729083e-31,-6.7928287e-31,-6.812749e-31,-6.8326695e-31,-6.8525895e-31,-6.87251e-31,-6.8924303e-31,-6.9123506e-31,-6.932271e-31,-6.9521914e-31,-6.9721114e-31,-6.992032e-31,-7.011952e-31,-7.0318726e-31,-7.051793e-31,-7.0717134e-31,-7.0916333e-31,-7.1115537e-31,-7.131474e-31,-7.1513945e-31,-7.171315e-31,-7.1912353e-31,-7.211155e-31,-7.2310756e-31,-7.250996e-31,-7.2709164e-31,-7.290837e-31,-7.310757e-31,-7.330677e-31,-7.3505975e-31,-7.370518e-31,-7.3904383e-31,-7.4103587e-31,-7.430279e-31,-7.450199e-31,-7.4701194e-31,-7.49004e-31,-7.50996e-31,-7.5298806e-31,-7.549801e-31,-7.569721e-31,-7.5896413e-31,-7.6095617e-31,-7.629482e-31,-7.6494025e-31,-7.669323e-31,-7.689243e-31,-7.7091633e-31,-7.7290837e-31,-7.749004e-31,-7.7689244e-31,-7.788845e-31,-7.808765e-31,-7.828685e-31,-7.8486056e-31,-7.868526e-31,-7.8884464e-31,-7.908367e-31,-7.928287e-31,-7.948208e-31,-7.968128e-31,-7.988047e-31,-8.007968e-31,-8.027888e-31,-8.047809e-31,-8.067729e-31,-8.087649e-31,-8.10757e-31,-8.12749e-31,-8.147411e-31,-8.167331e-31,-8.187251e-31,-8.207172e-31,-8.227091e-31,-8.247012e-31,-8.266932e-31,-8.286852e-31,-8.306773e-31,-8.326693e-31,-8.346614e-31,-8.366534e-31,-8.386454e-31,-8.406375e-31,-8.426295e-31,-8.446216e-31,-8.466135e-31,-8.486055e-31,-8.505976e-31,-8.525896e-31,-8.545817e-31,-8.565737e-31,-8.585657e-31,-8.605578e-31,-8.625498e-31,-8.645419e-31,-8.665339e-31,-8.685259e-31,-8.705179e-31,-8.725099e-31,-8.74502e-31,-8.76494e-31,-8.7848605e-31,-8.804781e-31,-8.824701e-31,-8.844622e-31,-8.864542e-31,-8.8844625e-31,-8.904383e-31,-8.924302e-31,-8.944223e-31,-8.964143e-31,-8.9840635e-31,-9.003984e-31,-9.023904e-31,-9.043825e-31,-9.063745e-31,-9.0836655e-31,-9.103586e-31,-9.123506e-31,-9.143427e-31,-9.163346e-31,-9.183267e-31,-9.203187e-31,-9.223107e-31,-9.243028e-31,-9.262948e-31,-9.282869e-31,-9.302789e-31,-9.322709e-31,-9.34263e-31,-9.36255e-31,-9.382471e-31,-9.40239e-31,-9.42231e-31,-9.442231e-31,-9.462151e-31,-9.482072e-31,-9.501992e-31,-9.521912e-31,-9.541833e-31,-9.561753e-31,-9.581674e-31,-9.601594e-31,-9.621514e-31,-9.641434e-31,-9.661354e-31,-9.681275e-31,-9.701195e-31,-9.721115e-31,-9.741036e-31,-9.760956e-31,-9.780877e-31,-9.800797e-31,-9.820717e-31,-9.840638e-31,-9.860558e-31,-9.880478e-31,-9.900398e-31,-9.920318e-31,-9.940239e-31,-9.960159e-31,-9.98008e-31,-1.0e-30]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json index 55a2d49011e0..53ec2f8bd007 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/fixtures/julia/tiny_positive.json @@ -1 +1 @@ -{"expected":[691.4686750787736,691.4706690973605,691.4726671000032,691.4746691026537,691.4766751213604,691.4786851722681,691.4806992716194,691.4827174357553,691.4847396811155,691.4867660242401,691.4887964817698,691.4908310704468,691.4928698071158,691.4949127087247,691.4969597923252,691.4990110750747,691.5010665742357,691.5031263071774,691.5051902913768,691.5072585444194,691.5093310839998,691.511407927923,691.513489094105,691.5155746005743,691.5176644654717,691.5197587070529,691.5218573436877,691.5239603938622,691.5260678761796,691.5281798093603,691.5302962122441,691.5324171037907,691.5345425030804,691.5366724293154,691.5388069018212,691.540945940047,691.5430895635672,691.5452377920823,691.5473906454201,691.5495481435368,691.5517103065177,691.5538771545793,691.5560487080692,691.558224987468,691.5604060133904,691.5625918065864,691.5647823879422,691.5669777784814,691.5691779993667,691.5713830719006,691.573593017527,691.5758078578318,691.5780276145454,691.5802523095426,691.582481964845,691.5847166026214,691.5869562451896,691.5892009150182,691.5914506347268,691.5937054270884,691.5959653150302,691.5982303216352,691.600500470144,691.602775783955,691.6050562866277,691.6073420018823,691.6096329536025,691.6119291658364,691.6142306627981,691.6165374688693,691.6188496086008,691.6211671067142,691.6234899881033,691.6258182778357,691.6281520011546,691.6304911834802,691.6328358504119,691.6351860277291,691.6375417413938,691.6399030175514,691.6422698825336,691.6446423628589,691.6470204852355,691.6494042765623,691.651793763931,691.6541889746281,691.6565899361367,691.6589966761383,691.6614092225144,691.6638276033493,691.6662518469313,691.668681981755,691.671118036523,691.6735600401487,691.6760080217573,691.6784620106886,691.680922036499,691.6833881289638,691.6858603180784,691.6883386340621,691.6908231073587,691.69331376864,691.6958106488073,691.698313778994,691.7008231905678,691.7033389151333,691.7058609845341,691.7083894308554,691.7109242864262,691.7134655838225,691.7160133558688,691.7185676356411,691.7211284564698,691.723695851942,691.7262698559039,691.728850502464,691.7314378259953,691.7340318611385,691.7366326428047,691.7392402061777,691.7418545867174,691.7444758201627,691.7471039425344,691.7497389901375,691.7523809995653,691.7550300077016,691.7576860517244,691.7603491691083,691.7630193976283,691.765696775363,691.7683813406976,691.7710731323269,691.7737721892595,691.7764785508205,691.779192256655,691.7819133467323,691.7846418613481,691.7873778411295,691.7901213270374,691.7928723603712,691.7956309827722,691.7983972362266,691.8011711630708,691.8039528059937,691.8067422080422,691.8095394126241,691.8123444635122,691.8151574048491,691.8179782811508,691.820807137311,691.8236440186058,691.8264889706975,691.829342039639,691.8322032718789,691.8350727142656,691.8379504140516,691.8408364188989,691.8437307768833,691.8466335364989,691.8495447466638,691.8524644567243,691.8553927164604,691.8583295760905,691.8612750862766,691.8642292981302,691.8671922632168,691.8701640335617,691.8731446616551,691.8761342004586,691.8791327034098,691.8821402244283,691.885156817922,691.8881825387926,691.8912174424416,691.8942615847764,691.8973150222164,691.9003778116999,691.9034500106894,691.9065316771791,691.9096228697009,691.9127236473308,691.9158340696966,691.918954196984,691.9220840899438,691.925223809899,691.9283734187521,691.9315329789923,691.9347025537032,691.9378822065698,691.9410720018868,691.9442720045661,691.9474822801446,691.9507028947926,691.9539339153216,691.957175409193,691.9604274445263,691.9636900901077,691.9669634153989,691.970247490546,691.9735423863883,691.9768481744679,691.9801649270387,691.9834927170758,691.9868316182854,691.9901817051143,691.9935430527603,691.9969157371818,692.0002998351085,692.0036954240518,692.0071025823152,692.0105213890052,692.013951924043,692.0173942681745,692.0208485029826,692.0243147108988,692.0277929752144,692.031283380093,692.0347860105826,692.0383009526281,692.0418282930835,692.0453681197258,692.0489205212668,692.0524855873675,692.0560634086511,692.0596540767172,692.0632576841552,692.0668743245598,692.0705040925442,692.0741470837561,692.077803394892,692.0814731237134,692.0851563690617,692.0888532308744,692.0925638102018,692.0962882092231,692.1000265312636,692.1037788808114,692.1075453635357,692.1113260863038,692.1151211572001,692.1189306855439,692.122754781909,692.1265935581421,692.1304471273836,692.1343156040864,692.1381991040371,692.1420977443764,692.1460116436206,692.149940921683,692.1538856998959,692.1578461010332,692.1618222493336,692.1658142705231,692.16982229184,692.1738464420584,692.1778868515134,692.1819436521265,692.1860169774308,692.1901069625984,692.1942137444663,692.1983374615648,692.2024782541448,692.2066362642066,692.2108116355296,692.2150045137014,692.2192150461487,692.2234433821685,692.2276896729595,692.2319540716546,692.2362367333545,692.2405378151611,692.2448574762119,692.249195877716,692.2535531829897,692.2579295574933,692.2623251688694,692.2667401869807,692.2711747839498,692.2756291341996,692.280103414494,692.2845978039804,692.2891124842326,692.2936476392948,692.2982034557265,692.3027801226488,692.3073778317912,692.3119967775405,692.3166371569888,692.3212991699855,692.3259830191878,692.3306889101141,692.3354170511977,692.3401676538431,692.3449409324813,692.3497371046294,692.3545563909488,692.3593990153068,692.3642652048391,692.3691551900133,692.3740692046945,692.3790074862127,692.3839702754311,692.3889578168173,692.3939703585147,692.3990081524173,692.4040714542451,692.4091605236225,692.414275624158,692.4194170235257,692.4245849935501,692.4297798102917,692.435001754136,692.4402511098838,692.4455281668448,692.4508332189332,692.4561665647658,692.4615285077629,692.4669193562519,692.4723394235738,692.4777890281922,692.4832684938061,692.4887781494647,692.4943183296863,692.4998893745799,692.505491629971,692.5111254475299,692.5167911849045,692.5224892058561,692.5282198804002,692.5339835849502,692.5397807024658,692.545611622606,692.5514767418856,692.5573764638381,692.5633111991812,692.5692813659887,692.5752873898679,692.5813297041406,692.5874087500314,692.593524976861,692.5996788422453,692.6058708123007,692.6121013618565,692.6183709746728,692.6246801436662,692.6310293711425,692.6374191690363,692.643850059159,692.6503225734543,692.6568372542624,692.6633946545927,692.6699953384053,692.6766398809024,692.6833288688285,692.6900629007823,692.6968425875369,692.7036685523734,692.7105414314241,692.7174618740282,692.7244305431005,692.731448115512,692.7385152824843,692.7456327499989,692.7528012392195,692.7600214869314,692.7672942459949,692.7746202858175,692.7820003928417,692.7894353710517,692.7969260424992,692.8044732478487,692.8120778469436,692.8197407193943,692.8274627651889,692.8352449053269,692.8430880824792,692.8509932616726,692.858961431003,692.8669936023764,692.87509081228,692.8832541225845,692.891484621381,692.89978342385,692.908151673169,692.9165905414573,692.9251012307616,692.9336849740831,692.9423430364499,692.9510767160357,692.9598873453282,692.9687762923488,692.9777449619278,692.9867947970365,692.9959272801811,693.0051439348596,693.0144463270875,693.0238360669948,693.0333148104983,693.0428842610547,693.0525461714979,693.0623023459653,693.0721546419211,693.0821049722772,693.0921553076237,693.1023076785702,693.1125641782094,693.1229269647058,693.1333982640227,693.143980372791,693.1546756613336,693.1654865768511,693.1764156467837,693.1874654823573,693.1986387823287,693.2099383369417,693.2213670321096,693.2329278538397,693.2446238929161,693.25645834986,693.2684345401868,693.2805558999816,693.2928259918176,693.3052485110414,693.317827292454,693.3305663174168,693.3434697214168,693.3565418021263,693.3697870279957,693.3832100474233,693.3968156985499,693.4106090197271,693.4245952607198,693.4387798947017,693.4531686311144,693.4677674294657,693.482582514149,693.4976203903783,693.5128878613389,693.5283920466682,693.5441404023912,693.5601407424525,693.5764012619969,693.5929305625766,693.6097376794748,693.6268321113672,693.6442238525606,693.6619234280873,693.6799419319601,693.6982910689381,693.7169832001962,693.7360313933455,693.7554494773096,693.7752521026372,693.7954548079057,693.8160740929741,693.8371274999467,693.8586337028459,693.8806126071395,693.9030854604562,693.9260749760276,693.9496054706582,693.973703019322,693.9983956288514,694.0237134336178,694.0496889166337,694.0763571601454,694.1037561305648,694.1319270035474,694.1609145362021,694.1907674948776,694.2215391487906,694.2532878420448,694.2860776594698,694.3199792053754,694.3550705190045,694.3914381565351,694.4291784773669,694.4683991827972,694.5092211689507,694.5517807742754,694.5962325269252,694.6427525316943,694.6915426839114,694.7428359650884,694.7969031716804,694.8540615691151,694.9146861724756,694.9792246726965,695.0482175202787,695.1223254648501,695.2023681403441,695.2893794793034,695.3846896134714,695.4900500733514,695.6078330392857,695.7413643422674,695.895514902571,696.0778362920317,696.3009795923462,696.5886612464652,696.9941255179085,697.6872701884779,709.889355822726],"x":[1.0e-300,9.980079681474104e-301,9.960159362948208e-301,9.94023904442231e-301,9.920318725896415e-301,9.900398407370519e-301,9.880478088844623e-301,9.860557770318725e-301,9.840637451792829e-301,9.820717133266933e-301,9.800796814741037e-301,9.78087649621514e-301,9.760956177689243e-301,9.741035859163347e-301,9.721115540637451e-301,9.701195222111553e-301,9.681274903585657e-301,9.661354585059761e-301,9.641434266533865e-301,9.621513948007968e-301,9.601593629482072e-301,9.581673310956176e-301,9.56175299243028e-301,9.541832673904382e-301,9.521912355378486e-301,9.50199203685259e-301,9.482071718326694e-301,9.462151399800796e-301,9.4422310812749e-301,9.422310762749004e-301,9.402390444223108e-301,9.38247012569721e-301,9.362549807171315e-301,9.342629488645419e-301,9.322709170119523e-301,9.302788851593625e-301,9.282868533067729e-301,9.262948214541833e-301,9.243027896015937e-301,9.22310757749004e-301,9.203187258964143e-301,9.183266940438247e-301,9.163346621912351e-301,9.143426303386454e-301,9.123505984860558e-301,9.103585666334662e-301,9.083665347808766e-301,9.063745029282868e-301,9.043824710756972e-301,9.023904392231076e-301,9.00398407370518e-301,8.984063755179284e-301,8.964143436653386e-301,8.94422311812749e-301,8.924302799601594e-301,8.904382481075698e-301,8.8844621625498e-301,8.864541844023905e-301,8.844621525498009e-301,8.824701206972113e-301,8.804780888446215e-301,8.784860569920319e-301,8.764940251394423e-301,8.745019932868527e-301,8.725099614342629e-301,8.705179295816733e-301,8.685258977290837e-301,8.665338658764941e-301,8.645418340239043e-301,8.625498021713147e-301,8.605577703187251e-301,8.585657384661355e-301,8.565737066135458e-301,8.545816747609562e-301,8.525896429083666e-301,8.50597611055777e-301,8.486055792031872e-301,8.466135473505976e-301,8.44621515498008e-301,8.426294836454184e-301,8.406374517928286e-301,8.38645419940239e-301,8.366533880876494e-301,8.346613562350598e-301,8.3266932438247e-301,8.306772925298805e-301,8.286852606772909e-301,8.266932288247013e-301,8.247011969721115e-301,8.227091651195219e-301,8.207171332669323e-301,8.187251014143427e-301,8.16733069561753e-301,8.147410377091633e-301,8.127490058565737e-301,8.107569740039841e-301,8.087649421513944e-301,8.067729102988048e-301,8.047808784462152e-301,8.027888465936256e-301,8.00796814741036e-301,7.988047828884462e-301,7.968127510358566e-301,7.94820719183267e-301,7.928286873306774e-301,7.908366554780876e-301,7.88844623625498e-301,7.868525917729084e-301,7.848605599203188e-301,7.82868528067729e-301,7.808764962151395e-301,7.788844643625499e-301,7.768924325099603e-301,7.749004006573705e-301,7.729083688047809e-301,7.709163369521913e-301,7.689243050996017e-301,7.669322732470119e-301,7.649402413944223e-301,7.629482095418327e-301,7.609561776892431e-301,7.589641458366533e-301,7.569721139840637e-301,7.549800821314741e-301,7.529880502788845e-301,7.509960184262948e-301,7.490039865737052e-301,7.470119547211156e-301,7.450199228685259e-301,7.430278910159363e-301,7.410358591633466e-301,7.39043827310757e-301,7.370517954581673e-301,7.350597636055777e-301,7.33067731752988e-301,7.310756999003984e-301,7.2908366804780875e-301,7.2709163619521915e-301,7.250996043426295e-301,7.231075724900399e-301,7.211155406374502e-301,7.191235087848606e-301,7.171314769322709e-301,7.151394450796813e-301,7.131474132270916e-301,7.11155381374502e-301,7.091633495219123e-301,7.071713176693227e-301,7.051792858167331e-301,7.0318725396414344e-301,7.0119522211155384e-301,6.9920319025896416e-301,6.9721115840637456e-301,6.952191265537849e-301,6.932270947011953e-301,6.912350628486056e-301,6.89243030996016e-301,6.872509991434263e-301,6.852589672908367e-301,6.83266935438247e-301,6.812749035856574e-301,6.792828717330677e-301,6.772908398804781e-301,6.7529880802788845e-301,6.7330677617529885e-301,6.713147443227092e-301,6.693227124701196e-301,6.673306806175299e-301,6.653386487649403e-301,6.633466169123506e-301,6.61354585059761e-301,6.593625532071713e-301,6.573705213545817e-301,6.55378489501992e-301,6.533864576494024e-301,6.5139442579681274e-301,6.494023939442231e-301,6.4741036209163346e-301,6.4541833023904386e-301,6.434262983864542e-301,6.414342665338646e-301,6.394422346812749e-301,6.374502028286853e-301,6.354581709760956e-301,6.33466139123506e-301,6.314741072709163e-301,6.294820754183267e-301,6.27490043565737e-301,6.254980117131474e-301,6.2350597986055775e-301,6.2151394800796815e-301,6.195219161553785e-301,6.175298843027889e-301,6.155378524501992e-301,6.135458205976096e-301,6.115537887450199e-301,6.095617568924303e-301,6.075697250398407e-301,6.05577693187251e-301,6.035856613346614e-301,6.015936294820717e-301,5.996015976294821e-301,5.976095657768924e-301,5.956175339243028e-301,5.9362550207171316e-301,5.9163347021912356e-301,5.896414383665339e-301,5.876494065139443e-301,5.856573746613546e-301,5.83665342808765e-301,5.816733109561753e-301,5.796812791035857e-301,5.77689247250996e-301,5.756972153984064e-301,5.737051835458167e-301,5.717131516932271e-301,5.6972111984063745e-301,5.6772908798804785e-301,5.657370561354582e-301,5.637450242828686e-301,5.617529924302789e-301,5.597609605776893e-301,5.577689287250996e-301,5.5577689687251e-301,5.537848650199203e-301,5.517928331673307e-301,5.49800801314741e-301,5.478087694621514e-301,5.458167376095617e-301,5.438247057569721e-301,5.4183267390438246e-301,5.3984064205179285e-301,5.378486101992032e-301,5.358565783466136e-301,5.338645464940239e-301,5.318725146414343e-301,5.298804827888446e-301,5.27888450936255e-301,5.258964190836653e-301,5.239043872310757e-301,5.21912355378486e-301,5.199203235258964e-301,5.1792829167330675e-301,5.1593625982071715e-301,5.139442279681275e-301,5.119521961155379e-301,5.099601642629482e-301,5.079681324103586e-301,5.05976100557769e-301,5.039840687051793e-301,5.019920368525897e-301,5.00000005e-301,4.980079731474104e-301,4.960159412948207e-301,4.940239094422311e-301,4.920318775896414e-301,4.900398457370518e-301,4.8804781388446215e-301,4.8605578203187255e-301,4.840637501792829e-301,4.820717183266933e-301,4.800796864741036e-301,4.78087654621514e-301,4.760956227689243e-301,4.741035909163347e-301,4.72111559063745e-301,4.701195272111554e-301,4.681274953585657e-301,4.661354635059761e-301,4.6414343165338645e-301,4.6215139980079685e-301,4.601593679482072e-301,4.581673360956176e-301,4.561753042430279e-301,4.541832723904383e-301,4.521912405378486e-301,4.50199208685259e-301,4.482071768326693e-301,4.462151449800797e-301,4.4422311312749e-301,4.422310812749004e-301,4.402390494223107e-301,4.382470175697211e-301,4.3625498571713145e-301,4.3426295386454185e-301,4.322709220119522e-301,4.302788901593626e-301,4.282868583067729e-301,4.262948264541833e-301,4.243027946015936e-301,4.22310762749004e-301,4.203187308964143e-301,4.183266990438247e-301,4.16334667191235e-301,4.143426353386454e-301,4.1235060348605575e-301,4.1035857163346615e-301,4.0836653978087654e-301,4.063745079282869e-301,4.043824760756973e-301,4.023904442231076e-301,4.00398412370518e-301,3.984063805179283e-301,3.964143486653387e-301,3.94422316812749e-301,3.924302849601594e-301,3.904382531075697e-301,3.884462212549801e-301,3.864541894023904e-301,3.844621575498008e-301,3.8247012569721115e-301,3.8047809384462155e-301,3.784860619920319e-301,3.764940301394423e-301,3.745019982868526e-301,3.7250996643426294e-301,3.705179345816733e-301,3.6852590272908366e-301,3.66533870876494e-301,3.6454183902390437e-301,3.6254980717131477e-301,3.6055777531872513e-301,3.585657434661355e-301,3.5657371161354584e-301,3.545816797609562e-301,3.5258964790836656e-301,3.505976160557769e-301,3.4860558420318727e-301,3.4661355235059763e-301,3.44621520498008e-301,3.4262948864541835e-301,3.406374567928287e-301,3.3864542494023906e-301,3.366533930876494e-301,3.3466136123505978e-301,3.3266932938247014e-301,3.306772975298805e-301,3.2868526567729085e-301,3.266932338247012e-301,3.2470120197211157e-301,3.2270917011952192e-301,3.207171382669323e-301,3.1872510641434264e-301,3.16733074561753e-301,3.1474104270916335e-301,3.127490108565737e-301,3.1075697900398407e-301,3.0876494715139443e-301,3.067729152988048e-301,3.0478088344621514e-301,3.027888515936255e-301,3.0079681974103586e-301,2.988047878884462e-301,2.9681275603585657e-301,2.9482072418326693e-301,2.928286923306773e-301,2.9083666047808765e-301,2.88844628625498e-301,2.8685259677290836e-301,2.848605649203187e-301,2.8286853306772908e-301,2.8087650121513944e-301,2.788844693625498e-301,2.7689243750996015e-301,2.749004056573705e-301,2.7290837380478087e-301,2.7091634195219122e-301,2.689243100996016e-301,2.6693227824701194e-301,2.649402463944223e-301,2.629482145418327e-301,2.6095618268924305e-301,2.589641508366534e-301,2.5697211898406377e-301,2.5498008713147413e-301,2.529880552788845e-301,2.5099602342629484e-301,2.490039915737052e-301,2.4701195972111556e-301,2.450199278685259e-301,2.4302789601593627e-301,2.4103586416334663e-301,2.39043832310757e-301,2.3705180045816735e-301,2.350597686055777e-301,2.3306773675298806e-301,2.310757049003984e-301,2.2908367304780878e-301,2.2709164119521913e-301,2.250996093426295e-301,2.2310757749003985e-301,2.211155456374502e-301,2.1912351378486056e-301,2.1713148193227092e-301,2.151394500796813e-301,2.1314741822709164e-301,2.11155386374502e-301,2.0916335452191235e-301,2.071713226693227e-301,2.0517929081673307e-301,2.0318725896414343e-301,2.011952271115538e-301,1.9920319525896414e-301,1.972111634063745e-301,1.9521913155378486e-301,1.932270997011952e-301,1.9123506784860557e-301,1.8924303599601593e-301,1.872510041434263e-301,1.8525897229083667e-301,1.8326694043824702e-301,1.8127490858565738e-301,1.7928287673306774e-301,1.772908448804781e-301,1.7529881302788845e-301,1.7330678117529881e-301,1.7131474932270917e-301,1.6932271747011953e-301,1.6733068561752988e-301,1.6533865376494024e-301,1.633466219123506e-301,1.6135459005976096e-301,1.5936255820717132e-301,1.5737052635458167e-301,1.5537849450199203e-301,1.5338646264940239e-301,1.5139443079681275e-301,1.494023989442231e-301,1.4741036709163346e-301,1.4541833523904382e-301,1.4342630338645418e-301,1.4143427153386456e-301,1.3944223968127491e-301,1.3745020782868527e-301,1.3545817597609563e-301,1.3346614412350599e-301,1.3147411227091634e-301,1.294820804183267e-301,1.2749004856573706e-301,1.2549801671314742e-301,1.2350598486055777e-301,1.2151395300796813e-301,1.195219211553785e-301,1.1752988930278885e-301,1.155378574501992e-301,1.1354582559760956e-301,1.1155379374501992e-301,1.0956176189243028e-301,1.0756973003984064e-301,1.05577698187251e-301,1.0358566633466135e-301,1.015936344820717e-301,9.960160262948207e-302,9.760957077689242e-302,9.561753892430278e-302,9.362550707171314e-302,9.163347521912351e-302,8.964144336653387e-302,8.764941151394422e-302,8.565737966135458e-302,8.366534780876494e-302,8.16733159561753e-302,7.968128410358566e-302,7.768925225099602e-302,7.569722039840638e-302,7.370518854581674e-302,7.171315669322709e-302,6.972112484063745e-302,6.772909298804781e-302,6.573706113545817e-302,6.374502928286853e-302,6.175299743027888e-302,5.976096557768924e-302,5.77689337250996e-302,5.577690187250997e-302,5.378487001992032e-302,5.179283816733068e-302,4.980080631474104e-302,4.78087744621514e-302,4.5816742609561755e-302,4.382471075697211e-302,4.183267890438247e-302,3.984064705179283e-302,3.784861519920319e-302,3.585658334661355e-302,3.3864551494023906e-302,3.1872519641434264e-302,2.988048778884462e-302,2.788845593625498e-302,2.589642408366534e-302,2.39043922310757e-302,2.1912360378486057e-302,1.9920328525896415e-302,1.7928296673306773e-302,1.5936264820717133e-302,1.394423296812749e-302,1.1952201115537848e-302,9.960169262948207e-303,7.968137410358566e-303,5.976105557768925e-303,3.984073705179283e-303,1.9920418525896414e-303,9.999999999999456e-309]} +{"expected":[88.191376,75.989296,75.29615,74.890686,74.603004,74.37986,74.19754,74.04339,73.90986,73.792076,73.686714,73.5914,73.504395,73.42435,73.35024,73.28125,73.21671,73.15608,73.09893,73.04486,72.99357,72.94478,72.898254,72.853806,72.81124,72.770424,72.7312,72.69346,72.6571,72.622,72.588104,72.55531,72.52356,72.49279,72.46294,72.43395,72.40578,72.37838,72.351715,72.32574,72.30042,72.27573,72.25163,72.228096,72.20511,72.18263,72.16066,72.13915,72.118095,72.09748,72.07728,72.05747,72.038055,72.019005,72.00031,71.981964,71.96394,71.94625,71.928856,71.91176,71.89495,71.878426,71.86217,71.84616,71.830414,71.81491,71.799644,71.78461,71.76979,71.755196,71.74081,71.726616,71.71263,71.69884,71.685234,71.671814,71.65856,71.64549,71.63259,71.61985,71.60727,71.59485,71.58258,71.57046,71.55848,71.546646,71.53495,71.52339,71.51196,71.50066,71.48949,71.47844,71.46751,71.456696,71.44601,71.435425,71.42495,71.41459,71.40433,71.39418,71.384125,71.374176,71.36433,71.35457,71.34491,71.335335,71.32586,71.31647,71.30717,71.29795,71.28882,71.27977,71.2708,71.26191,71.2531,71.24437,71.23571,71.22713,71.21861,71.210175,71.201805,71.193504,71.18528,71.17712,71.169014,71.16099,71.153015,71.14511,71.13727,71.129486,71.121765,71.1141,71.1065,71.09895,71.09146,71.08402,71.076645,71.06932,71.06204,71.054825,71.04765,71.040535,71.03347,71.02645,71.019485,71.012566,71.00569,70.99886,70.99209,70.98535,70.97866,70.972015,70.965416,70.95886,70.95235,70.94588,70.939445,70.93305,70.926704,70.920395,70.91412,70.9079,70.9017,70.895546,70.889435,70.883354,70.87731,70.87131,70.86533,70.8594,70.8535,70.84763,70.841805,70.836006,70.830246,70.82452,70.81882,70.81315,70.80752,70.80191,70.79634,70.7908,70.78529,70.779816,70.77436,70.76894,70.76355,70.75819,70.75285,70.74755,70.74227,70.73702,70.731804,70.72661,70.72144,70.7163,70.71118,70.70609,70.701035,70.69599,70.69098,70.686,70.68103,70.676094,70.67118,70.66629,70.66142,70.65658,70.651764,70.646965,70.64219,70.63744,70.63271,70.628006,70.62332,70.61866,70.61402,70.6094,70.604805,70.60023,70.59567,70.59113,70.586624,70.58213,70.57765,70.5732,70.56876,70.56435,70.55995,70.55558,70.551216,70.54688,70.542564,70.53826,70.53398,70.52972,70.52547,70.52124,70.51703,70.51283,70.50866,70.5045,70.50036,70.49624,70.492134,70.48804,70.48397,70.47991,70.47587,70.47185,70.467834,70.463844,70.45987,70.45591,70.451965,70.44804,70.44412,70.44022,70.43634,70.43247,70.42862,70.42478,70.42095,70.417145,70.41335,70.40957,70.4058,70.402054,70.398315,70.394585,70.39088,70.38718,70.3835,70.37983,70.37617,70.37253,70.3689,70.36528,70.36168,70.358086,70.35451,70.350945,70.34739,70.34385,70.340324,70.33681,70.333305,70.32982,70.32634,70.32287,70.31942,70.31598,70.312546,70.30913,70.30572,70.30232,70.29894,70.29557,70.292206,70.28886,70.285515,70.28219,70.27887,70.275566,70.27227,70.26899,70.26572,70.26245,70.2592,70.25596,70.25272,70.249504,70.24629,70.243095,70.23991,70.236725,70.23356,70.2304,70.22725,70.224106,70.22098,70.21786,70.214745,70.21165,70.20856,70.205475,70.2024,70.19934,70.19628,70.19324,70.19021,70.18718,70.184166,70.18116,70.178154,70.17517,70.17219,70.16921,70.16625,70.1633,70.160355,70.15742,70.15449,70.151566,70.14866,70.14575,70.14286,70.13998,70.13709,70.134224,70.13136,70.12851,70.12566,70.12283,70.12,70.11718,70.114365,70.111565,70.108765,70.10598,70.103195,70.10042,70.09766,70.094894,70.09215,70.0894,70.08666,70.08394,70.081215,70.0785,70.0758,70.0731,70.070404,70.06772,70.06504,70.06237,70.05971,70.05705,70.054405,70.051765,70.049126,70.0465,70.04388,70.04127,70.03866,70.03606,70.03346,70.030876,70.02829,70.02572,70.023155,70.02059,70.018036,70.01549,70.01295,70.010414,70.00788,70.00536,70.002846,70.000336,69.99783,69.99534,69.99284,69.990364,69.987885,69.98541,69.98295,69.980484,69.978035,69.975586,69.973145,69.9707,69.96828,69.96585,69.96343,69.96102,69.95861,69.956215,69.95382,69.95143,69.94904,69.94666,69.94429,69.941925,69.93957,69.93721,69.93486,69.93252,69.930176,69.92784,69.925514,69.92319,69.920876,69.918564,69.91625,69.913956,69.91166,69.90936,69.90708,69.9048,69.90253,69.90025,69.89799,69.89573,69.89347,69.89123,69.88898,69.88674,69.88451,69.88228,69.88005,69.87783,69.87562,69.873405,69.8712,69.869,69.866806,69.86462,69.86243,69.860245,69.85807,69.8559,69.85374,69.85157,69.84941,69.84726,69.845116,69.84297,69.84083,69.8387,69.83656,69.83444,69.83232,69.8302,69.828094,69.82598,69.82388,69.821785,69.81969,69.8176,69.81551,69.81343,69.811356,69.80928,69.80721,69.80515,69.80309,69.80103,69.79898,69.796936,69.79489,69.792854,69.79082,69.78879,69.786766,69.784744,69.78272,69.78071,69.7787,69.776695,69.77469,69.77269,69.7707],"x":[1.0e-38,1.9920418e-33,3.9840736e-33,5.9761056e-33,7.968138e-33,9.960169e-33,1.1952201e-32,1.3944233e-32,1.5936265e-32,1.7928296e-32,1.9920328e-32,2.1912361e-32,2.3904392e-32,2.5896423e-32,2.7888457e-32,2.9880487e-32,3.1872518e-32,3.3864552e-32,3.5856583e-32,3.7848614e-32,3.9840648e-32,4.183268e-32,4.382471e-32,4.5816744e-32,4.7808775e-32,4.9800806e-32,5.179284e-32,5.378487e-32,5.57769e-32,5.7768935e-32,5.9760963e-32,6.1752997e-32,6.374503e-32,6.573706e-32,6.772909e-32,6.9721127e-32,7.1713155e-32,7.370519e-32,7.569722e-32,7.768925e-32,7.9681284e-32,8.167332e-32,8.3665346e-32,8.565738e-32,8.7649414e-32,8.964144e-32,9.1633476e-32,9.362551e-32,9.561754e-32,9.760957e-32,9.96016e-32,1.0159364e-31,1.0358567e-31,1.055777e-31,1.0756973e-31,1.0956176e-31,1.1155379e-31,1.1354583e-31,1.1553786e-31,1.1752989e-31,1.1952193e-31,1.2151395e-31,1.2350598e-31,1.2549802e-31,1.2749005e-31,1.2948208e-31,1.3147412e-31,1.3346615e-31,1.3545817e-31,1.3745021e-31,1.3944224e-31,1.4143427e-31,1.434263e-31,1.4541834e-31,1.4741037e-31,1.4940239e-31,1.5139443e-31,1.5338646e-31,1.5537849e-31,1.5737053e-31,1.5936256e-31,1.6135458e-31,1.6334662e-31,1.6533865e-31,1.6733068e-31,1.6932272e-31,1.7131475e-31,1.7330678e-31,1.7529882e-31,1.7729084e-31,1.7928287e-31,1.8127491e-31,1.8326694e-31,1.8525897e-31,1.8725101e-31,1.8924304e-31,1.9123506e-31,1.932271e-31,1.9521913e-31,1.9721116e-31,1.992032e-31,2.0119524e-31,2.0318725e-31,2.051793e-31,2.0717133e-31,2.0916335e-31,2.111554e-31,2.131474e-31,2.1513945e-31,2.1713149e-31,2.191235e-31,2.2111554e-31,2.2310758e-31,2.250996e-31,2.2709164e-31,2.2908368e-31,2.310757e-31,2.3306773e-31,2.3505977e-31,2.370518e-31,2.3904383e-31,2.4103587e-31,2.4302789e-31,2.4501992e-31,2.4701196e-31,2.4900398e-31,2.5099602e-31,2.5298806e-31,2.5498008e-31,2.5697212e-31,2.5896416e-31,2.6095617e-31,2.6294821e-31,2.6494025e-31,2.6693227e-31,2.689243e-31,2.7091635e-31,2.7290836e-31,2.749004e-31,2.7689244e-31,2.7888446e-31,2.808765e-31,2.8286854e-31,2.8486056e-31,2.868526e-31,2.8884463e-31,2.9083665e-31,2.928287e-31,2.9482073e-31,2.9681275e-31,2.9880479e-31,3.0079683e-31,3.0278884e-31,3.0478088e-31,3.0677292e-31,3.0876494e-31,3.1075698e-31,3.1274902e-31,3.1474103e-31,3.1673307e-31,3.1872511e-31,3.2071713e-31,3.2270917e-31,3.247012e-31,3.2669323e-31,3.2868527e-31,3.306773e-31,3.3266932e-31,3.3466136e-31,3.366534e-31,3.3864542e-31,3.4063746e-31,3.426295e-31,3.4462151e-31,3.4661355e-31,3.486056e-31,3.505976e-31,3.5258965e-31,3.5458169e-31,3.565737e-31,3.5856574e-31,3.6055778e-31,3.625498e-31,3.6454184e-31,3.6653388e-31,3.685259e-31,3.7051794e-31,3.7250998e-31,3.74502e-31,3.7649403e-31,3.7848607e-31,3.8047809e-31,3.8247013e-31,3.8446217e-31,3.8645418e-31,3.8844622e-31,3.9043826e-31,3.9243028e-31,3.9442232e-31,3.9641436e-31,3.984064e-31,4.003984e-31,4.0239043e-31,4.0438247e-31,4.063745e-31,4.0836655e-31,4.103586e-31,4.123506e-31,4.143426e-31,4.1633466e-31,4.183267e-31,4.2031874e-31,4.223108e-31,4.2430277e-31,4.262948e-31,4.2828685e-31,4.302789e-31,4.3227093e-31,4.3426297e-31,4.3625496e-31,4.38247e-31,4.4023904e-31,4.422311e-31,4.4422312e-31,4.4621516e-31,4.4820716e-31,4.501992e-31,4.5219124e-31,4.5418328e-31,4.561753e-31,4.5816735e-31,4.6015935e-31,4.621514e-31,4.6414343e-31,4.6613547e-31,4.681275e-31,4.7011955e-31,4.7211154e-31,4.741036e-31,4.760956e-31,4.7808766e-31,4.800797e-31,4.8207174e-31,4.8406373e-31,4.8605577e-31,4.880478e-31,4.9003985e-31,4.920319e-31,4.9402393e-31,4.960159e-31,4.9800796e-31,5.0e-31,5.0199204e-31,5.039841e-31,5.059761e-31,5.079681e-31,5.0996015e-31,5.119522e-31,5.1394423e-31,5.1593627e-31,5.179283e-31,5.199203e-31,5.2191234e-31,5.239044e-31,5.2589642e-31,5.2788846e-31,5.298805e-31,5.318725e-31,5.3386454e-31,5.3585658e-31,5.378486e-31,5.3984066e-31,5.418327e-31,5.438247e-31,5.4581673e-31,5.4780877e-31,5.498008e-31,5.5179285e-31,5.537849e-31,5.557769e-31,5.577689e-31,5.5976096e-31,5.61753e-31,5.6374504e-31,5.657371e-31,5.6772907e-31,5.697211e-31,5.7171315e-31,5.737052e-31,5.7569723e-31,5.7768927e-31,5.7968126e-31,5.816733e-31,5.8366534e-31,5.856574e-31,5.876494e-31,5.8964146e-31,5.9163345e-31,5.936255e-31,5.9561753e-31,5.9760957e-31,5.996016e-31,6.0159365e-31,6.0358565e-31,6.055777e-31,6.0756972e-31,6.0956176e-31,6.115538e-31,6.1354584e-31,6.1553784e-31,6.1752988e-31,6.195219e-31,6.2151396e-31,6.23506e-31,6.25498e-31,6.2749003e-31,6.2948207e-31,6.314741e-31,6.3346615e-31,6.354582e-31,6.374502e-31,6.394422e-31,6.4143426e-31,6.434263e-31,6.4541834e-31,6.474104e-31,6.4940237e-31,6.513944e-31,6.5338645e-31,6.553785e-31,6.5737053e-31,6.5936257e-31,6.6135456e-31,6.633466e-31,6.6533864e-31,6.673307e-31,6.693227e-31,6.7131476e-31,6.7330675e-31,6.752988e-31,6.7729083e-31,6.7928287e-31,6.812749e-31,6.8326695e-31,6.8525895e-31,6.87251e-31,6.8924303e-31,6.9123506e-31,6.932271e-31,6.9521914e-31,6.9721114e-31,6.992032e-31,7.011952e-31,7.0318726e-31,7.051793e-31,7.0717134e-31,7.0916333e-31,7.1115537e-31,7.131474e-31,7.1513945e-31,7.171315e-31,7.1912353e-31,7.211155e-31,7.2310756e-31,7.250996e-31,7.2709164e-31,7.290837e-31,7.310757e-31,7.330677e-31,7.3505975e-31,7.370518e-31,7.3904383e-31,7.4103587e-31,7.430279e-31,7.450199e-31,7.4701194e-31,7.49004e-31,7.50996e-31,7.5298806e-31,7.549801e-31,7.569721e-31,7.5896413e-31,7.6095617e-31,7.629482e-31,7.6494025e-31,7.669323e-31,7.689243e-31,7.7091633e-31,7.7290837e-31,7.749004e-31,7.7689244e-31,7.788845e-31,7.808765e-31,7.828685e-31,7.8486056e-31,7.868526e-31,7.8884464e-31,7.908367e-31,7.928287e-31,7.948208e-31,7.968128e-31,7.988047e-31,8.007968e-31,8.027888e-31,8.047809e-31,8.067729e-31,8.087649e-31,8.10757e-31,8.12749e-31,8.147411e-31,8.167331e-31,8.187251e-31,8.207172e-31,8.227091e-31,8.247012e-31,8.266932e-31,8.286852e-31,8.306773e-31,8.326693e-31,8.346614e-31,8.366534e-31,8.386454e-31,8.406375e-31,8.426295e-31,8.446216e-31,8.466135e-31,8.486055e-31,8.505976e-31,8.525896e-31,8.545817e-31,8.565737e-31,8.585657e-31,8.605578e-31,8.625498e-31,8.645419e-31,8.665339e-31,8.685259e-31,8.705179e-31,8.725099e-31,8.74502e-31,8.76494e-31,8.7848605e-31,8.804781e-31,8.824701e-31,8.844622e-31,8.864542e-31,8.8844625e-31,8.904383e-31,8.924302e-31,8.944223e-31,8.964143e-31,8.9840635e-31,9.003984e-31,9.023904e-31,9.043825e-31,9.063745e-31,9.0836655e-31,9.103586e-31,9.123506e-31,9.143427e-31,9.163346e-31,9.183267e-31,9.203187e-31,9.223107e-31,9.243028e-31,9.262948e-31,9.282869e-31,9.302789e-31,9.322709e-31,9.34263e-31,9.36255e-31,9.382471e-31,9.40239e-31,9.42231e-31,9.442231e-31,9.462151e-31,9.482072e-31,9.501992e-31,9.521912e-31,9.541833e-31,9.561753e-31,9.581674e-31,9.601594e-31,9.621514e-31,9.641434e-31,9.661354e-31,9.681275e-31,9.701195e-31,9.721115e-31,9.741036e-31,9.760956e-31,9.780877e-31,9.800797e-31,9.820717e-31,9.840638e-31,9.860558e-31,9.880478e-31,9.900398e-31,9.920318e-31,9.940239e-31,9.960159e-31,9.98008e-31,1.0e-30]} diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js index b155d1d95a1a..f9fb648531ee 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js @@ -211,6 +211,7 @@ tape( 'the function computes the hyperbolic arccosecant on the interval [28.0,10 } t.end(); }); + tape( 'the function computes the hyperbolic arccosecant on the interval [-100.0,-28.0]', function test( t ) { var expected; var x; diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js index 9fab59a8d344..40ee9b2d89b8 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js @@ -104,6 +104,7 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-1.0,- } t.end(); }); + tape( 'the function computes the hyperbolic arccosecant on the interval `[0.8,1.0]`', opts, function test( t ) { var expected; var x; From c8b533f293b86da7a89dc5094b672cea7ed3fd04 Mon Sep 17 00:00:00 2001 From: ivishal-g Date: Tue, 24 Feb 2026 18:01:18 +0530 Subject: [PATCH 7/8] chore: changes according to code review --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../math/base/special/acschf/test/test.js | 16 ++++++++++------ .../math/base/special/acschf/test/test.native.js | 16 ++++++++++------ 2 files changed, 20 insertions(+), 12 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js index f9fb648531ee..bc334729e8a4 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.js @@ -230,7 +230,7 @@ tape( 'the function computes the hyperbolic arccosecant on the interval [-100.0, t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval [-1e200,-1e208]', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [-1e30,-1e38]', function test( t ) { var expected; var x; var y; @@ -248,7 +248,7 @@ tape( 'the function computes the hyperbolic arccosecant on the interval [-1e200, t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval [1e300,1e308]', function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval [1e30,1e38]', function test( t ) { var expected; var x; var y; @@ -286,22 +286,26 @@ tape( 'the function returns +0 if provided +infinity', function test( t ) { }); tape( 'the function evaluates the inverse hyperbolic arccosecant for tiny negative values', function test( t ) { + var x; var i; var v; - for ( i = 0; i < tinyNegative.length; i++ ) { - v = acschf( tinyNegative[ i ] ); + x = tinyNegative.x; + for ( i = 0; i < x.length; i++ ) { + v = acschf( x[ i ] ); t.strictEqual( isnanf( v ), false, 'does not return NaN' ); } t.end(); }); tape( 'the function evaluates the inverse hyperbolic arccosecant for tiny positive values', function test( t ) { + var x; var i; var v; - for ( i = 0; i < tinyPositive.length; i++ ) { - v = acschf( tinyPositive[ i ] ); + x = tinyPositive.x; + for ( i = 0; i < x.length; i++ ) { + v = acschf( x[ i ] ); t.strictEqual( isnanf( v ), false, 'does not return NaN' ); } t.end(); diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js index 40ee9b2d89b8..48a1f92dbf03 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/acschf/test/test.native.js @@ -232,7 +232,7 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-100.0 t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e200,-1e208]`', opts, function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e30,-1e38]`', opts, function test( t ) { var expected; var x; var y; @@ -251,7 +251,7 @@ tape( 'the function computes the hyperbolic arccosecant on the interval `[-1e200 t.end(); }); -tape( 'the function computes the hyperbolic arccosecant on the interval `[1e300,1e308]`', opts, function test( t ) { +tape( 'the function computes the hyperbolic arccosecant on the interval `[1e30,1e38]`', opts, function test( t ) { var expected; var x; var y; @@ -301,22 +301,26 @@ tape( 'the function returns `+0` if provided `+infinity`', opts, function test( }); tape( 'the native function evaluates the inverse hyperbolic arccosecant for tiny negative values', opts, function test( t ) { + var x; var i; var v; - for ( i = 0; i < tinyNegative.length; i++ ) { - v = acschf( tinyNegative[ i ] ); + x = tinyNegative.x; + for ( i = 0; i < x.length; i++ ) { + v = acschf( x[ i ] ); t.strictEqual( isnanf( v ), false, 'does not return NaN' ); } t.end(); }); tape( 'the native function evaluates the inverse hyperbolic arccosecant for tiny positive values', opts, function test( t ) { + var x; var i; var v; - for ( i = 0; i < tinyPositive.length; i++ ) { - v = acschf( tinyPositive[ i ] ); + x = tinyPositive.x; + for ( i = 0; i < x.length; i++ ) { + v = acschf( x[ i ] ); t.strictEqual( isnanf( v ), false, 'does not return NaN' ); } t.end(); From 2ab8d2f187d6605e96f25b74e20c0861f5f69893 Mon Sep 17 00:00:00 2001 From: Vishal Gaikwad Date: Wed, 4 Mar 2026 07:33:42 +0530 Subject: [PATCH 8/8] chore: changes according to review --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: missing_dependencies - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- lib/node_modules/@stdlib/math/base/special/acschf/README.md | 4 ++-- .../@stdlib/math/base/special/acschf/examples/c/example.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/README.md b/lib/node_modules/@stdlib/math/base/special/acschf/README.md index 6198f2566c4f..1a5b7b674d41 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acschf/README.md @@ -111,11 +111,11 @@ logEachMap( 'acschf(%0.4f) = %0.4f', x, acschf ); #### stdlib_base_acschf( x ) -> Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number. +Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a single-precision floating-point number. ```c float out = stdlib_base_acschf( 1.0f ); -// returns ~0.881 +// returns ~0.881f ``` The function accepts the following arguments: diff --git a/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c index 0123240e585a..6d7230d7b415 100644 --- a/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c +++ b/lib/node_modules/@stdlib/math/base/special/acschf/examples/c/example.c @@ -20,7 +20,7 @@ #include int main( void ) { - const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.55f, 0.55f, 1.67f, 2.78f, 3.89f, 5.0f }; + const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.55f, 0.55f, 1.67f, 2.78f, 3.89f, 5.0f }; float v; int i;