From 458d5a175647893de6d550cdc5fa8e3a96957ca4 Mon Sep 17 00:00:00 2001 From: JithinKS97 Date: Sun, 21 Jun 2020 09:30:22 +0530 Subject: [PATCH 01/10] created a new folder acot and copied files from acoth to it --- .../@stdlib/math/base/special/acot/README.md | 87 ++++++ .../base/special/acot/benchmark/benchmark.js | 51 ++++ .../base/special/acot/benchmark/c/Makefile | 107 ++++++++ .../base/special/acot/benchmark/c/benchmark.c | 134 ++++++++++ .../base/special/acot/benchmark/julia/REQUIRE | 2 + .../special/acot/benchmark/julia/benchmark.jl | 143 ++++++++++ .../acot/benchmark/python/benchmark.py | 97 +++++++ .../base/special/acot/benchmark/r/DESCRIPTION | 9 + .../base/special/acot/benchmark/r/benchmark.R | 109 ++++++++ .../math/base/special/acot/docs/repl.txt | 35 +++ .../base/special/acot/docs/types/index.d.ts | 52 ++++ .../math/base/special/acot/docs/types/test.ts | 44 +++ .../math/base/special/acot/examples/index.js | 29 ++ .../math/base/special/acot/lib/index.js | 52 ++++ .../math/base/special/acot/lib/main.js | 61 +++++ .../math/base/special/acot/package.json | 74 ++++++ .../special/acot/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 + .../acot/test/fixtures/julia/runner.jl | 92 +++++++ .../math/base/special/acot/test/test.js | 250 ++++++++++++++++++ 27 files changed, 1438 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/README.md create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/REQUIRE create mode 100755 lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl create mode 100755 lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/DESCRIPTION create mode 100755 lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/examples/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/lib/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/lib/main.js create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/package.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_positive.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_positive.json create mode 100755 lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/acot/test/test.js diff --git a/lib/node_modules/@stdlib/math/base/special/acot/README.md b/lib/node_modules/@stdlib/math/base/special/acot/README.md new file mode 100644 index 000000000000..745d55f36a8f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/README.md @@ -0,0 +1,87 @@ + + +# acoth + +> Compute the [inverse hyperbolic cotangent][hyperbolic-arctangent] of a number. + +
+ +## Usage + +```javascript +var acoth = require( '@stdlib/math/base/special/acoth' ); +``` + +#### acoth( x ) + +Computes the [inverse hyperbolic cotangent][hyperbolic-arctangent] of a `number` (in radians). + +```javascript +var v = acoth( 2.0 ); +// returns ~0.5493 + +v = acoth( 1.0 ); +// returns Infinity +``` + +The domain of the inverse hyperbolic cotangent is the union of the intervals `(-inf,-1]` and `[1,inf)`. If provided a value on the open interval `(-1,1)`, the function returns `NaN`. + +```javascript +var v = acoth( 0.0 ); +// returns NaN + +v = acoth( 0.5 ); +// returns NaN +``` + +
+ + + +
+ +## Examples + + + +```javascript +var linspace = require( '@stdlib/math/utils/linspace' ); +var acoth = require( '@stdlib/math/base/special/acoth' ); + +var x = linspace( 1.0, 5.0, 100 ); +var i; + +for ( i = 0; i < x.length; i++ ) { + console.log( acoth( x[ i ] ) ); +} +``` + +
+ + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js new file mode 100644 index 000000000000..f5dda57ebaf8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js @@ -0,0 +1,51 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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 randu = require( '@stdlib/random/base/randu' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var pkg = require( './../package.json' ).name; +var acoth = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var x; + var y; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + x = ( randu()*100.0 ) + 1.1; + y = acoth( x ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/Makefile new file mode 100644 index 000000000000..e4542b1e66e9 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/Makefile @@ -0,0 +1,107 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2018 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 := @ +endif + +# Determine the OS: +# +# [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 +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]: 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 C targets: +c_targets := benchmark.out + + +# TARGETS # + +# Default target. +# +# This target is the default target. + +all: $(c_targets) + +.PHONY: all + + +# Compile C source. +# +# This target compiles C source files. + +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) -o $@ $< -lm + + +# Run a benchmark. +# +# This target runs a benchmark. + +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + + +# Perform clean-up. +# +# This target removes generated files. + +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c new file mode 100644 index 000000000000..3c3e445f598f --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c @@ -0,0 +1,134 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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. +*/ + +/** +* Benchmark `acoth`. +*/ +#include +#include +#include +#include + +#define NAME "acoth" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +void print_version() { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +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 +*/ +double tic() { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random double on the interval [0,1]. +* +* @return random double +*/ +double rand_double() { + int r = rand(); + return (double)r / ( (double)RAND_MAX + 1.0 ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +double benchmark() { + double elapsed; + double x; + double y; + double t; + int i; + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + x = ( 100.0*rand_double() ) + 1.1; + y = atanh( 1.0/x ); + 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; + + // Use the current time to seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::%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/acot/benchmark/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/REQUIRE new file mode 100644 index 000000000000..11b2b096cae4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 0.5 +BenchmarkTools 0.0.8 diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl new file mode 100755 index 000000000000..ca08370466e6 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl @@ -0,0 +1,143 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2018 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 + +# Benchmark variables: +name = "acoth"; +repeats = 3; + +""" + print_version() + +Prints the TAP version. + +# Examples + +``` julia +julia> print_version() +``` +""" +function print_version() + @printf( "TAP version 13\n" ); +end + +""" + print_summary( total, passing ) + +Print the benchmark summary. + +# Arguments + +* `total`: total number of tests +* `passing`: number of passing tests + +# Examples + +``` julia +julia> print_summary( 3, 3 ) +``` +""" +function print_summary( total, passing ) + @printf( "#\n" ); + @printf( "1..%d\n", total ); # TAP plan + @printf( "# total %d\n", total ); + @printf( "# pass %d\n", passing ); + @printf( "#\n" ); + @printf( "# ok\n" ); +end + +""" + print_results( iterations, elapsed ) + +Print benchmark results. + +# Arguments + +* `iterations`: number of iterations +* `elapsed`: elapsed time (in seconds) + +# Examples + +``` julia +julia> print_results( 1000000, 0.131009101868 ) +``` +""" +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. + +# Notes + +* Benchmark results are returned as a two-element array: [ iterations, elapsed ]. +* The number of iterations is not the true number of iterations. Instead, an 'iteration' is defined as a 'sample', which is a computed estimate for a single evaluation. +* The elapsed time is in seconds. + +# Examples + +``` julia +julia> out = benchmark(); +``` +""" +function benchmark() + t = BenchmarkTools.@benchmark acoth( (100.0*rand()) + 1.1 ) samples=1e6 + + # Compute the total "elapsed" time and convert from nanoseconds to seconds: + s = sum( t.times ) / 1.0e9; + + # Determine the number of "iterations": + iter = length( t.times ); + + # Return the results: + [ iter, s ]; +end + +""" + main() + +Run benchmarks. + +# Examples + +``` julia +julia> main(); +``` +""" +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/acot/benchmark/python/benchmark.py b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py new file mode 100755 index 000000000000..f0d9271a1ce6 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py @@ -0,0 +1,97 @@ +#!/usr/bin/env python +# +# @license Apache-2.0 +# +# Copyright (c) 2018 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. + +"""Benchmark acoth.""" + +from __future__ import print_function +import timeit + +NAME = "acoth" +REPEATS = 3 +ITERATIONS = 1000000 + + +def print_version(): + """Print the TAP version.""" + print("TAP version 13") + + +def print_summary(total, passing): + """Print the benchmark summary. + + # Arguments + + * `total`: total number of tests + * `passing`: number of passing tests + + """ + print("#") + print("1.." + str(total)) # TAP plan + print("# total " + str(total)) + print("# pass " + str(passing)) + print("#") + print("# ok") + + +def print_results(elapsed): + """Print benchmark results. + + # Arguments + + * `elapsed`: elapsed time (in seconds) + + # Examples + + ``` python + python> print_results(0.131009101868) + ``` + """ + rate = ITERATIONS / elapsed + + print(" ---") + print(" iterations: " + str(ITERATIONS)) + print(" elapsed: " + str(elapsed)) + print(" rate: " + str(rate)) + print(" ...") + + +def benchmark(): + """Run the benchmark and print benchmark results.""" + setup = "from math import atanh; from random import random;" + stmt = "y = atanh(1.0 / ((100.0*random()) + 1.1))" + + t = timeit.Timer(stmt, setup=setup) + + print_version() + + for i in xrange(REPEATS): + print("# python::" + NAME) + elapsed = t.timeit(number=ITERATIONS) + print_results(elapsed) + print("ok " + str(i+1) + " benchmark finished") + + print_summary(REPEATS, REPEATS) + + +def main(): + """Run the benchmark.""" + benchmark() + + +if __name__ == "__main__": + main() diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/DESCRIPTION b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/DESCRIPTION new file mode 100644 index 000000000000..d309fb28ec36 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/DESCRIPTION @@ -0,0 +1,9 @@ +Package: acoth-benchmarks +Title: Benchmarks +Version: 0.0.0 +Authors@R: person("stdlib", "js", role = c("aut","cre")) +Description: Benchmarks. +Depends: R (>=3.4.0) +Imports: + microbenchmark +LazyData: true diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R new file mode 100755 index 000000000000..05ecc4415628 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R @@ -0,0 +1,109 @@ +#!/usr/bin/env Rscript +# +# @license Apache-2.0 +# +# Copyright (c) 2018 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. + +# Set the precision to 16 digits: +options( digits = 16 ); + +#' Run benchmarks. +#' +#' @examples +#' main(); +main <- function() { + # Define benchmark parameters: + name <- "acoth"; + iterations <- 1000000L; + repeats <- 3; + + #' Print the TAP version. + #' + #' @examples + #' print_version(); + print_version <- function() { + cat( "TAP version 13\n" ); + } + + #' Print the TAP summary. + #' + #' @param total Total number of tests. + #' @param passing Total number of passing tests. + #' + #' @examples + #' print_summary( 3, 3 ); + print_summary <- function( total, passing ) { + cat( "#\n" ); + cat( paste0( "1..", total, "\n" ) ); # TAP plan + cat( paste0( "# total ", total, "\n" ) ); + cat( paste0( "# pass ", passing, "\n" ) ); + cat( "#\n" ); + cat( "# ok\n" ); + } + + #' Print benchmark results. + #' + #' @param iterations Number of iterations. + #' @param elapsed Elapsed time in seconds. + #' + #' @examples + #' print_results( 10000L, 0.131009101868 ); + print_results <- function( iterations, elapsed ) { + rate <- iterations / elapsed; + cat( " ---\n" ); + cat( paste0( " iterations: ", iterations, "\n" ) ); + cat( paste0( " elapsed: ", elapsed, "\n" ) ); + cat( paste0( " rate: ", rate, "\n" ) ); + cat( " ...\n" ); + } + + #' Run a benchmark. + #' + #' ## Notes + #' + #' * We compute and return a total "elapsed" time, rather than the minimum + #' evaluation time, to match benchmark results in other languages (e.g., + #' Python). + #' + #' + #' @param iterations Number of Iterations. + #' @return Elapsed time in seconds. + #' + #' @examples + #' elapsed <- benchmark( 10000L ); + benchmark <- function( iterations ) { + # Run the benchmarks: + results <- microbenchmark::microbenchmark( atanh( 1.0 / ( (100.0*runif(1)) + 1.1 ) ), times = iterations ); + + # Sum all the raw timing results to get a total "elapsed" time: + elapsed <- sum( results$time ); + + # Convert the elapsed time from nanoseconds to seconds: + elapsed <- elapsed / 1.0e9; + + return( elapsed ); + } + + print_version(); + for ( i in 1:repeats ) { + cat( paste0( "# r::", name, "\n" ) ); + elapsed <- benchmark( iterations ); + print_results( iterations, elapsed ); + cat( paste0( "ok ", i, " benchmark finished", "\n" ) ); + } + print_summary( repeats, repeats ); +} + +main(); diff --git a/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt new file mode 100644 index 000000000000..f67227cf0721 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt @@ -0,0 +1,35 @@ + +{{alias}}( x ) + Computes the inverse hyperbolic cotangent of a number. + + The domain of the inverse hyperbolic cotangent is the union of the intervals + (-inf,-1] and [1,inf). + + If provided a value on the open interval (-1,1), the function returns `NaN`. + + Parameters + ---------- + x: number + Input value. + + Returns + ------- + y: number + Inverse hyperbolic cotangent (in radians). + + Examples + -------- + > var y = {{alias}}( 2.0 ) + ~0.5493 + > y = {{alias}}( 0.0 ) + NaN + > y = {{alias}}( 0.5 ) + NaN + > y = {{alias}}( 1.0 ) + Infinity + > y = {{alias}}( NaN ) + NaN + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts new file mode 100644 index 000000000000..617e883bc5d0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts @@ -0,0 +1,52 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2019 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: 2.0 + +/** +* Computes the inverse hyperbolic cotangent of a number. +* +* @param x - input value +* @returns inverse hyperbolic cotangent (in radians) +* +* @example +* var v = acoth( 2.0 ); +* // returns ~0.5493 +* +* @example +* var v = acoth( 0.0 ); +* // returns NaN +* +* @example +* var v = acoth( 0.5 ); +* // returns NaN +* +* @example +* var v = acoth( 1.0 ); +* // returns Infinity +* +* @example +* var v = acoth( NaN ); +* // returns NaN +*/ +declare function acoth( x: number ): number; + + +// EXPORTS // + +export = acoth; diff --git a/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts new file mode 100644 index 000000000000..e158ec94bd9a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2019 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 acoth = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + acoth( 8 ); // $ExpectType number +} + +// The function does not compile if provided a value other than a number... +{ + acoth( true ); // $ExpectError + acoth( false ); // $ExpectError + acoth( null ); // $ExpectError + acoth( undefined ); // $ExpectError + acoth( '5' ); // $ExpectError + acoth( [] ); // $ExpectError + acoth( {} ); // $ExpectError + acoth( ( x: number ): number => x ); // $ExpectError +} + +// The function does not compile if provided insufficient arguments... +{ + acoth(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js b/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js new file mode 100644 index 000000000000..d5534f5498fb --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js @@ -0,0 +1,29 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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 linspace = require( '@stdlib/math/utils/linspace' ); +var acoth = require( './../lib' ); + +var x = linspace( 1.0, 5.0, 100 ); +var i; + +for ( i = 0; i < x.length; i++ ) { + console.log( 'acoth(%d) = %d', x[ i ], acoth( x[ i ] ) ); +} diff --git a/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js b/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js new file mode 100644 index 000000000000..c03fbac2a438 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js @@ -0,0 +1,52 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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'; + +/** +* Compute the hyperbolic arccosine of a number. +* +* @module @stdlib/math/base/special/acoth +* +* @example +* var acoth = require( '@stdlib/math/base/special/acoth' ); +* +* var v = acoth( 2.0 ); +* // returns ~0.5493 +* +* v = acoth( 0.0 ); +* // returns NaN +* +* v = acoth( 0.5 ); +* // returns NaN +* +* v = acoth( 1.0 ); +* // returns Infinity +* +* v = acoth( NaN ); +* // returns NaN +*/ + +// MODULES // + +var acoth = require( './main.js' ); + + +// EXPORTS // + +module.exports = acoth; diff --git a/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js b/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js new file mode 100644 index 000000000000..6f2befa16963 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js @@ -0,0 +1,61 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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 atanh = require( '@stdlib/math/base/special/atanh' ); + + +// MAIN // + +/** +* Computes the inverse hyperbolic cotangent of a number. +* +* @param {number} x - input value +* @returns {number} inverse hyperbolic cotangent (in radians) +* +* @example +* var v = acoth( 2.0 ); +* // returns ~0.5493 +* +* @example +* var v = acoth( 0.0 ); +* // returns NaN +* +* @example +* var v = acoth( 0.5 ); +* // returns NaN +* +* @example +* var v = acoth( 1.0 ); +* // returns Infinity +* +* @example +* var v = acoth( NaN ); +* // returns NaN +*/ +function acoth( x ) { + return atanh( 1.0/x ); +} + + +// EXPORTS // + +module.exports = acoth; diff --git a/lib/node_modules/@stdlib/math/base/special/acot/package.json b/lib/node_modules/@stdlib/math/base/special/acot/package.json new file mode 100644 index 000000000000..0972991e1d0d --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/package.json @@ -0,0 +1,74 @@ +{ + "name": "@stdlib/math/base/special/acoth", + "version": "0.0.0", + "description": "Compute the inverse hyperbolic cotangent.", + "license": "Apache-2.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "directories": { + "benchmark": "./benchmark", + "doc": "./docs", + "example": "./examples", + "lib": "./lib", + "scripts": "./scripts", + "test": "./test" + }, + "types": "./docs/types", + "scripts": { + "test": "node ./test/test.js" + }, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "acoth", + "hyperbolic", + "inverse", + "tangent", + "cotangent", + "acot", + "cot", + "coth", + "arc", + "arccotangent", + "trig", + "trigonometry", + "radians", + "angle" + ] +} diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..becfcba22e9e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 0.5 +JSON 0.5 diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_negative.json new file mode 100644 index 000000000000..f3326077a5c5 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_negative.json @@ -0,0 +1 @@ +{"expected":[-1.0e-300,-1.0019899700803996e-305,-5.00997495012525e-306,-3.3399888778370363e-306,-2.5049937500405933e-306,-2.003996004031968e-306,-1.6699972278046017e-306,-1.4314265367579942e-306,-1.2524984437706837e-306,-1.113332104956911e-306,-1.0019990060169862e-306,-9.109082702635492e-307,-8.349993111255683e-307,-7.707686443921621e-307,-7.157137806248462e-307,-6.679995604562892e-307,-6.2624961407367526e-307,-5.894114231939694e-307,-5.566663623557219e-307,-5.2736814820900544e-307,-5.009997540091208e-307,-4.7714263424908375e-307,-4.554543425703383e-307,-4.3565198847682755e-307,-4.174998298688193e-307,-4.007998433674212e-307,-3.853844707172141e-307,-3.711109770988138e-307,-3.578570183740229e-307,-3.4551712545235752e-307,-3.3399989178403507e-307,-3.232257052089807e-307,-3.1312490508401315e-307,-3.0363627447771213e-307,-2.947057984484668e-307,-2.8628563518908304e-307,-2.7833325864724224e-307,-2.708107401804421e-307,-2.6368414363381198e-307,-2.5692301348285587e-307,-2.504999397547645e-307,-2.4439018661976355e-307,-2.385713740408288e-307,-2.330232038443599e-307,-2.277272231448455e-307,-2.2266661931289897e-307,-2.1782604168658787e-307,-2.131914460430147e-307,-2.0874995851094575e-307,-2.044897561471964e-307,-2.0039996184384724e-307,-1.964705515993148e-307,-1.9269227248891176e-307,-1.8905656992175756e-307,-1.855555229802526e-307,-1.8218178681342688e-307,-1.7892854120242857e-307,-1.7578944454017103e-307,-1.7275859257170491e-307,-1.698304813304841e-307,-1.6699997378100412e-307,-1.6426226974249252e-307,-1.616128787232087e-307,-1.5904759534195363e-307,-1.5656247705381197e-307,-1.5415382393197954e-307,-1.5181816028760636e-307,-1.4955221793562331e-307,-1.473529209371135e-307,-1.4521737166843367e-307,-1.4314283808441068e-307,-1.4112674205788777e-307,-1.3916664869097454e-307,-1.372602565048249e-307,-1.3540538842483777e-307,-1.3359998348704203e-307,-1.3184208919924018e-307,-1.301298544973876e-307,-1.284615232437888e-307,-1.2683542821910123e-307,-1.2524998556493915e-307,-1.2370368963813603e-307,-1.2219510824152443e-307,-1.207228781994789e-307,-1.1928570124949122e-307,-1.1788234022375224e-307,-1.165116154971349e-307,-1.1517240168014396e-307,-1.1386362453734627e-307,-1.1258425811354745e-307,-1.113333220515567e-307,-1.101098790868022e-307,-1.0891303270534132e-307,-1.077419249529667e-307,-1.0659573438415672e-307,-1.0547367414056605e-307,-1.043749901496103e-307,-1.0329895943447855e-307,-1.0224488852761436e-307,-1.0121211198034978e-307,-1.0019999096196082e-307,-9.920791194194766e-308,-9.823528544982776e-308,-9.72815449071739e-308,-9.634614552703473e-308,-9.542856327624561e-308,-9.452829389647628e-308,-9.36448519801736e-308,-9.277777009784014e-308,-9.192659797335304e-308,-9.109090170426505e-308,-9.027026302425184e-308,-8.946427860507073e-308,-8.867255939558361e-308,-8.789472999556839e-308,-8.713042806220088e-308,-8.637930374723593e-308,-8.564101916305111e-308,-8.491524787584075e-308,-8.420167442436314e-308,-8.349999386275046e-308,-8.280991132598911e-308,-8.213114161677011e-308,-8.146340881249297e-308,-8.080644589128552e-308,-8.015999437597481e-308,-7.952380399501172e-308,-7.889763235941509e-308,-7.828124465485877e-308,-7.76744133480804e-308,-7.707691790684059e-308,-7.648854453270821e-308,-7.590908590599206e-308,-7.533834094217909e-308,-7.477611455927855e-308,-7.422221745550648e-308,-7.367646589677798e-308,-7.31386815135066e-308,-7.260869110623848e-308,-7.208632645967626e-308,-7.157142416467375e-308,-7.106382544780471e-308,-7.056337600813356e-308,-7.006992586083451e-308,-6.958332918732664e-308,-6.910344419161023e-308,-6.863013296250727e-308,-6.816326134152458e-308,-6.7702698796074e-308,-6.724831829779762e-308,-6.679999620576021e-308,-6.635761215428291e-308,-6.59210489452045e-308,-6.549019244436774e-308,-6.506493148213884e-308,-6.464515775777751e-308,-6.423076574748541e-308,-6.382165261596838e-308,-6.341771813135733e-308,-6.301886458333944e-308,-6.262499670435954e-308,-6.223602159375813e-308,-6.185184864471896e-308,-6.147238947390584e-308,-6.109755785367356e-308,-6.072726964674396e-308,-6.0361442743243e-308,-5.999999700000014e-308,-5.964285418201545e-308,-5.928993790600483e-308,-5.894117358593786e-308,-5.859648838048644e-308,-5.825581114230679e-308,-5.79190723690803e-308,-5.758620415624269e-308,-5.7257140151334e-308,-5.693181550990457e-308,-5.661016685291594e-308,-5.629213222557771e-308,-5.597765105756387e-308,-5.566666412455567e-308,-5.535911351105899e-308,-5.5054942574447635e-308,-5.475409591018554e-308,-5.445651931818299e-308,-5.416215977024408e-308,-5.38709653785641e-308,-5.358288536523788e-308,-5.329787003274116e-308,-5.301587073534906e-308,-5.273683985145715e-308,-5.24607307567721e-308,-5.218749779833993e-308,-5.191709626938183e-308,-5.164948238490815e-308,-5.138461325808293e-308,-5.112244687731162e-308,-5.086294208402699e-308,-5.060605855114792e-308,-5.03517567621879e-308,-5.009999799099008e-308,-4.985074428206736e-308,-4.960395843152641e-308,-4.935960396855549e-308,-4.911764513745683e-308,-4.887804688020471e-308,-4.86407748195118e-308,-4.840579524238613e-308,-4.817307508416242e-308,-4.794258191299199e-308,-4.771428391477558e-308,-4.748814987852481e-308,-4.726414918213783e-308,-4.704225177857575e-308,-4.682242818242647e-308,-4.660464945684376e-308,-4.638888720084883e-308,-4.617511353698322e-308,-4.596330109930147e-308,-4.575342302169268e-308,-4.554545292652072e-308,-4.533936491357268e-308,-4.513513354930611e-308,-4.493273385638567e-308,-4.473214130349974e-308,-4.453333179544894e-308,-4.433628166349759e-308,-4.414096765598018e-308,-4.3947366929155173e-308,-4.375545703829833e-308,-4.3565215929028397e-308,-4.33766219288582e-308,-4.318965373896408e-308,-4.30042904261674e-308,-4.2820511415121674e-308,-4.263829648069901e-308,-4.245762574057028e-308,-4.2278479647973124e-308,-4.2100838984662143e-308,-4.1924684854036216e-308,-4.1749998674437533e-308,-4.157676217261759e-308,-4.140495737736498e-308,-4.1234566613290697e-308,-4.106557249476624e-308,-4.089795792001003e-308,-4.0731706065318306e-308,-4.056680037943586e-308,-4.040322457806325e-308,-4.024096263849619e-308,-4.0079998794393636e-308,-3.992031753067098e-308,-3.976190357851477e-308,-3.9604741910515745e-308,-3.9448817735916697e-308,-3.929411649597236e-308,-3.9140623859417754e-308,-3.8988325718042696e-308,-3.8837208182368887e-308,-3.8687257577427317e-308,-3.8538460438633175e-308,-3.839080350775535e-308,-3.8244273728978524e-308,-3.8098858245054897e-308,-3.795454439354342e-308,-3.781131970313424e-308,-3.7669171890056e-308,-3.7528088854563846e-308,-3.7388058677506147e-308,-3.7249069616967734e-308,-3.7111110104987674e-308,-3.6974168744349913e-308,-3.6838234305444453e-308,-3.6703295723197703e-308,-3.656934209407004e-308,-3.64363626731187e-308,-3.6304346871124793e-308,-3.617328425178227e-308,-3.60431645289478e-308,-3.591397756394961e-308,-3.578571336295411e-308,-3.5658362074388647e-308,-3.5531913986419215e-308,-3.5406359524481537e-308,-3.528168924886433e-308,-3.515789385234351e-308,-3.503496415786593e-308,-3.4912891116281635e-308,-3.479166580412329e-308,-3.4671279421431755e-308,-3.4551723289626655e-308,-3.4432988849420786e-308,-3.4315067658777466e-308,-3.419795139090964e-308,-3.408163183231989e-308,-3.396610088088023e-308,-3.3851350543950894e-308,-3.373737293653711e-308,-3.3624160279482924e-308,-3.351170489770138e-308,-3.339999921844001e-308,-3.328903576958093e-308,-3.3178807177974665e-308,-3.30693061678071e-308,-3.296052555899846e-308,-3.285245826563398e-308,-3.274509729442524e-308,-3.263843574320153e-308,-3.2532466799430788e-308,-3.2427183738768986e-308,-3.232257992363789e-308,-3.221864880183003e-308,-3.2115383905140545e-308,-3.201277884802541e-308,-3.191082732628506e-308,-3.1809523115773256e-308,-3.1708860071130436e-308,-3.160883212454101e-308,-3.150943328451408e-308,-3.141065763468717e-308,-3.131249933265236e-308,-3.1214952608804274e-308,-3.111801176520969e-308,-3.1021671174497994e-308,-3.0925925278772306e-308,-3.083076858854061e-308,-3.0736195681666615e-308,-3.0642201202339883e-308,-3.054877986006471e-308,-3.0455926428667523e-308,-3.0363635745322323e-308,-3.0271902709593756e-308,-3.018072228249747e-308,-3.009008948557748e-308,-2.999999940000001e-308,-2.9910447165663635e-308,-2.9821427980325266e-308,-2.9732937098741745e-308,-2.964496983182663e-308,-2.955752154582192e-308,-2.9470587661484442e-308,-2.9384163653286446e-308,-2.929824504863036e-308,-2.921282742707717e-308,-2.91279064195883e-308,-2.904347770778073e-308,-2.8959537023194904e-308,-2.887608014657543e-308,-2.87931029071641e-308,-2.871060118200508e-308,-2.862857089526205e-308,-2.8547008017546946e-308,-2.846590856526021e-308,-2.8385268599942223e-308,-2.8305084227635747e-308,-2.8225351598259085e-308,-2.814606690498991e-308,-2.8067226383659357e-308,-2.7988826312156305e-308,-2.791086300984165e-308,-2.783333283697223e-308,-2.775623219413449e-308,-2.767955752168738e-308,-2.760330529921454e-308,-2.7527472044985515e-308,-2.7452054315425793e-308,-2.7377048704595547e-308,-2.730245184367692e-308,-2.7228260400469645e-308,-2.715447107889484e-308,-2.708108061850695e-308,-2.700808579401342e-308,-2.69354834148023e-308,-2.6863270324477296e-308,-2.679144340040036e-308,-2.6719999553241606e-308,-2.6648935726536335e-308,-2.657824889624919e-308,-2.6507936070345184e-308,-2.6437994288367534e-308,-2.6368420621022165e-308,-2.629921216976874e-308,-2.6230366066418144e-308,-2.6161879472736203e-308,-2.6093749580053715e-308,-2.602597360888245e-308,-2.595854880853715e-308,-2.5891472456763426e-308,-2.5824741859371356e-308,-2.5758354349874777e-308,-2.56923072891361e-308,-2.562659806501659e-308,-2.5561224092031967e-308,-2.549618281101335e-308,-2.543147168877323e-308,-2.5367088217776644e-308,-2.5303029915817267e-308,-2.523929432569841e-308,-2.517587901491882e-308,-2.511278157536323e-308,-2.5049999622997503e-308,-2.4987530797568427e-308,-2.492537276230787e-308,-2.486352320364143e-308,-2.480197983090139e-308,-2.47407403760439e-308,-2.4679802593370384e-308,-2.4619164259253005e-308,-2.4558823171864193e-308,-2.4498777150910146e-308,-2.443902403736824e-308,-2.4379561693228197e-308,-2.432038800123716e-308,-2.426150086464833e-308,-2.420289820697333e-308,-2.414457797173814e-308,-2.408653812224252e-308,-2.4028776641322914e-308,-2.39712915311188e-308,-2.3914080812842266e-308,-2.3857142526551025e-308,-2.380047473092457e-308,-2.374407550304351e-308,-2.368794293817213e-308,-2.363207514954388e-308,-2.3576470268150036e-308,-2.352112644253125e-308,-2.3466041838572035e-308,-2.3411214639298196e-308,-2.3356643044677006e-308,-2.330232527142023e-308,-2.324825955278988e-308,-2.3194444138406636e-308,-2.314087729406099e-308,-2.30875573015269e-308,-2.303448245837813e-308,-2.2981651077807007e-308,-2.2929061488445773e-308,-2.2876712034190284e-308,-2.2824601074026186e-308,-2.277272698185744e-308,-2.2721088146337177e-308,-2.266968297070085e-308,-2.2618509872601644e-308,-2.256756728394814e-308,-2.2516853650744104e-308,-2.2466367432930486e-308,-2.2416107104229543e-308,-2.2366071151990995e-308,-2.2316258077040293e-308,-2.226666639352889e-308,-2.221729462878649e-308,-2.216814132317527e-308,-2.2119205029946057e-308,-2.207048431509636e-308,-2.202197775723029e-308,-2.197368394742036e-308,-2.192560148907105e-308,-2.1877728997784183e-308,-2.183006510122603e-308,-2.178260843899622e-308,-2.1735357662498296e-308,-2.1688311434811946e-308,-2.164146843056692e-308,-2.15948273358186e-308,-2.154838684792508e-308,-2.150214567542596e-308,-2.1456102537922593e-308,-2.14102561659599e-308,-2.136460530090971e-308,-2.131914869485559e-308,-2.127388511047913e-308,-2.1228813320947644e-308,-2.118393210980338e-308,-2.113924027085403e-308,-2.109473660806471e-308,-2.105041993545124e-308,-2.1006289076974807e-308,-2.0962342866437917e-308,-2.091858014738168e-308,-2.087499977298438e-308,-2.083160060596125e-308,-2.078838151846559e-308,-2.0745341391991053e-308,-2.070247911727512e-308,-2.0659793594203845e-308,-2.061728373171773e-308,-2.0574948447718716e-308,-2.0532786668978436e-308,-2.0490797331047463e-308,-2.044897937816577e-308,-2.040733176317421e-308,-2.036585344742713e-308,-2.0324543400706034e-308,-2.028340060113426e-308,-2.0242424035092747e-308,-2.0201612697136775e-308,-2.0160965589913726e-308,-2.0120481724081867e-308,-2.008016011823005e-308,-2.00399997987984e-308,-1.99999998e-308,-1.9960159163743435e-308,-1.99204769395563e-308,-1.9880952184509637e-308,-1.9841583963143224e-308,-1.9802371347391775e-308,-1.976331341651203e-308,-1.9724409257010665e-308,-1.9685657962573096e-308,-1.964705863399308e-308,-1.9608610379103175e-308,-1.957031231270599e-308,-1.953216355650628e-308,-1.949416323904374e-308,-1.945631049562673e-308,-1.9418604468266634e-308,-1.9381044305613027e-308,-1.934362916288964e-308,-1.9306358201831005e-308,-1.9269230590619823e-308,-1.9232245503825136e-308,-1.919540212234113e-308,-1.9158699633326637e-308,-1.9122137230145394e-308,-1.908571411230694e-308,-1.9049429485408204e-308,-1.901328256107573e-308,-1.8977272556908577e-308,-1.89413986964219e-308,-1.89056602089911e-308,-1.887005632979667e-308,-1.8834586299769636e-308,-1.879924936553756e-308,-1.876404477937129e-308,-1.872897179913215e-308,-1.8694029688219815e-308,-1.8659217715520737e-308,-1.862453515535717e-308,-1.8589981287436713e-308,-1.855555539680247e-308,-1.8521256773783744e-308,-1.8487084713947253e-308,-1.84530385180489e-308,-1.8419117491986103e-308,-1.838532094675061e-308,-1.8351648198381836e-308,-1.831809856792075e-308,-1.828467138136422e-308,-1.825136596961987e-308,-1.821818166846149e-308,-1.818511781848479e-308,-1.81521737650638e-308,-1.8119348858307633e-308,-1.8086642453017767e-308,-1.8054053908645733e-308,-1.8021582589251333e-308,-1.7989227863461284e-308,-1.795698910442826e-308,-1.7924865689790417e-308,-1.789285700163138e-308,-1.7860962426440567e-308,-1.7829181355074023e-308,-1.779751318271566e-308,-1.7765957308838843e-308,-1.773451313716845e-308,-1.7703180075643347e-308,-1.767195753637916e-308,-1.764084493563157e-308,-1.7609841693759904e-308,-1.757894723519114e-308,-1.7548160988384283e-308,-1.751748238579515e-308,-1.7486910863841454e-308,-1.7456445862868314e-308,-1.74260868271141e-308,-1.739583320467665e-308,-1.7365684447479795e-308,-1.733564001124029e-308,-1.730569935543505e-308,-1.7275861943268725e-308,-1.724612724164166e-308,-1.721649472111808e-308,-1.718696385589472e-308,-1.7157534123769707e-308,-1.712820500611177e-308,-1.7098975987829795e-308,-1.7069846557342654e-308,-1.7040816206549357e-308,-1.7011884430799524e-308,-1.698305072886412e-308,-1.695431460290654e-308,-1.692567555845394e-308,-1.6897133104368846e-308,-1.686868675282114e-308,-1.6840336019260225e-308,-1.681208042238751e-308,-1.678391948412919e-308,-1.675585272960929e-308,-1.6727879687122944e-308,-1.669999988811e-308,-1.667221286712883e-308,-1.6644518161830446e-308,-1.6616915312932853e-308,-1.6589403864195647e-308,-1.6561983362394917e-308,-1.653465335729831e-308,-1.6507413401640394e-308,-1.648026305109829e-308,-1.6453201864267516e-308,-1.6426229402638e-308,-1.639934523057047e-308,-1.6372548915272973e-308,-1.634584002677762e-308,-1.6319218137917645e-308,-1.629268282430458e-308,-1.6266233664305746e-308,-1.6239870239021877e-308,-1.621359213226506e-308,-1.6187398930536773e-308,-1.6161290223006247e-308,-1.613526560148895e-308,-1.610932466042535e-308,-1.6083466996859807e-308,-1.6057692210419746e-308,-1.603199990329498e-308,-1.6006389680217213e-308,-1.5980861148439823e-308,-1.595541391771776e-308,-1.5930047600287637e-308,-1.5904761810848073e-308,-1.587955616654017e-308,-1.5854430286928176e-308,-1.582938379398037e-308,-1.5804416312050074e-308,-1.5779527467856905e-308,-1.5754716890468137e-308,-1.572998421128031e-308,-1.5705329064000946e-308,-1.5680751084630474e-308,-1.5656249911444336e-308,-1.5631825184975214e-308,-1.5607476547995455e-308,-1.5583203645499687e-308,-1.5559006124687516e-308,-1.5534883634946456e-308,-1.551083582783502e-308,-1.54868623570659e-308,-1.546296287848937e-308,-1.5439137050076805e-308,-1.541538453190438e-308,-1.539170498613689e-308,-1.5368098077011743e-308,-1.5344563470823083e-308,-1.532110083590607e-308,-1.529770984262129e-308,-1.5274390163339346e-308,-1.5251141472425513e-308,-1.522796344622463e-308,-1.5204855763046044e-308,-1.5181818103148763e-308,-1.5158850148726657e-308,-1.51359515838939e-308,-1.5113122094670463e-308,-1.5090361368967734e-308,-1.5067669096574366e-308,-1.5045044969142117e-308,-1.502248868017191e-308,-1.4999999925e-308,-1.497757840078425e-308,-1.4955223806490533e-308,-1.493293584287926e-308,-1.491071421249203e-308,-1.48885586196384e-308,-1.486646877038276e-308,-1.484444437253136e-308,-1.4822485135619374e-308,-1.4800590770898194e-308,-1.4778760991322734e-308,-1.475699551153889e-308,-1.473529404787111e-308,-1.471365631831008e-308,-1.469208204250049e-308,-1.467057094172896e-308,-1.4649122738911973e-308,-1.462773715858405e-308,-1.4606413926885907e-308,-1.4585152771552793e-308,-1.456395342190289e-308,-1.454281560882582e-308,-1.4521739064771267e-308,-1.4500723523737696e-308,-1.4479768721261153e-308,-1.4458874394404154e-308,-1.443804028174472e-308,-1.441726612336546e-308,-1.4396551660842747e-308,-1.4375896637236036e-308,-1.43553007970772e-308,-1.433476388636004e-308,-1.4314285652529797e-308,-1.4293865844472844e-308,-1.427350421250639e-308,-1.4253200508368324e-308,-1.4232954485207094e-308,-1.4212765897571753e-308,-1.4192634501401986e-308,-1.417256005401831e-308,-1.4152542314112326e-308,-1.4132581041737005e-308,-1.411267599829716e-308,-1.4092826946539907e-308,-1.407303365054523e-308,-1.4053295875716655e-308,-1.403361338877198e-308,-1.401398595773407e-308,-1.3994413351921755e-308,-1.3974895341940795e-308,-1.39554316996749e-308,-1.393602219827685e-308,-1.391666661215972e-308,-1.389736471698808e-308,-1.3878116289669357e-308,-1.385892110834524e-308,-1.383977895238317e-308,-1.3820689602367847e-308,-1.380165284009289e-308,-1.3782668448552495e-308,-1.376373621193319e-308,-1.374485591560568e-308,-1.372602734611672e-308,-1.370725029118106e-308,-1.3688524539673474e-308,-1.366984988162088e-308,-1.3651226108194434e-308,-1.363265301170179e-308,-1.3614130385579365e-308,-1.3595658024384674e-308,-1.357723572378875e-308,-1.3558863280568593e-308,-1.354054049259971e-308,-1.3522267158848695e-308,-1.3504043079365886e-308,-1.3485868055278063e-308,-1.346774188878122e-308,-1.344966438313337e-308,-1.343163534264747e-308,-1.341365457268431e-308,-1.339572187964554e-308,-1.337783707096672e-308,-1.33599999551104e-308,-1.334221034155932e-308,-1.332446804080961e-308,-1.330677286436406e-308,-1.3289124624725427e-308,-1.327152313538985e-308,-1.325396821084026e-308,-1.323645966653986e-308,-1.3218997318925653e-308,-1.3201580985402055e-308,-1.3184210484334486e-308,-1.316688563504311e-308,-1.3149606257796515e-308,-1.3132372173805543e-308,-1.31151832052171e-308,-1.3098039175108033e-308,-1.308093990747909e-308,-1.306388522724885e-308,-1.3046874960247803e-308,-1.302990893321237e-308,-1.301298697377905e-308,-1.2996108910478584e-308,-1.297927457273014e-308,-1.296248379083559e-308,-1.2945736395973798e-308,-1.292903222019496e-308,-1.2912371096415e-308,-1.289575285840998e-308,-1.2879177340810594e-308,-1.286264437909667e-308,-1.2846153809591717e-308,-1.2829705469457557e-308,-1.281329919668893e-308,-1.279693483010819e-308,-1.278061220936003e-308,-1.276433117490624e-308,-1.274809156802051e-308,-1.2731893230783266e-308,-1.2715736006076554e-308,-1.2699619737578974e-308,-1.2683544269760615e-308,-1.266750944787807e-308,-1.265151511796947e-308,-1.263556112684953e-308,-1.26196473221047e-308,-1.260377355208829e-308,-1.2587939665915633e-308,-1.257214551345935e-308,-1.2556390945344565e-308,-1.2540675812944217e-308,-1.2524999968374376e-308,-1.2509363264489614e-308,-1.249376555487839e-308,-1.247820669385849e-308,-1.2462686536472487e-308,-1.244720493848324e-308,-1.243176175636941e-308,-1.241635684732107e-308,-1.2400990069235247e-308,-1.238566128071159e-308,-1.237037034104801e-308,-1.235511711023641e-308,-1.233990144895836e-308,-1.23247232185809e-308,-1.230958228115232e-308,-1.2294478499397945e-308,-1.2279411736716045e-308,-1.2264381857173676e-308,-1.22493887255026e-308,-1.2234432207095225e-308,-1.2219512168000596e-308,-1.2204628474920366e-308,-1.218978099520486e-308,-1.2174969596849095e-308,-1.21601941484889e-308,-1.2145454519397024e-308,-1.2130750579479274e-308,-1.2116082199270683e-308,-1.2101449249931734e-308,-1.208685160324457e-308,-1.2072289131609233e-308,-1.2057761708039983e-308,-1.204326920616159e-308,-1.2028811500205655e-308,-1.2014388465006987e-308,-1.1999999976e-308,-1.1985645909215105e-308,-1.1971326141275163e-308,-1.195704054939195e-308,-1.194278901136264e-308,-1.1928571405566327e-308,-1.1914387610960567e-308,-1.1900237507077936e-308,-1.188612097402262e-308,-1.1872037892467035e-308,-1.185798814364847e-308,-1.1843971609365726e-308,-1.182998817197582e-308,-1.1816037714390685e-308,-1.1802120120073916e-308,-1.178823527303751e-308,-1.177438305783864e-308,-1.1760563359576477e-308,-1.174677606388898e-308,-1.17330210569498e-308,-1.1719298225465065e-308,-1.1705607456670344e-308,-1.169194863832751e-308,-1.16783216587217e-308,-1.1664726406658254e-308,-1.165116277145971e-308,-1.1637630642962766e-308,-1.1624129911515335e-308,-1.161066046797356e-308,-1.159722220369888e-308,-1.1583815010555113e-308,-1.1570438780905543e-308,-1.155709340761006e-308,-1.1543778784022277e-308,-1.15304948039867e-308,-1.151724136183591e-308,-1.1504018352387757e-308,-1.1490825670942577e-308,-1.147766321328043e-308,-1.1464530875658355e-308,-1.145142855480764e-308,-1.143835614793113e-308,-1.142531355270052e-308,-1.14123006672537e-308,-1.1399317390192083e-308,-1.1386363620577996e-308,-1.137343925793205e-308,-1.136054420223055e-308,-1.1347678353902903e-308,-1.1334841613829056e-308,-1.132203388333697e-308,-1.130925506420007e-308,-1.129650505863475e-308,-1.1283783769297847e-308,-1.1271091099284216e-308,-1.125842695212423e-308,-1.124579123178134e-308,-1.1233183842649663e-308,-1.122060468955156e-308,-1.120805367773524e-308,-1.1195530712872384e-308,-1.1183035701055785e-308,-1.117056854879699e-308,-1.1158129163023993e-308,-1.1145717451078875e-308,-1.113333332071556e-308,-1.1120976680097463e-308,-1.1108647437795293e-308,-1.1096345502784735e-308,-1.108407078444426e-308,-1.1071823192552853e-308,-1.105960263728784e-308,-1.1047409029222673e-308,-1.103524227932475e-308,-1.102310229895326e-308,-1.1010988999857023e-308,-1.0998902294172336e-308,-1.098684209442088e-308,-1.097480831350758e-308,-1.0962800864718526e-308,-1.0950819661718893e-308,-1.093886461855085e-308,-1.092693564963152e-308,-1.091503266975095e-308,-1.0903155594070055e-308,-1.089130433811862e-308,-1.087947881779329e-308,-1.0867678949355593e-308,-1.085590464942994e-308,-1.0844155835001687e-308,-1.083243242341516e-308,-1.082073433237175e-308,-1.080906147992794e-308,-1.079741378449344e-308,-1.0785791164829246e-308,-1.0774193540045787e-308,-1.076262082960101e-308,-1.075107295329855e-308,-1.073954983128586e-308,-1.0728051384052385e-308,-1.071657753242769e-308,-1.0705128197579715e-308,-1.0693703301012906e-308,-1.0682302764566444e-308,-1.0670926510412475e-308,-1.065957446105432e-308,-1.0648246539324727e-308,-1.0636942668384114e-308,-1.062566277171883e-308,-1.0614406773139453e-308,-1.060317459677904e-308,-1.0591966167091437e-308,-1.0580781408849597e-308,-1.0569620247143887e-308,-1.0558482607380404e-308,-1.054736841527934e-308,-1.053627759687329e-308,-1.052521007850567e-308,-1.051416578682902e-308,-1.050314464880345e-308,-1.0492146591694965e-308,-1.0481171543073914e-308,-1.047021943081338e-308,-1.045929018308759e-308,-1.0448383728370384e-308,-1.0437499995433595e-308,-1.0426638913345555e-308,-1.041580041146952e-308,-1.040498441946216e-308,-1.0394190867272e-308,-1.0383419685137966e-308,-1.0372670803587824e-308,-1.0361944153436733e-308,-1.035123966578572e-308,-1.0340557272020247e-308,-1.0329896903808694e-308,-1.0319258493100955e-308,-1.030864197212696e-308,-1.0298047273395236e-308,-1.028747432969149e-308,-1.027692307407716e-308,-1.0266393439888054e-308,-1.0255885360732884e-308,-1.024539877049193e-308,-1.0234933603315593e-308,-1.022448979362307e-308,-1.0214067276100966e-308,-1.0203665985701904e-308,-1.019328585764321e-308,-1.018292682740556e-308,-1.0172588830731634e-308,-1.0162271803624785e-308,-1.0151975682347726e-308,-1.014170040342122e-308,-1.0131445903622763e-308,-1.0121212119985305e-308,-1.011099898979595e-308,-1.010080645059468e-308,-1.0090634440173054e-308,-1.0080482896573e-308,-1.0070351758085504e-308,-1.006024096324938e-308,-1.005015045085004e-308,-1.0040080159918234e-308,-1.0030030029728826e-308,-1.00199999997996e-308,-1.000999000989001e-308,-1.0e-308],"x":[-1.0e300,-9.98013982035928e304,-1.996017964071856e305,-2.9940219461077846e305,-3.992025928143713e305,-4.99002991017964e305,-5.988033892215569e305,-6.986037874251497e305,-7.984041856287425e305,-8.982045838323353e305,-9.98004982035928e305,-1.097805380239521e306,-1.1976057784431138e306,-1.2974061766467066e306,-1.3972065748502995e306,-1.4970069730538922e306,-1.5968073712574852e306,-1.696607769461078e306,-1.7964081676646707e306,-1.8962085658682634e306,-1.9960089640718562e306,-2.095809362275449e306,-2.195609760479042e306,-2.2954101586826347e306,-2.3952105568862274e306,-2.4950109550898204e306,-2.5948113532934132e306,-2.694611751497006e306,-2.794412149700599e306,-2.894212547904192e306,-2.9940129461077844e306,-3.0938133443113774e306,-3.19361374251497e306,-3.293414140718563e306,-3.3932145389221553e306,-3.493014937125749e306,-3.5928153353293414e306,-3.6926157335329344e306,-3.792416131736527e306,-3.89221652994012e306,-3.9920169281437123e306,-4.091817326347306e306,-4.1916177245508984e306,-4.291418122754491e306,-4.391218520958084e306,-4.491018919161676e306,-4.5908193173652693e306,-4.6906197155688624e306,-4.7904201137724554e306,-4.890220511976048e306,-4.990020910179641e306,-5.089821308383233e306,-5.1896217065868263e306,-5.2894221047904194e306,-5.3892225029940124e306,-5.489022901197605e306,-5.588823299401198e306,-5.688623697604791e306,-5.788424095808384e306,-5.888224494011976e306,-5.988024892215569e306,-6.08782529041916e306,-6.187625688622755e306,-6.287426086826348e306,-6.38722648502994e306,-6.487026883233533e306,-6.586827281437126e306,-6.686627679640719e306,-6.786428077844312e306,-6.886228476047904e306,-6.986028874251498e306,-7.08582927245509e306,-7.185629670658683e306,-7.285430068862275e306,-7.385230467065869e306,-7.485030865269462e306,-7.584831263473054e306,-7.684631661676647e306,-7.784432059880239e306,-7.884232458083833e306,-7.984032856287426e306,-8.083833254491018e306,-8.183633652694611e306,-8.283434050898204e306,-8.383234449101797e306,-8.483034847305389e306,-8.582835245508982e306,-8.682635643712576e306,-8.782436041916168e306,-8.882236440119761e306,-8.982036838323353e306,-9.081837236526947e306,-9.18163763473054e306,-9.28143803293413e306,-9.381238431137725e306,-9.481038829341318e306,-9.580839227544911e306,-9.680639625748501e306,-9.780440023952096e306,-9.88024042215569e306,-9.980040820359282e306,-1.0079841218562874e307,-1.0179641616766467e307,-1.0279442014970061e307,-1.0379242413173654e307,-1.0479042811377244e307,-1.0578843209580839e307,-1.0678643607784432e307,-1.0778444005988024e307,-1.0878244404191615e307,-1.097804480239521e307,-1.1077845200598804e307,-1.1177645598802395e307,-1.1277445997005988e307,-1.1377246395209582e307,-1.1477046793413176e307,-1.1576847191616768e307,-1.167664758982036e307,-1.1776447988023952e307,-1.1876248386227546e307,-1.1976048784431138e307,-1.207584918263473e307,-1.2175649580838324e307,-1.2275449979041918e307,-1.237525037724551e307,-1.24750507754491e307,-1.2574851173652696e307,-1.2674651571856288e307,-1.277445197005988e307,-1.2874252368263474e307,-1.2974052766467066e307,-1.307385316467066e307,-1.3173653562874252e307,-1.3273453961077843e307,-1.3373254359281438e307,-1.347305475748503e307,-1.3572855155688624e307,-1.3672655553892216e307,-1.3772455952095807e307,-1.3872256350299404e307,-1.3972056748502993e307,-1.4071857146706585e307,-1.417165754491018e307,-1.4271457943113774e307,-1.4371258341317366e307,-1.4471058739520957e307,-1.4570859137724552e307,-1.4670659535928146e307,-1.4770459934131735e307,-1.4870260332335327e307,-1.4970060730538924e307,-1.5069861128742516e307,-1.5169661526946107e307,-1.5269461925149702e307,-1.5369262323353294e307,-1.5469062721556885e307,-1.5568863119760477e307,-1.5668663517964071e307,-1.5768463916167666e307,-1.5868264314371258e307,-1.5968064712574852e307,-1.6067865110778444e307,-1.6167665508982035e307,-1.626746590718563e307,-1.6367266305389221e307,-1.6467066703592813e307,-1.6566867101796408e307,-1.6666667500000002e307,-1.6766467898203594e307,-1.6866268296407185e307,-1.696606869461078e307,-1.7065869092814372e307,-1.7165669491017963e307,-1.7265469889221555e307,-1.7365270287425152e307,-1.7465070685628744e307,-1.7564871083832335e307,-1.766467148203593e307,-1.776447188023952e307,-1.7864272278443113e307,-1.7964072676646705e307,-1.80638730748503e307,-1.8163673473053894e307,-1.8263473871257486e307,-1.836327426946108e307,-1.8463074667664672e307,-1.856287506586826e307,-1.8662675464071858e307,-1.876247586227545e307,-1.8862276260479041e307,-1.8962076658682636e307,-1.906187705688623e307,-1.9161677455089822e307,-1.926147785329341e307,-1.9361278251497005e307,-1.94610786497006e307,-1.9560879047904191e307,-1.9660679446107783e307,-1.976047984431138e307,-1.9860280242514972e307,-1.9960080640718563e307,-2.0059881038922155e307,-2.0159681437125747e307,-2.0259481835329341e307,-2.0359282233532933e307,-2.0459082631736527e307,-2.0558883029940122e307,-2.0658683428143714e307,-2.0758483826347305e307,-2.0858284224550897e307,-2.095808462275449e307,-2.1057885020958086e307,-2.1157685419161678e307,-2.125748581736527e307,-2.1357286215568864e307,-2.1457086613772458e307,-2.1556887011976047e307,-2.165668741017964e307,-2.1756487808383233e307,-2.1856288206586828e307,-2.195608860479042e307,-2.205588900299401e307,-2.2155689401197608e307,-2.2255489799401197e307,-2.235529019760479e307,-2.2455090595808383e307,-2.2554890994011975e307,-2.265469139221557e307,-2.2754491790419164e307,-2.2854292188622753e307,-2.295409258682635e307,-2.305389298502994e307,-2.315369338323353e307,-2.325349378143713e307,-2.335329417964072e307,-2.345309457784431e307,-2.355289497604791e307,-2.3652695374251497e307,-2.375249577245509e307,-2.385229617065868e307,-2.395209656886228e307,-2.405189696706587e307,-2.415169736526946e307,-2.4251497763473053e307,-2.435129816167664e307,-2.445109855988024e307,-2.455089895808383e307,-2.4650699356287425e307,-2.475049975449102e307,-2.4850300152694614e307,-2.4950100550898203e307,-2.5049900949101797e307,-2.514970134730539e307,-2.524950174550898e307,-2.534930214371258e307,-2.5449102541916165e307,-2.5548902940119764e307,-2.5648703338323353e307,-2.574850373652694e307,-2.584830413473054e307,-2.5948104532934126e307,-2.6047904931137725e307,-2.614770532934132e307,-2.624750572754491e307,-2.6347306125748503e307,-2.64471065239521e307,-2.6546906922155687e307,-2.664670732035928e307,-2.674650771856288e307,-2.6846308116766465e307,-2.6946108514970064e307,-2.7045908913173653e307,-2.7145709311377243e307,-2.724550970958084e307,-2.7345310107784426e307,-2.7445110505988025e307,-2.7544910904191615e307,-2.764471130239521e307,-2.7744511700598803e307,-2.78443120988024e307,-2.7944112497005987e307,-2.804391289520958e307,-2.8143713293413175e307,-2.8243513691616765e307,-2.8343314089820364e307,-2.8443114488023953e307,-2.854291488622755e307,-2.8642715284431137e307,-2.8742515682634726e307,-2.8842316080838326e307,-2.8942116479041915e307,-2.904191687724551e307,-2.91417172754491e307,-2.92415176736527e307,-2.9341318071856287e307,-2.9441118470059876e307,-2.9540918868263476e307,-2.9640719266467065e307,-2.974051966467066e307,-2.9840320062874253e307,-2.994012046107785e307,-3.0039920859281437e307,-3.013972125748503e307,-3.023952165568862e307,-3.0339322053892215e307,-3.0439122452095814e307,-3.05389228502994e307,-3.0638723248503e307,-3.073852364670658e307,-3.083832404491018e307,-3.0938124443113776e307,-3.103792484131736e307,-3.113772523952096e307,-3.1237525637724554e307,-3.1337326035928143e307,-3.1437126434131737e307,-3.1536926832335336e307,-3.163672723053892e307,-3.1736527628742515e307,-3.183632802694611e307,-3.19361284251497e307,-3.20359288233533e307,-3.213572922155688e307,-3.223552961976048e307,-3.233533001796407e307,-3.243513041616766e307,-3.253493081437126e307,-3.263473121257485e307,-3.2734531610778443e307,-3.2834332008982037e307,-3.293413240718563e307,-3.303393280538922e307,-3.3133733203592815e307,-3.323353360179641e307,-3.3333334e307,-3.3433134398203593e307,-3.3532934796407187e307,-3.363273519461078e307,-3.373253559281437e307,-3.3832335991017965e307,-3.3932136389221554e307,-3.403193678742515e307,-3.4131737185628743e307,-3.423153758383233e307,-3.433133798203593e307,-3.443113838023952e307,-3.4530938778443115e307,-3.463073917664671e307,-3.47305395748503e307,-3.4830339973053893e307,-3.4930140371257487e307,-3.5029940769461077e307,-3.512974116766467e307,-3.522954156586827e307,-3.5329341964071855e307,-3.542914236227545e307,-3.552894276047904e307,-3.562874315868263e307,-3.572854355688623e307,-3.5828343955089816e307,-3.5928144353293415e307,-3.602794475149701e307,-3.61277451497006e307,-3.6227545547904193e307,-3.6327345946107787e307,-3.6427146344311377e307,-3.652694674251497e307,-3.6626747140718565e307,-3.6726547538922155e307,-3.6826347937125754e307,-3.692614833532934e307,-3.7025948733532933e307,-3.7125749131736527e307,-3.7225549529940116e307,-3.7325349928143715e307,-3.7425150326347305e307,-3.75249507245509e307,-3.7624751122754493e307,-3.7724551520958083e307,-3.7824351919161677e307,-3.792415231736527e307,-3.8023952715568865e307,-3.8123753113772455e307,-3.822355351197605e307,-3.8323353910179643e307,-3.8423154308383233e307,-3.8522954706586827e307,-3.8622755104790416e307,-3.872255550299401e307,-3.8822355901197605e307,-3.89221562994012e307,-3.902195669760479e307,-3.912175709580839e307,-3.9221557494011977e307,-3.9321357892215566e307,-3.9421158290419166e307,-3.9520958688622755e307,-3.962075908682635e307,-3.9720559485029943e307,-3.9820359883233533e307,-3.9920160281437127e307,-4.001996067964072e307,-4.011976107784431e307,-4.0219561476047905e307,-4.0319361874251494e307,-4.041916227245509e307,-4.051896267065869e307,-4.061876306886227e307,-4.0718563467065866e307,-4.0818363865269466e307,-4.091816426347305e307,-4.101796466167665e307,-4.1117765059880244e307,-4.1217565458083833e307,-4.1317365856287427e307,-4.1417166254491016e307,-4.151696665269461e307,-4.1616767050898205e307,-4.1716567449101794e307,-4.181636784730539e307,-4.1916168245508983e307,-4.201596864371257e307,-4.211576904191617e307,-4.221556944011976e307,-4.231536983832335e307,-4.241517023652695e307,-4.251497063473054e307,-4.2614771032934133e307,-4.2714571431137727e307,-4.281437182934132e307,-4.291417222754491e307,-4.30139726257485e307,-4.31137730239521e307,-4.321357342215569e307,-4.3313373820359283e307,-4.341317421856287e307,-4.3512974616766467e307,-4.361277501497006e307,-4.371257541317365e307,-4.3812375811377244e307,-4.391217620958084e307,-4.4011976607784433e307,-4.411177700598802e307,-4.421157740419162e307,-4.431137780239521e307,-4.44111782005988e307,-4.45109785988024e307,-4.4610778997005984e307,-4.4710579395209583e307,-4.4810379793413177e307,-4.4910180191616767e307,-4.500998058982036e307,-4.510978098802395e307,-4.520958138622754e307,-4.530938178443114e307,-4.540918218263473e307,-4.550898258083833e307,-4.560878297904192e307,-4.570858337724551e307,-4.58083837754491e307,-4.590818417365269e307,-4.600798457185629e307,-4.610778497005987e307,-4.620758536826348e307,-4.630738576646706e307,-4.640718616467066e307,-4.650698656287426e307,-4.660678696107784e307,-4.670658735928143e307,-4.680638775748503e307,-4.690618815568863e307,-4.700598855389221e307,-4.710578895209582e307,-4.72055893502994e307,-4.730538974850299e307,-4.740519014670659e307,-4.750499054491018e307,-4.760479094311377e307,-4.770459134131736e307,-4.780439173952097e307,-4.790419213772455e307,-4.800399253592814e307,-4.810379293413174e307,-4.820359333233532e307,-4.830339373053893e307,-4.840319412874252e307,-4.850299452694611e307,-4.86027949251497e307,-4.870259532335329e307,-4.880239572155689e307,-4.890219611976047e307,-4.900199651796407e307,-4.910179691616766e307,-4.920159731437126e307,-4.930139771257485e307,-4.940119811077844e307,-4.950099850898203e307,-4.960079890718563e307,-4.970059930538923e307,-4.980039970359281e307,-4.990020010179641e307,-5.00000005e307,-5.009980089820359e307,-5.019960129640719e307,-5.029940169461078e307,-5.039920209281437e307,-5.049900249101796e307,-5.059880288922156e307,-5.069860328742515e307,-5.079840368562874e307,-5.089820408383233e307,-5.099800448203593e307,-5.109780488023953e307,-5.119760527844311e307,-5.129740567664671e307,-5.13972060748503e307,-5.149700647305389e307,-5.159680687125749e307,-5.169660726946108e307,-5.179640766766467e307,-5.189620806586826e307,-5.199600846407187e307,-5.209580886227545e307,-5.2195609260479035e307,-5.229540965868263e307,-5.239521005688623e307,-5.249501045508982e307,-5.259481085329341e307,-5.269461125149701e307,-5.279441164970059e307,-5.28942120479042e307,-5.299401244610779e307,-5.309381284431137e307,-5.319361324251497e307,-5.329341364071857e307,-5.339321403892216e307,-5.349301443712575e307,-5.359281483532935e307,-5.369261523353293e307,-5.379241563173652e307,-5.389221602994013e307,-5.399201642814371e307,-5.40918168263473e307,-5.41916172245509e307,-5.42914176227545e307,-5.439121802095808e307,-5.449101841916168e307,-5.459081881736527e307,-5.469061921556886e307,-5.479041961377247e307,-5.489022001197605e307,-5.499002041017964e307,-5.508982080838323e307,-5.518962120658683e307,-5.528942160479042e307,-5.5389222002994e307,-5.548902240119761e307,-5.55888227994012e307,-5.568862319760479e307,-5.578842359580839e307,-5.588822399401197e307,-5.598802439221556e307,-5.608782479041917e307,-5.618762518862276e307,-5.628742558682634e307,-5.638722598502995e307,-5.648702638323353e307,-5.658682678143712e307,-5.668662717964073e307,-5.678642757784431e307,-5.68862279760479e307,-5.69860283742515e307,-5.70858287724551e307,-5.718562917065868e307,-5.728542956886227e307,-5.738522996706587e307,-5.748503036526946e307,-5.758483076347306e307,-5.768463116167665e307,-5.778443155988024e307,-5.788423195808384e307,-5.798403235628743e307,-5.808383275449102e307,-5.818363315269461e307,-5.82834335508982e307,-5.83832339491018e307,-5.84830343473054e307,-5.858283474550898e307,-5.868263514371257e307,-5.878243554191616e307,-5.888223594011976e307,-5.898203633832336e307,-5.908183673652694e307,-5.918163713473054e307,-5.928143753293414e307,-5.938123793113772e307,-5.948103832934132e307,-5.958083872754491e307,-5.96806391257485e307,-5.97804395239521e307,-5.98802399221557e307,-5.998004032035928e307,-6.007984071856287e307,-6.017964111676646e307,-6.027944151497006e307,-6.037924191317366e307,-6.047904231137724e307,-6.057884270958084e307,-6.067864310778444e307,-6.077844350598802e307,-6.087824390419162e307,-6.097804430239521e307,-6.10778447005988e307,-6.11776450988024e307,-6.1277445497006e307,-6.137724589520958e307,-6.147704629341316e307,-6.157684669161678e307,-6.167664708982036e307,-6.177644748802395e307,-6.187624788622754e307,-6.197604828443114e307,-6.207584868263473e307,-6.217564908083832e307,-6.227544947904192e307,-6.23752498772455e307,-6.24750502754491e307,-6.25748506736527e307,-6.267465107185629e307,-6.277445147005988e307,-6.287425186826347e307,-6.297405226646707e307,-6.307385266467066e307,-6.317365306287426e307,-6.327345346107784e307,-6.337325385928143e307,-6.347305425748504e307,-6.357285465568862e307,-6.367265505389221e307,-6.377245545209581e307,-6.387225585029941e307,-6.397205624850299e307,-6.40718566467066e307,-6.417165704491018e307,-6.427145744311376e307,-6.437125784131738e307,-6.447105823952096e307,-6.457085863772455e307,-6.467065903592814e307,-6.477045943413174e307,-6.487025983233533e307,-6.497006023053891e307,-6.506986062874252e307,-6.51696610269461e307,-6.52694614251497e307,-6.53692618233533e307,-6.546906222155689e307,-6.556886261976047e307,-6.566866301796407e307,-6.576846341616767e307,-6.586826381437125e307,-6.596806421257486e307,-6.606786461077844e307,-6.616766500898204e307,-6.626746540718564e307,-6.636726580538922e307,-6.646706620359281e307,-6.65668666017964e307,-6.666666700000001e307,-6.676646739820359e307,-6.686626779640719e307,-6.696606819461078e307,-6.706586859281436e307,-6.716566899101797e307,-6.726546938922156e307,-6.736526978742515e307,-6.746507018562874e307,-6.756487058383235e307,-6.766467098203593e307,-6.776447138023952e307,-6.786427177844311e307,-6.79640721766467e307,-6.806387257485031e307,-6.816367297305389e307,-6.826347337125749e307,-6.836327376946107e307,-6.846307416766466e307,-6.856287456586827e307,-6.866267496407185e307,-6.876247536227545e307,-6.886227576047904e307,-6.896207615868264e307,-6.906187655688623e307,-6.916167695508982e307,-6.926147735329341e307,-6.9361277751497e307,-6.946107814970061e307,-6.956087854790419e307,-6.966067894610779e307,-6.976047934431137e307,-6.986027974251497e307,-6.996008014071857e307,-7.005988053892215e307,-7.015968093712575e307,-7.025948133532934e307,-7.035928173353294e307,-7.045908213173653e307,-7.055888252994012e307,-7.065868292814371e307,-7.07584833263473e307,-7.085828372455091e307,-7.095808412275449e307,-7.105788452095808e307,-7.115768491916168e307,-7.125748531736527e307,-7.135728571556886e307,-7.145708611377246e307,-7.155688651197605e307,-7.165668691017963e307,-7.175648730838324e307,-7.185628770658683e307,-7.195608810479041e307,-7.205588850299401e307,-7.215568890119761e307,-7.22554892994012e307,-7.235528969760479e307,-7.245509009580839e307,-7.255489049401197e307,-7.265469089221557e307,-7.275449129041917e307,-7.285429168862275e307,-7.295409208682634e307,-7.305389248502994e307,-7.315369288323354e307,-7.325349328143712e307,-7.335329367964072e307,-7.345309407784431e307,-7.35528944760479e307,-7.365269487425151e307,-7.375249527245509e307,-7.385229567065868e307,-7.395209606886228e307,-7.405189646706588e307,-7.415169686526946e307,-7.425149726347305e307,-7.435129766167665e307,-7.445109805988024e307,-7.455089845808384e307,-7.465069885628743e307,-7.475049925449102e307,-7.48502996526946e307,-7.495010005089821e307,-7.50499004491018e307,-7.514970084730538e307,-7.524950124550899e307,-7.534930164371257e307,-7.544910204191617e307,-7.554890244011977e307,-7.564870283832335e307,-7.574850323652694e307,-7.584830363473055e307,-7.594810403293414e307,-7.604790443113772e307,-7.614770482934132e307,-7.624750522754491e307,-7.63473056257485e307,-7.64471060239521e307,-7.654690642215569e307,-7.664670682035928e307,-7.674650721856287e307,-7.684630761676648e307,-7.694610801497006e307,-7.704590841317365e307,-7.714570881137725e307,-7.724550920958084e307,-7.734530960778444e307,-7.744511000598802e307,-7.754491040419162e307,-7.764471080239521e307,-7.77445112005988e307,-7.78443115988024e307,-7.794411199700598e307,-7.804391239520958e307,-7.814371279341318e307,-7.824351319161677e307,-7.834331358982036e307,-7.844311398802395e307,-7.854291438622754e307,-7.864271478443114e307,-7.874251518263474e307,-7.884231558083832e307,-7.894211597904192e307,-7.904191637724551e307,-7.91417167754491e307,-7.92415171736527e307,-7.934131757185628e307,-7.944111797005988e307,-7.954091836826348e307,-7.964071876646707e307,-7.974051916467066e307,-7.984031956287425e307,-7.994011996107784e307,-8.003992035928144e307,-8.013972075748504e307,-8.023952115568862e307,-8.033932155389222e307,-8.043912195209582e307,-8.05389223502994e307,-8.063872274850299e307,-8.073852314670659e307,-8.083832354491018e307,-8.093812394311377e307,-8.103792434131738e307,-8.113772473952096e307,-8.123752513772454e307,-8.133732553592814e307,-8.143712593413174e307,-8.153692633233533e307,-8.163672673053892e307,-8.173652712874252e307,-8.183632752694611e307,-8.19361279251497e307,-8.20359283233533e307,-8.213572872155688e307,-8.223552911976048e307,-8.233532951796408e307,-8.243512991616767e307,-8.253493031437125e307,-8.263473071257485e307,-8.273453111077844e307,-8.283433150898203e307,-8.293413190718564e307,-8.303393230538922e307,-8.313373270359281e307,-8.323353310179642e307,-8.33333335e307,-8.343313389820359e307,-8.353293429640719e307,-8.363273469461078e307,-8.373253509281437e307,-8.383233549101797e307,-8.393213588922156e307,-8.403193628742514e307,-8.413173668562875e307,-8.423153708383234e307,-8.433133748203593e307,-8.443113788023951e307,-8.453093827844312e307,-8.463073867664671e307,-8.473053907485029e307,-8.48303394730539e307,-8.493013987125748e307,-8.502994026946107e307,-8.512974066766468e307,-8.522954106586827e307,-8.532934146407185e307,-8.542914186227545e307,-8.552894226047905e307,-8.562874265868263e307,-8.572854305688623e307,-8.582834345508982e307,-8.592814385329341e307,-8.602794425149701e307,-8.61277446497006e307,-8.622754504790419e307,-8.632734544610778e307,-8.642714584431139e307,-8.652694624251497e307,-8.662674664071857e307,-8.672654703892216e307,-8.682634743712574e307,-8.692614783532935e307,-8.702594823353293e307,-8.712574863173653e307,-8.722554902994012e307,-8.732534942814371e307,-8.742514982634731e307,-8.75249502245509e307,-8.762475062275449e307,-8.772455102095808e307,-8.782435141916168e307,-8.792415181736527e307,-8.802395221556887e307,-8.812375261377245e307,-8.822355301197604e307,-8.832335341017965e307,-8.842315380838323e307,-8.852295420658683e307,-8.862275460479042e307,-8.872255500299402e307,-8.882235540119761e307,-8.892215579940119e307,-8.902195619760479e307,-8.912175659580838e307,-8.922155699401198e307,-8.932135739221557e307,-8.942115779041917e307,-8.952095818862275e307,-8.962075858682634e307,-8.972055898502995e307,-8.982035938323353e307,-8.992015978143713e307,-9.001996017964071e307,-9.011976057784432e307,-9.02195609760479e307,-9.03193613742515e307,-9.041916177245509e307,-9.051896217065867e307,-9.061876256886228e307,-9.071856296706586e307,-9.081836336526947e307,-9.091816376347305e307,-9.101796416167663e307,-9.111776455988024e307,-9.121756495808384e307,-9.131736535628743e307,-9.141716575449101e307,-9.151696615269462e307,-9.16167665508982e307,-9.17165669491018e307,-9.181636734730539e307,-9.191616774550897e307,-9.201596814371258e307,-9.211576854191616e307,-9.221556894011977e307,-9.231536933832337e307,-9.241516973652695e307,-9.251497013473054e307,-9.261477053293412e307,-9.271457093113773e307,-9.281437132934131e307,-9.29141717275449e307,-9.30139721257485e307,-9.31137725239521e307,-9.321357292215569e307,-9.33133733203593e307,-9.341317371856288e307,-9.351297411676646e307,-9.361277451497007e307,-9.371257491317365e307,-9.381237531137723e307,-9.391217570958084e307,-9.401197610778442e307,-9.411177650598803e307,-9.421157690419163e307,-9.431137730239522e307,-9.44111777005988e307,-9.45109780988024e307,-9.461077849700599e307,-9.471057889520957e307,-9.481037929341316e307,-9.491017969161676e307,-9.500998008982037e307,-9.510978048802397e307,-9.520958088622756e307,-9.530938128443114e307,-9.540918168263472e307,-9.550898208083833e307,-9.560878247904191e307,-9.57085828772455e307,-9.58083832754491e307,-9.59081836736527e307,-9.600798407185629e307,-9.610778447005987e307,-9.620758486826348e307,-9.630738526646706e307,-9.640718566467067e307,-9.650698606287425e307,-9.660678646107784e307,-9.670658685928142e307,-9.680638725748504e307,-9.690618765568863e307,-9.700598805389223e307,-9.710578845209582e307,-9.72055888502994e307,-9.730538924850299e307,-9.740518964670657e307,-9.750499004491017e307,-9.760479044311378e307,-9.770459084131738e307,-9.780439123952097e307,-9.790419163772455e307,-9.800399203592814e307,-9.810379243413174e307,-9.820359283233534e307,-9.830339323053893e307,-9.840319362874251e307,-9.85029940269461e307,-9.860279442514968e307,-9.87025948233533e307,-9.88023952215569e307,-9.89021956197605e307,-9.900199601796408e307,-9.910179641616766e307,-9.920159681437125e307,-9.930139721257483e307,-9.940119761077844e307,-9.950099800898204e307,-9.960079840718564e307,-9.970059880538923e307,-9.980039920359281e307,-9.99001996017964e307,-1.0e308]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_positive.json new file mode 100644 index 000000000000..23c8fef7c52b --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_positive.json @@ -0,0 +1 @@ +{"expected":[1.0e-300,1.0019899700803996e-305,5.00997495012525e-306,3.3399888778370363e-306,2.5049937500405933e-306,2.003996004031968e-306,1.6699972278046017e-306,1.4314265367579942e-306,1.2524984437706837e-306,1.113332104956911e-306,1.0019990060169862e-306,9.109082702635492e-307,8.349993111255683e-307,7.707686443921621e-307,7.157137806248462e-307,6.679995604562892e-307,6.2624961407367526e-307,5.894114231939694e-307,5.566663623557219e-307,5.2736814820900544e-307,5.009997540091208e-307,4.7714263424908375e-307,4.554543425703383e-307,4.3565198847682755e-307,4.174998298688193e-307,4.007998433674212e-307,3.853844707172141e-307,3.711109770988138e-307,3.578570183740229e-307,3.4551712545235752e-307,3.3399989178403507e-307,3.232257052089807e-307,3.1312490508401315e-307,3.0363627447771213e-307,2.947057984484668e-307,2.8628563518908304e-307,2.7833325864724224e-307,2.708107401804421e-307,2.6368414363381198e-307,2.5692301348285587e-307,2.504999397547645e-307,2.4439018661976355e-307,2.385713740408288e-307,2.330232038443599e-307,2.277272231448455e-307,2.2266661931289897e-307,2.1782604168658787e-307,2.131914460430147e-307,2.0874995851094575e-307,2.044897561471964e-307,2.0039996184384724e-307,1.964705515993148e-307,1.9269227248891176e-307,1.8905656992175756e-307,1.855555229802526e-307,1.8218178681342688e-307,1.7892854120242857e-307,1.7578944454017103e-307,1.7275859257170491e-307,1.698304813304841e-307,1.6699997378100412e-307,1.6426226974249252e-307,1.616128787232087e-307,1.5904759534195363e-307,1.5656247705381197e-307,1.5415382393197954e-307,1.5181816028760636e-307,1.4955221793562331e-307,1.473529209371135e-307,1.4521737166843367e-307,1.4314283808441068e-307,1.4112674205788777e-307,1.3916664869097454e-307,1.372602565048249e-307,1.3540538842483777e-307,1.3359998348704203e-307,1.3184208919924018e-307,1.301298544973876e-307,1.284615232437888e-307,1.2683542821910123e-307,1.2524998556493915e-307,1.2370368963813603e-307,1.2219510824152443e-307,1.207228781994789e-307,1.1928570124949122e-307,1.1788234022375224e-307,1.165116154971349e-307,1.1517240168014396e-307,1.1386362453734627e-307,1.1258425811354745e-307,1.113333220515567e-307,1.101098790868022e-307,1.0891303270534132e-307,1.077419249529667e-307,1.0659573438415672e-307,1.0547367414056605e-307,1.043749901496103e-307,1.0329895943447855e-307,1.0224488852761436e-307,1.0121211198034978e-307,1.0019999096196082e-307,9.920791194194766e-308,9.823528544982776e-308,9.72815449071739e-308,9.634614552703473e-308,9.542856327624561e-308,9.452829389647628e-308,9.36448519801736e-308,9.277777009784014e-308,9.192659797335304e-308,9.109090170426505e-308,9.027026302425184e-308,8.946427860507073e-308,8.867255939558361e-308,8.789472999556839e-308,8.713042806220088e-308,8.637930374723593e-308,8.564101916305111e-308,8.491524787584075e-308,8.420167442436314e-308,8.349999386275046e-308,8.280991132598911e-308,8.213114161677011e-308,8.146340881249297e-308,8.080644589128552e-308,8.015999437597481e-308,7.952380399501172e-308,7.889763235941509e-308,7.828124465485877e-308,7.76744133480804e-308,7.707691790684059e-308,7.648854453270821e-308,7.590908590599206e-308,7.533834094217909e-308,7.477611455927855e-308,7.422221745550648e-308,7.367646589677798e-308,7.31386815135066e-308,7.260869110623848e-308,7.208632645967626e-308,7.157142416467375e-308,7.106382544780471e-308,7.056337600813356e-308,7.006992586083451e-308,6.958332918732664e-308,6.910344419161023e-308,6.863013296250727e-308,6.816326134152458e-308,6.7702698796074e-308,6.724831829779762e-308,6.679999620576021e-308,6.635761215428291e-308,6.59210489452045e-308,6.549019244436774e-308,6.506493148213884e-308,6.464515775777751e-308,6.423076574748541e-308,6.382165261596838e-308,6.341771813135733e-308,6.301886458333944e-308,6.262499670435954e-308,6.223602159375813e-308,6.185184864471896e-308,6.147238947390584e-308,6.109755785367356e-308,6.072726964674396e-308,6.0361442743243e-308,5.999999700000014e-308,5.964285418201545e-308,5.928993790600483e-308,5.894117358593786e-308,5.859648838048644e-308,5.825581114230679e-308,5.79190723690803e-308,5.758620415624269e-308,5.7257140151334e-308,5.693181550990457e-308,5.661016685291594e-308,5.629213222557771e-308,5.597765105756387e-308,5.566666412455567e-308,5.535911351105899e-308,5.5054942574447635e-308,5.475409591018554e-308,5.445651931818299e-308,5.416215977024408e-308,5.38709653785641e-308,5.358288536523788e-308,5.329787003274116e-308,5.301587073534906e-308,5.273683985145715e-308,5.24607307567721e-308,5.218749779833993e-308,5.191709626938183e-308,5.164948238490815e-308,5.138461325808293e-308,5.112244687731162e-308,5.086294208402699e-308,5.060605855114792e-308,5.03517567621879e-308,5.009999799099008e-308,4.985074428206736e-308,4.960395843152641e-308,4.935960396855549e-308,4.911764513745683e-308,4.887804688020471e-308,4.86407748195118e-308,4.840579524238613e-308,4.817307508416242e-308,4.794258191299199e-308,4.771428391477558e-308,4.748814987852481e-308,4.726414918213783e-308,4.704225177857575e-308,4.682242818242647e-308,4.660464945684376e-308,4.638888720084883e-308,4.617511353698322e-308,4.596330109930147e-308,4.575342302169268e-308,4.554545292652072e-308,4.533936491357268e-308,4.513513354930611e-308,4.493273385638567e-308,4.473214130349974e-308,4.453333179544894e-308,4.433628166349759e-308,4.414096765598018e-308,4.3947366929155173e-308,4.375545703829833e-308,4.3565215929028397e-308,4.33766219288582e-308,4.318965373896408e-308,4.30042904261674e-308,4.2820511415121674e-308,4.263829648069901e-308,4.245762574057028e-308,4.2278479647973124e-308,4.2100838984662143e-308,4.1924684854036216e-308,4.1749998674437533e-308,4.157676217261759e-308,4.140495737736498e-308,4.1234566613290697e-308,4.106557249476624e-308,4.089795792001003e-308,4.0731706065318306e-308,4.056680037943586e-308,4.040322457806325e-308,4.024096263849619e-308,4.0079998794393636e-308,3.992031753067098e-308,3.976190357851477e-308,3.9604741910515745e-308,3.9448817735916697e-308,3.929411649597236e-308,3.9140623859417754e-308,3.8988325718042696e-308,3.8837208182368887e-308,3.8687257577427317e-308,3.8538460438633175e-308,3.839080350775535e-308,3.8244273728978524e-308,3.8098858245054897e-308,3.795454439354342e-308,3.781131970313424e-308,3.7669171890056e-308,3.7528088854563846e-308,3.7388058677506147e-308,3.7249069616967734e-308,3.7111110104987674e-308,3.6974168744349913e-308,3.6838234305444453e-308,3.6703295723197703e-308,3.656934209407004e-308,3.64363626731187e-308,3.6304346871124793e-308,3.617328425178227e-308,3.60431645289478e-308,3.591397756394961e-308,3.578571336295411e-308,3.5658362074388647e-308,3.5531913986419215e-308,3.5406359524481537e-308,3.528168924886433e-308,3.515789385234351e-308,3.503496415786593e-308,3.4912891116281635e-308,3.479166580412329e-308,3.4671279421431755e-308,3.4551723289626655e-308,3.4432988849420786e-308,3.4315067658777466e-308,3.419795139090964e-308,3.408163183231989e-308,3.396610088088023e-308,3.3851350543950894e-308,3.373737293653711e-308,3.3624160279482924e-308,3.351170489770138e-308,3.339999921844001e-308,3.328903576958093e-308,3.3178807177974665e-308,3.30693061678071e-308,3.296052555899846e-308,3.285245826563398e-308,3.274509729442524e-308,3.263843574320153e-308,3.2532466799430788e-308,3.2427183738768986e-308,3.232257992363789e-308,3.221864880183003e-308,3.2115383905140545e-308,3.201277884802541e-308,3.191082732628506e-308,3.1809523115773256e-308,3.1708860071130436e-308,3.160883212454101e-308,3.150943328451408e-308,3.141065763468717e-308,3.131249933265236e-308,3.1214952608804274e-308,3.111801176520969e-308,3.1021671174497994e-308,3.0925925278772306e-308,3.083076858854061e-308,3.0736195681666615e-308,3.0642201202339883e-308,3.054877986006471e-308,3.0455926428667523e-308,3.0363635745322323e-308,3.0271902709593756e-308,3.018072228249747e-308,3.009008948557748e-308,2.999999940000001e-308,2.9910447165663635e-308,2.9821427980325266e-308,2.9732937098741745e-308,2.964496983182663e-308,2.955752154582192e-308,2.9470587661484442e-308,2.9384163653286446e-308,2.929824504863036e-308,2.921282742707717e-308,2.91279064195883e-308,2.904347770778073e-308,2.8959537023194904e-308,2.887608014657543e-308,2.87931029071641e-308,2.871060118200508e-308,2.862857089526205e-308,2.8547008017546946e-308,2.846590856526021e-308,2.8385268599942223e-308,2.8305084227635747e-308,2.8225351598259085e-308,2.814606690498991e-308,2.8067226383659357e-308,2.7988826312156305e-308,2.791086300984165e-308,2.783333283697223e-308,2.775623219413449e-308,2.767955752168738e-308,2.760330529921454e-308,2.7527472044985515e-308,2.7452054315425793e-308,2.7377048704595547e-308,2.730245184367692e-308,2.7228260400469645e-308,2.715447107889484e-308,2.708108061850695e-308,2.700808579401342e-308,2.69354834148023e-308,2.6863270324477296e-308,2.679144340040036e-308,2.6719999553241606e-308,2.6648935726536335e-308,2.657824889624919e-308,2.6507936070345184e-308,2.6437994288367534e-308,2.6368420621022165e-308,2.629921216976874e-308,2.6230366066418144e-308,2.6161879472736203e-308,2.6093749580053715e-308,2.602597360888245e-308,2.595854880853715e-308,2.5891472456763426e-308,2.5824741859371356e-308,2.5758354349874777e-308,2.56923072891361e-308,2.562659806501659e-308,2.5561224092031967e-308,2.549618281101335e-308,2.543147168877323e-308,2.5367088217776644e-308,2.5303029915817267e-308,2.523929432569841e-308,2.517587901491882e-308,2.511278157536323e-308,2.5049999622997503e-308,2.4987530797568427e-308,2.492537276230787e-308,2.486352320364143e-308,2.480197983090139e-308,2.47407403760439e-308,2.4679802593370384e-308,2.4619164259253005e-308,2.4558823171864193e-308,2.4498777150910146e-308,2.443902403736824e-308,2.4379561693228197e-308,2.432038800123716e-308,2.426150086464833e-308,2.420289820697333e-308,2.414457797173814e-308,2.408653812224252e-308,2.4028776641322914e-308,2.39712915311188e-308,2.3914080812842266e-308,2.3857142526551025e-308,2.380047473092457e-308,2.374407550304351e-308,2.368794293817213e-308,2.363207514954388e-308,2.3576470268150036e-308,2.352112644253125e-308,2.3466041838572035e-308,2.3411214639298196e-308,2.3356643044677006e-308,2.330232527142023e-308,2.324825955278988e-308,2.3194444138406636e-308,2.314087729406099e-308,2.30875573015269e-308,2.303448245837813e-308,2.2981651077807007e-308,2.2929061488445773e-308,2.2876712034190284e-308,2.2824601074026186e-308,2.277272698185744e-308,2.2721088146337177e-308,2.266968297070085e-308,2.2618509872601644e-308,2.256756728394814e-308,2.2516853650744104e-308,2.2466367432930486e-308,2.2416107104229543e-308,2.2366071151990995e-308,2.2316258077040293e-308,2.226666639352889e-308,2.221729462878649e-308,2.216814132317527e-308,2.2119205029946057e-308,2.207048431509636e-308,2.202197775723029e-308,2.197368394742036e-308,2.192560148907105e-308,2.1877728997784183e-308,2.183006510122603e-308,2.178260843899622e-308,2.1735357662498296e-308,2.1688311434811946e-308,2.164146843056692e-308,2.15948273358186e-308,2.154838684792508e-308,2.150214567542596e-308,2.1456102537922593e-308,2.14102561659599e-308,2.136460530090971e-308,2.131914869485559e-308,2.127388511047913e-308,2.1228813320947644e-308,2.118393210980338e-308,2.113924027085403e-308,2.109473660806471e-308,2.105041993545124e-308,2.1006289076974807e-308,2.0962342866437917e-308,2.091858014738168e-308,2.087499977298438e-308,2.083160060596125e-308,2.078838151846559e-308,2.0745341391991053e-308,2.070247911727512e-308,2.0659793594203845e-308,2.061728373171773e-308,2.0574948447718716e-308,2.0532786668978436e-308,2.0490797331047463e-308,2.044897937816577e-308,2.040733176317421e-308,2.036585344742713e-308,2.0324543400706034e-308,2.028340060113426e-308,2.0242424035092747e-308,2.0201612697136775e-308,2.0160965589913726e-308,2.0120481724081867e-308,2.008016011823005e-308,2.00399997987984e-308,1.99999998e-308,1.9960159163743435e-308,1.99204769395563e-308,1.9880952184509637e-308,1.9841583963143224e-308,1.9802371347391775e-308,1.976331341651203e-308,1.9724409257010665e-308,1.9685657962573096e-308,1.964705863399308e-308,1.9608610379103175e-308,1.957031231270599e-308,1.953216355650628e-308,1.949416323904374e-308,1.945631049562673e-308,1.9418604468266634e-308,1.9381044305613027e-308,1.934362916288964e-308,1.9306358201831005e-308,1.9269230590619823e-308,1.9232245503825136e-308,1.919540212234113e-308,1.9158699633326637e-308,1.9122137230145394e-308,1.908571411230694e-308,1.9049429485408204e-308,1.901328256107573e-308,1.8977272556908577e-308,1.89413986964219e-308,1.89056602089911e-308,1.887005632979667e-308,1.8834586299769636e-308,1.879924936553756e-308,1.876404477937129e-308,1.872897179913215e-308,1.8694029688219815e-308,1.8659217715520737e-308,1.862453515535717e-308,1.8589981287436713e-308,1.855555539680247e-308,1.8521256773783744e-308,1.8487084713947253e-308,1.84530385180489e-308,1.8419117491986103e-308,1.838532094675061e-308,1.8351648198381836e-308,1.831809856792075e-308,1.828467138136422e-308,1.825136596961987e-308,1.821818166846149e-308,1.818511781848479e-308,1.81521737650638e-308,1.8119348858307633e-308,1.8086642453017767e-308,1.8054053908645733e-308,1.8021582589251333e-308,1.7989227863461284e-308,1.795698910442826e-308,1.7924865689790417e-308,1.789285700163138e-308,1.7860962426440567e-308,1.7829181355074023e-308,1.779751318271566e-308,1.7765957308838843e-308,1.773451313716845e-308,1.7703180075643347e-308,1.767195753637916e-308,1.764084493563157e-308,1.7609841693759904e-308,1.757894723519114e-308,1.7548160988384283e-308,1.751748238579515e-308,1.7486910863841454e-308,1.7456445862868314e-308,1.74260868271141e-308,1.739583320467665e-308,1.7365684447479795e-308,1.733564001124029e-308,1.730569935543505e-308,1.7275861943268725e-308,1.724612724164166e-308,1.721649472111808e-308,1.718696385589472e-308,1.7157534123769707e-308,1.712820500611177e-308,1.7098975987829795e-308,1.7069846557342654e-308,1.7040816206549357e-308,1.7011884430799524e-308,1.698305072886412e-308,1.695431460290654e-308,1.692567555845394e-308,1.6897133104368846e-308,1.686868675282114e-308,1.6840336019260225e-308,1.681208042238751e-308,1.678391948412919e-308,1.675585272960929e-308,1.6727879687122944e-308,1.669999988811e-308,1.667221286712883e-308,1.6644518161830446e-308,1.6616915312932853e-308,1.6589403864195647e-308,1.6561983362394917e-308,1.653465335729831e-308,1.6507413401640394e-308,1.648026305109829e-308,1.6453201864267516e-308,1.6426229402638e-308,1.639934523057047e-308,1.6372548915272973e-308,1.634584002677762e-308,1.6319218137917645e-308,1.629268282430458e-308,1.6266233664305746e-308,1.6239870239021877e-308,1.621359213226506e-308,1.6187398930536773e-308,1.6161290223006247e-308,1.613526560148895e-308,1.610932466042535e-308,1.6083466996859807e-308,1.6057692210419746e-308,1.603199990329498e-308,1.6006389680217213e-308,1.5980861148439823e-308,1.595541391771776e-308,1.5930047600287637e-308,1.5904761810848073e-308,1.587955616654017e-308,1.5854430286928176e-308,1.582938379398037e-308,1.5804416312050074e-308,1.5779527467856905e-308,1.5754716890468137e-308,1.572998421128031e-308,1.5705329064000946e-308,1.5680751084630474e-308,1.5656249911444336e-308,1.5631825184975214e-308,1.5607476547995455e-308,1.5583203645499687e-308,1.5559006124687516e-308,1.5534883634946456e-308,1.551083582783502e-308,1.54868623570659e-308,1.546296287848937e-308,1.5439137050076805e-308,1.541538453190438e-308,1.539170498613689e-308,1.5368098077011743e-308,1.5344563470823083e-308,1.532110083590607e-308,1.529770984262129e-308,1.5274390163339346e-308,1.5251141472425513e-308,1.522796344622463e-308,1.5204855763046044e-308,1.5181818103148763e-308,1.5158850148726657e-308,1.51359515838939e-308,1.5113122094670463e-308,1.5090361368967734e-308,1.5067669096574366e-308,1.5045044969142117e-308,1.502248868017191e-308,1.4999999925e-308,1.497757840078425e-308,1.4955223806490533e-308,1.493293584287926e-308,1.491071421249203e-308,1.48885586196384e-308,1.486646877038276e-308,1.484444437253136e-308,1.4822485135619374e-308,1.4800590770898194e-308,1.4778760991322734e-308,1.475699551153889e-308,1.473529404787111e-308,1.471365631831008e-308,1.469208204250049e-308,1.467057094172896e-308,1.4649122738911973e-308,1.462773715858405e-308,1.4606413926885907e-308,1.4585152771552793e-308,1.456395342190289e-308,1.454281560882582e-308,1.4521739064771267e-308,1.4500723523737696e-308,1.4479768721261153e-308,1.4458874394404154e-308,1.443804028174472e-308,1.441726612336546e-308,1.4396551660842747e-308,1.4375896637236036e-308,1.43553007970772e-308,1.433476388636004e-308,1.4314285652529797e-308,1.4293865844472844e-308,1.427350421250639e-308,1.4253200508368324e-308,1.4232954485207094e-308,1.4212765897571753e-308,1.4192634501401986e-308,1.417256005401831e-308,1.4152542314112326e-308,1.4132581041737005e-308,1.411267599829716e-308,1.4092826946539907e-308,1.407303365054523e-308,1.4053295875716655e-308,1.403361338877198e-308,1.401398595773407e-308,1.3994413351921755e-308,1.3974895341940795e-308,1.39554316996749e-308,1.393602219827685e-308,1.391666661215972e-308,1.389736471698808e-308,1.3878116289669357e-308,1.385892110834524e-308,1.383977895238317e-308,1.3820689602367847e-308,1.380165284009289e-308,1.3782668448552495e-308,1.376373621193319e-308,1.374485591560568e-308,1.372602734611672e-308,1.370725029118106e-308,1.3688524539673474e-308,1.366984988162088e-308,1.3651226108194434e-308,1.363265301170179e-308,1.3614130385579365e-308,1.3595658024384674e-308,1.357723572378875e-308,1.3558863280568593e-308,1.354054049259971e-308,1.3522267158848695e-308,1.3504043079365886e-308,1.3485868055278063e-308,1.346774188878122e-308,1.344966438313337e-308,1.343163534264747e-308,1.341365457268431e-308,1.339572187964554e-308,1.337783707096672e-308,1.33599999551104e-308,1.334221034155932e-308,1.332446804080961e-308,1.330677286436406e-308,1.3289124624725427e-308,1.327152313538985e-308,1.325396821084026e-308,1.323645966653986e-308,1.3218997318925653e-308,1.3201580985402055e-308,1.3184210484334486e-308,1.316688563504311e-308,1.3149606257796515e-308,1.3132372173805543e-308,1.31151832052171e-308,1.3098039175108033e-308,1.308093990747909e-308,1.306388522724885e-308,1.3046874960247803e-308,1.302990893321237e-308,1.301298697377905e-308,1.2996108910478584e-308,1.297927457273014e-308,1.296248379083559e-308,1.2945736395973798e-308,1.292903222019496e-308,1.2912371096415e-308,1.289575285840998e-308,1.2879177340810594e-308,1.286264437909667e-308,1.2846153809591717e-308,1.2829705469457557e-308,1.281329919668893e-308,1.279693483010819e-308,1.278061220936003e-308,1.276433117490624e-308,1.274809156802051e-308,1.2731893230783266e-308,1.2715736006076554e-308,1.2699619737578974e-308,1.2683544269760615e-308,1.266750944787807e-308,1.265151511796947e-308,1.263556112684953e-308,1.26196473221047e-308,1.260377355208829e-308,1.2587939665915633e-308,1.257214551345935e-308,1.2556390945344565e-308,1.2540675812944217e-308,1.2524999968374376e-308,1.2509363264489614e-308,1.249376555487839e-308,1.247820669385849e-308,1.2462686536472487e-308,1.244720493848324e-308,1.243176175636941e-308,1.241635684732107e-308,1.2400990069235247e-308,1.238566128071159e-308,1.237037034104801e-308,1.235511711023641e-308,1.233990144895836e-308,1.23247232185809e-308,1.230958228115232e-308,1.2294478499397945e-308,1.2279411736716045e-308,1.2264381857173676e-308,1.22493887255026e-308,1.2234432207095225e-308,1.2219512168000596e-308,1.2204628474920366e-308,1.218978099520486e-308,1.2174969596849095e-308,1.21601941484889e-308,1.2145454519397024e-308,1.2130750579479274e-308,1.2116082199270683e-308,1.2101449249931734e-308,1.208685160324457e-308,1.2072289131609233e-308,1.2057761708039983e-308,1.204326920616159e-308,1.2028811500205655e-308,1.2014388465006987e-308,1.1999999976e-308,1.1985645909215105e-308,1.1971326141275163e-308,1.195704054939195e-308,1.194278901136264e-308,1.1928571405566327e-308,1.1914387610960567e-308,1.1900237507077936e-308,1.188612097402262e-308,1.1872037892467035e-308,1.185798814364847e-308,1.1843971609365726e-308,1.182998817197582e-308,1.1816037714390685e-308,1.1802120120073916e-308,1.178823527303751e-308,1.177438305783864e-308,1.1760563359576477e-308,1.174677606388898e-308,1.17330210569498e-308,1.1719298225465065e-308,1.1705607456670344e-308,1.169194863832751e-308,1.16783216587217e-308,1.1664726406658254e-308,1.165116277145971e-308,1.1637630642962766e-308,1.1624129911515335e-308,1.161066046797356e-308,1.159722220369888e-308,1.1583815010555113e-308,1.1570438780905543e-308,1.155709340761006e-308,1.1543778784022277e-308,1.15304948039867e-308,1.151724136183591e-308,1.1504018352387757e-308,1.1490825670942577e-308,1.147766321328043e-308,1.1464530875658355e-308,1.145142855480764e-308,1.143835614793113e-308,1.142531355270052e-308,1.14123006672537e-308,1.1399317390192083e-308,1.1386363620577996e-308,1.137343925793205e-308,1.136054420223055e-308,1.1347678353902903e-308,1.1334841613829056e-308,1.132203388333697e-308,1.130925506420007e-308,1.129650505863475e-308,1.1283783769297847e-308,1.1271091099284216e-308,1.125842695212423e-308,1.124579123178134e-308,1.1233183842649663e-308,1.122060468955156e-308,1.120805367773524e-308,1.1195530712872384e-308,1.1183035701055785e-308,1.117056854879699e-308,1.1158129163023993e-308,1.1145717451078875e-308,1.113333332071556e-308,1.1120976680097463e-308,1.1108647437795293e-308,1.1096345502784735e-308,1.108407078444426e-308,1.1071823192552853e-308,1.105960263728784e-308,1.1047409029222673e-308,1.103524227932475e-308,1.102310229895326e-308,1.1010988999857023e-308,1.0998902294172336e-308,1.098684209442088e-308,1.097480831350758e-308,1.0962800864718526e-308,1.0950819661718893e-308,1.093886461855085e-308,1.092693564963152e-308,1.091503266975095e-308,1.0903155594070055e-308,1.089130433811862e-308,1.087947881779329e-308,1.0867678949355593e-308,1.085590464942994e-308,1.0844155835001687e-308,1.083243242341516e-308,1.082073433237175e-308,1.080906147992794e-308,1.079741378449344e-308,1.0785791164829246e-308,1.0774193540045787e-308,1.076262082960101e-308,1.075107295329855e-308,1.073954983128586e-308,1.0728051384052385e-308,1.071657753242769e-308,1.0705128197579715e-308,1.0693703301012906e-308,1.0682302764566444e-308,1.0670926510412475e-308,1.065957446105432e-308,1.0648246539324727e-308,1.0636942668384114e-308,1.062566277171883e-308,1.0614406773139453e-308,1.060317459677904e-308,1.0591966167091437e-308,1.0580781408849597e-308,1.0569620247143887e-308,1.0558482607380404e-308,1.054736841527934e-308,1.053627759687329e-308,1.052521007850567e-308,1.051416578682902e-308,1.050314464880345e-308,1.0492146591694965e-308,1.0481171543073914e-308,1.047021943081338e-308,1.045929018308759e-308,1.0448383728370384e-308,1.0437499995433595e-308,1.0426638913345555e-308,1.041580041146952e-308,1.040498441946216e-308,1.0394190867272e-308,1.0383419685137966e-308,1.0372670803587824e-308,1.0361944153436733e-308,1.035123966578572e-308,1.0340557272020247e-308,1.0329896903808694e-308,1.0319258493100955e-308,1.030864197212696e-308,1.0298047273395236e-308,1.028747432969149e-308,1.027692307407716e-308,1.0266393439888054e-308,1.0255885360732884e-308,1.024539877049193e-308,1.0234933603315593e-308,1.022448979362307e-308,1.0214067276100966e-308,1.0203665985701904e-308,1.019328585764321e-308,1.018292682740556e-308,1.0172588830731634e-308,1.0162271803624785e-308,1.0151975682347726e-308,1.014170040342122e-308,1.0131445903622763e-308,1.0121212119985305e-308,1.011099898979595e-308,1.010080645059468e-308,1.0090634440173054e-308,1.0080482896573e-308,1.0070351758085504e-308,1.006024096324938e-308,1.005015045085004e-308,1.0040080159918234e-308,1.0030030029728826e-308,1.00199999997996e-308,1.000999000989001e-308,1.0e-308],"x":[1.0e300,9.98013982035928e304,1.996017964071856e305,2.9940219461077846e305,3.992025928143713e305,4.99002991017964e305,5.988033892215569e305,6.986037874251497e305,7.984041856287425e305,8.982045838323353e305,9.98004982035928e305,1.097805380239521e306,1.1976057784431138e306,1.2974061766467066e306,1.3972065748502995e306,1.4970069730538922e306,1.5968073712574852e306,1.696607769461078e306,1.7964081676646707e306,1.8962085658682634e306,1.9960089640718562e306,2.095809362275449e306,2.195609760479042e306,2.2954101586826347e306,2.3952105568862274e306,2.4950109550898204e306,2.5948113532934132e306,2.694611751497006e306,2.794412149700599e306,2.894212547904192e306,2.9940129461077844e306,3.0938133443113774e306,3.19361374251497e306,3.293414140718563e306,3.3932145389221553e306,3.493014937125749e306,3.5928153353293414e306,3.6926157335329344e306,3.792416131736527e306,3.89221652994012e306,3.9920169281437123e306,4.091817326347306e306,4.1916177245508984e306,4.291418122754491e306,4.391218520958084e306,4.491018919161676e306,4.5908193173652693e306,4.6906197155688624e306,4.7904201137724554e306,4.890220511976048e306,4.990020910179641e306,5.089821308383233e306,5.1896217065868263e306,5.2894221047904194e306,5.3892225029940124e306,5.489022901197605e306,5.588823299401198e306,5.688623697604791e306,5.788424095808384e306,5.888224494011976e306,5.988024892215569e306,6.08782529041916e306,6.187625688622755e306,6.287426086826348e306,6.38722648502994e306,6.487026883233533e306,6.586827281437126e306,6.686627679640719e306,6.786428077844312e306,6.886228476047904e306,6.986028874251498e306,7.08582927245509e306,7.185629670658683e306,7.285430068862275e306,7.385230467065869e306,7.485030865269462e306,7.584831263473054e306,7.684631661676647e306,7.784432059880239e306,7.884232458083833e306,7.984032856287426e306,8.083833254491018e306,8.183633652694611e306,8.283434050898204e306,8.383234449101797e306,8.483034847305389e306,8.582835245508982e306,8.682635643712576e306,8.782436041916168e306,8.882236440119761e306,8.982036838323353e306,9.081837236526947e306,9.18163763473054e306,9.28143803293413e306,9.381238431137725e306,9.481038829341318e306,9.580839227544911e306,9.680639625748501e306,9.780440023952096e306,9.88024042215569e306,9.980040820359282e306,1.0079841218562874e307,1.0179641616766467e307,1.0279442014970061e307,1.0379242413173654e307,1.0479042811377244e307,1.0578843209580839e307,1.0678643607784432e307,1.0778444005988024e307,1.0878244404191615e307,1.097804480239521e307,1.1077845200598804e307,1.1177645598802395e307,1.1277445997005988e307,1.1377246395209582e307,1.1477046793413176e307,1.1576847191616768e307,1.167664758982036e307,1.1776447988023952e307,1.1876248386227546e307,1.1976048784431138e307,1.207584918263473e307,1.2175649580838324e307,1.2275449979041918e307,1.237525037724551e307,1.24750507754491e307,1.2574851173652696e307,1.2674651571856288e307,1.277445197005988e307,1.2874252368263474e307,1.2974052766467066e307,1.307385316467066e307,1.3173653562874252e307,1.3273453961077843e307,1.3373254359281438e307,1.347305475748503e307,1.3572855155688624e307,1.3672655553892216e307,1.3772455952095807e307,1.3872256350299404e307,1.3972056748502993e307,1.4071857146706585e307,1.417165754491018e307,1.4271457943113774e307,1.4371258341317366e307,1.4471058739520957e307,1.4570859137724552e307,1.4670659535928146e307,1.4770459934131735e307,1.4870260332335327e307,1.4970060730538924e307,1.5069861128742516e307,1.5169661526946107e307,1.5269461925149702e307,1.5369262323353294e307,1.5469062721556885e307,1.5568863119760477e307,1.5668663517964071e307,1.5768463916167666e307,1.5868264314371258e307,1.5968064712574852e307,1.6067865110778444e307,1.6167665508982035e307,1.626746590718563e307,1.6367266305389221e307,1.6467066703592813e307,1.6566867101796408e307,1.6666667500000002e307,1.6766467898203594e307,1.6866268296407185e307,1.696606869461078e307,1.7065869092814372e307,1.7165669491017963e307,1.7265469889221555e307,1.7365270287425152e307,1.7465070685628744e307,1.7564871083832335e307,1.766467148203593e307,1.776447188023952e307,1.7864272278443113e307,1.7964072676646705e307,1.80638730748503e307,1.8163673473053894e307,1.8263473871257486e307,1.836327426946108e307,1.8463074667664672e307,1.856287506586826e307,1.8662675464071858e307,1.876247586227545e307,1.8862276260479041e307,1.8962076658682636e307,1.906187705688623e307,1.9161677455089822e307,1.926147785329341e307,1.9361278251497005e307,1.94610786497006e307,1.9560879047904191e307,1.9660679446107783e307,1.976047984431138e307,1.9860280242514972e307,1.9960080640718563e307,2.0059881038922155e307,2.0159681437125747e307,2.0259481835329341e307,2.0359282233532933e307,2.0459082631736527e307,2.0558883029940122e307,2.0658683428143714e307,2.0758483826347305e307,2.0858284224550897e307,2.095808462275449e307,2.1057885020958086e307,2.1157685419161678e307,2.125748581736527e307,2.1357286215568864e307,2.1457086613772458e307,2.1556887011976047e307,2.165668741017964e307,2.1756487808383233e307,2.1856288206586828e307,2.195608860479042e307,2.205588900299401e307,2.2155689401197608e307,2.2255489799401197e307,2.235529019760479e307,2.2455090595808383e307,2.2554890994011975e307,2.265469139221557e307,2.2754491790419164e307,2.2854292188622753e307,2.295409258682635e307,2.305389298502994e307,2.315369338323353e307,2.325349378143713e307,2.335329417964072e307,2.345309457784431e307,2.355289497604791e307,2.3652695374251497e307,2.375249577245509e307,2.385229617065868e307,2.395209656886228e307,2.405189696706587e307,2.415169736526946e307,2.4251497763473053e307,2.435129816167664e307,2.445109855988024e307,2.455089895808383e307,2.4650699356287425e307,2.475049975449102e307,2.4850300152694614e307,2.4950100550898203e307,2.5049900949101797e307,2.514970134730539e307,2.524950174550898e307,2.534930214371258e307,2.5449102541916165e307,2.5548902940119764e307,2.5648703338323353e307,2.574850373652694e307,2.584830413473054e307,2.5948104532934126e307,2.6047904931137725e307,2.614770532934132e307,2.624750572754491e307,2.6347306125748503e307,2.64471065239521e307,2.6546906922155687e307,2.664670732035928e307,2.674650771856288e307,2.6846308116766465e307,2.6946108514970064e307,2.7045908913173653e307,2.7145709311377243e307,2.724550970958084e307,2.7345310107784426e307,2.7445110505988025e307,2.7544910904191615e307,2.764471130239521e307,2.7744511700598803e307,2.78443120988024e307,2.7944112497005987e307,2.804391289520958e307,2.8143713293413175e307,2.8243513691616765e307,2.8343314089820364e307,2.8443114488023953e307,2.854291488622755e307,2.8642715284431137e307,2.8742515682634726e307,2.8842316080838326e307,2.8942116479041915e307,2.904191687724551e307,2.91417172754491e307,2.92415176736527e307,2.9341318071856287e307,2.9441118470059876e307,2.9540918868263476e307,2.9640719266467065e307,2.974051966467066e307,2.9840320062874253e307,2.994012046107785e307,3.0039920859281437e307,3.013972125748503e307,3.023952165568862e307,3.0339322053892215e307,3.0439122452095814e307,3.05389228502994e307,3.0638723248503e307,3.073852364670658e307,3.083832404491018e307,3.0938124443113776e307,3.103792484131736e307,3.113772523952096e307,3.1237525637724554e307,3.1337326035928143e307,3.1437126434131737e307,3.1536926832335336e307,3.163672723053892e307,3.1736527628742515e307,3.183632802694611e307,3.19361284251497e307,3.20359288233533e307,3.213572922155688e307,3.223552961976048e307,3.233533001796407e307,3.243513041616766e307,3.253493081437126e307,3.263473121257485e307,3.2734531610778443e307,3.2834332008982037e307,3.293413240718563e307,3.303393280538922e307,3.3133733203592815e307,3.323353360179641e307,3.3333334e307,3.3433134398203593e307,3.3532934796407187e307,3.363273519461078e307,3.373253559281437e307,3.3832335991017965e307,3.3932136389221554e307,3.403193678742515e307,3.4131737185628743e307,3.423153758383233e307,3.433133798203593e307,3.443113838023952e307,3.4530938778443115e307,3.463073917664671e307,3.47305395748503e307,3.4830339973053893e307,3.4930140371257487e307,3.5029940769461077e307,3.512974116766467e307,3.522954156586827e307,3.5329341964071855e307,3.542914236227545e307,3.552894276047904e307,3.562874315868263e307,3.572854355688623e307,3.5828343955089816e307,3.5928144353293415e307,3.602794475149701e307,3.61277451497006e307,3.6227545547904193e307,3.6327345946107787e307,3.6427146344311377e307,3.652694674251497e307,3.6626747140718565e307,3.6726547538922155e307,3.6826347937125754e307,3.692614833532934e307,3.7025948733532933e307,3.7125749131736527e307,3.7225549529940116e307,3.7325349928143715e307,3.7425150326347305e307,3.75249507245509e307,3.7624751122754493e307,3.7724551520958083e307,3.7824351919161677e307,3.792415231736527e307,3.8023952715568865e307,3.8123753113772455e307,3.822355351197605e307,3.8323353910179643e307,3.8423154308383233e307,3.8522954706586827e307,3.8622755104790416e307,3.872255550299401e307,3.8822355901197605e307,3.89221562994012e307,3.902195669760479e307,3.912175709580839e307,3.9221557494011977e307,3.9321357892215566e307,3.9421158290419166e307,3.9520958688622755e307,3.962075908682635e307,3.9720559485029943e307,3.9820359883233533e307,3.9920160281437127e307,4.001996067964072e307,4.011976107784431e307,4.0219561476047905e307,4.0319361874251494e307,4.041916227245509e307,4.051896267065869e307,4.061876306886227e307,4.0718563467065866e307,4.0818363865269466e307,4.091816426347305e307,4.101796466167665e307,4.1117765059880244e307,4.1217565458083833e307,4.1317365856287427e307,4.1417166254491016e307,4.151696665269461e307,4.1616767050898205e307,4.1716567449101794e307,4.181636784730539e307,4.1916168245508983e307,4.201596864371257e307,4.211576904191617e307,4.221556944011976e307,4.231536983832335e307,4.241517023652695e307,4.251497063473054e307,4.2614771032934133e307,4.2714571431137727e307,4.281437182934132e307,4.291417222754491e307,4.30139726257485e307,4.31137730239521e307,4.321357342215569e307,4.3313373820359283e307,4.341317421856287e307,4.3512974616766467e307,4.361277501497006e307,4.371257541317365e307,4.3812375811377244e307,4.391217620958084e307,4.4011976607784433e307,4.411177700598802e307,4.421157740419162e307,4.431137780239521e307,4.44111782005988e307,4.45109785988024e307,4.4610778997005984e307,4.4710579395209583e307,4.4810379793413177e307,4.4910180191616767e307,4.500998058982036e307,4.510978098802395e307,4.520958138622754e307,4.530938178443114e307,4.540918218263473e307,4.550898258083833e307,4.560878297904192e307,4.570858337724551e307,4.58083837754491e307,4.590818417365269e307,4.600798457185629e307,4.610778497005987e307,4.620758536826348e307,4.630738576646706e307,4.640718616467066e307,4.650698656287426e307,4.660678696107784e307,4.670658735928143e307,4.680638775748503e307,4.690618815568863e307,4.700598855389221e307,4.710578895209582e307,4.72055893502994e307,4.730538974850299e307,4.740519014670659e307,4.750499054491018e307,4.760479094311377e307,4.770459134131736e307,4.780439173952097e307,4.790419213772455e307,4.800399253592814e307,4.810379293413174e307,4.820359333233532e307,4.830339373053893e307,4.840319412874252e307,4.850299452694611e307,4.86027949251497e307,4.870259532335329e307,4.880239572155689e307,4.890219611976047e307,4.900199651796407e307,4.910179691616766e307,4.920159731437126e307,4.930139771257485e307,4.940119811077844e307,4.950099850898203e307,4.960079890718563e307,4.970059930538923e307,4.980039970359281e307,4.990020010179641e307,5.00000005e307,5.009980089820359e307,5.019960129640719e307,5.029940169461078e307,5.039920209281437e307,5.049900249101796e307,5.059880288922156e307,5.069860328742515e307,5.079840368562874e307,5.089820408383233e307,5.099800448203593e307,5.109780488023953e307,5.119760527844311e307,5.129740567664671e307,5.13972060748503e307,5.149700647305389e307,5.159680687125749e307,5.169660726946108e307,5.179640766766467e307,5.189620806586826e307,5.199600846407187e307,5.209580886227545e307,5.2195609260479035e307,5.229540965868263e307,5.239521005688623e307,5.249501045508982e307,5.259481085329341e307,5.269461125149701e307,5.279441164970059e307,5.28942120479042e307,5.299401244610779e307,5.309381284431137e307,5.319361324251497e307,5.329341364071857e307,5.339321403892216e307,5.349301443712575e307,5.359281483532935e307,5.369261523353293e307,5.379241563173652e307,5.389221602994013e307,5.399201642814371e307,5.40918168263473e307,5.41916172245509e307,5.42914176227545e307,5.439121802095808e307,5.449101841916168e307,5.459081881736527e307,5.469061921556886e307,5.479041961377247e307,5.489022001197605e307,5.499002041017964e307,5.508982080838323e307,5.518962120658683e307,5.528942160479042e307,5.5389222002994e307,5.548902240119761e307,5.55888227994012e307,5.568862319760479e307,5.578842359580839e307,5.588822399401197e307,5.598802439221556e307,5.608782479041917e307,5.618762518862276e307,5.628742558682634e307,5.638722598502995e307,5.648702638323353e307,5.658682678143712e307,5.668662717964073e307,5.678642757784431e307,5.68862279760479e307,5.69860283742515e307,5.70858287724551e307,5.718562917065868e307,5.728542956886227e307,5.738522996706587e307,5.748503036526946e307,5.758483076347306e307,5.768463116167665e307,5.778443155988024e307,5.788423195808384e307,5.798403235628743e307,5.808383275449102e307,5.818363315269461e307,5.82834335508982e307,5.83832339491018e307,5.84830343473054e307,5.858283474550898e307,5.868263514371257e307,5.878243554191616e307,5.888223594011976e307,5.898203633832336e307,5.908183673652694e307,5.918163713473054e307,5.928143753293414e307,5.938123793113772e307,5.948103832934132e307,5.958083872754491e307,5.96806391257485e307,5.97804395239521e307,5.98802399221557e307,5.998004032035928e307,6.007984071856287e307,6.017964111676646e307,6.027944151497006e307,6.037924191317366e307,6.047904231137724e307,6.057884270958084e307,6.067864310778444e307,6.077844350598802e307,6.087824390419162e307,6.097804430239521e307,6.10778447005988e307,6.11776450988024e307,6.1277445497006e307,6.137724589520958e307,6.147704629341316e307,6.157684669161678e307,6.167664708982036e307,6.177644748802395e307,6.187624788622754e307,6.197604828443114e307,6.207584868263473e307,6.217564908083832e307,6.227544947904192e307,6.23752498772455e307,6.24750502754491e307,6.25748506736527e307,6.267465107185629e307,6.277445147005988e307,6.287425186826347e307,6.297405226646707e307,6.307385266467066e307,6.317365306287426e307,6.327345346107784e307,6.337325385928143e307,6.347305425748504e307,6.357285465568862e307,6.367265505389221e307,6.377245545209581e307,6.387225585029941e307,6.397205624850299e307,6.40718566467066e307,6.417165704491018e307,6.427145744311376e307,6.437125784131738e307,6.447105823952096e307,6.457085863772455e307,6.467065903592814e307,6.477045943413174e307,6.487025983233533e307,6.497006023053891e307,6.506986062874252e307,6.51696610269461e307,6.52694614251497e307,6.53692618233533e307,6.546906222155689e307,6.556886261976047e307,6.566866301796407e307,6.576846341616767e307,6.586826381437125e307,6.596806421257486e307,6.606786461077844e307,6.616766500898204e307,6.626746540718564e307,6.636726580538922e307,6.646706620359281e307,6.65668666017964e307,6.666666700000001e307,6.676646739820359e307,6.686626779640719e307,6.696606819461078e307,6.706586859281436e307,6.716566899101797e307,6.726546938922156e307,6.736526978742515e307,6.746507018562874e307,6.756487058383235e307,6.766467098203593e307,6.776447138023952e307,6.786427177844311e307,6.79640721766467e307,6.806387257485031e307,6.816367297305389e307,6.826347337125749e307,6.836327376946107e307,6.846307416766466e307,6.856287456586827e307,6.866267496407185e307,6.876247536227545e307,6.886227576047904e307,6.896207615868264e307,6.906187655688623e307,6.916167695508982e307,6.926147735329341e307,6.9361277751497e307,6.946107814970061e307,6.956087854790419e307,6.966067894610779e307,6.976047934431137e307,6.986027974251497e307,6.996008014071857e307,7.005988053892215e307,7.015968093712575e307,7.025948133532934e307,7.035928173353294e307,7.045908213173653e307,7.055888252994012e307,7.065868292814371e307,7.07584833263473e307,7.085828372455091e307,7.095808412275449e307,7.105788452095808e307,7.115768491916168e307,7.125748531736527e307,7.135728571556886e307,7.145708611377246e307,7.155688651197605e307,7.165668691017963e307,7.175648730838324e307,7.185628770658683e307,7.195608810479041e307,7.205588850299401e307,7.215568890119761e307,7.22554892994012e307,7.235528969760479e307,7.245509009580839e307,7.255489049401197e307,7.265469089221557e307,7.275449129041917e307,7.285429168862275e307,7.295409208682634e307,7.305389248502994e307,7.315369288323354e307,7.325349328143712e307,7.335329367964072e307,7.345309407784431e307,7.35528944760479e307,7.365269487425151e307,7.375249527245509e307,7.385229567065868e307,7.395209606886228e307,7.405189646706588e307,7.415169686526946e307,7.425149726347305e307,7.435129766167665e307,7.445109805988024e307,7.455089845808384e307,7.465069885628743e307,7.475049925449102e307,7.48502996526946e307,7.495010005089821e307,7.50499004491018e307,7.514970084730538e307,7.524950124550899e307,7.534930164371257e307,7.544910204191617e307,7.554890244011977e307,7.564870283832335e307,7.574850323652694e307,7.584830363473055e307,7.594810403293414e307,7.604790443113772e307,7.614770482934132e307,7.624750522754491e307,7.63473056257485e307,7.64471060239521e307,7.654690642215569e307,7.664670682035928e307,7.674650721856287e307,7.684630761676648e307,7.694610801497006e307,7.704590841317365e307,7.714570881137725e307,7.724550920958084e307,7.734530960778444e307,7.744511000598802e307,7.754491040419162e307,7.764471080239521e307,7.77445112005988e307,7.78443115988024e307,7.794411199700598e307,7.804391239520958e307,7.814371279341318e307,7.824351319161677e307,7.834331358982036e307,7.844311398802395e307,7.854291438622754e307,7.864271478443114e307,7.874251518263474e307,7.884231558083832e307,7.894211597904192e307,7.904191637724551e307,7.91417167754491e307,7.92415171736527e307,7.934131757185628e307,7.944111797005988e307,7.954091836826348e307,7.964071876646707e307,7.974051916467066e307,7.984031956287425e307,7.994011996107784e307,8.003992035928144e307,8.013972075748504e307,8.023952115568862e307,8.033932155389222e307,8.043912195209582e307,8.05389223502994e307,8.063872274850299e307,8.073852314670659e307,8.083832354491018e307,8.093812394311377e307,8.103792434131738e307,8.113772473952096e307,8.123752513772454e307,8.133732553592814e307,8.143712593413174e307,8.153692633233533e307,8.163672673053892e307,8.173652712874252e307,8.183632752694611e307,8.19361279251497e307,8.20359283233533e307,8.213572872155688e307,8.223552911976048e307,8.233532951796408e307,8.243512991616767e307,8.253493031437125e307,8.263473071257485e307,8.273453111077844e307,8.283433150898203e307,8.293413190718564e307,8.303393230538922e307,8.313373270359281e307,8.323353310179642e307,8.33333335e307,8.343313389820359e307,8.353293429640719e307,8.363273469461078e307,8.373253509281437e307,8.383233549101797e307,8.393213588922156e307,8.403193628742514e307,8.413173668562875e307,8.423153708383234e307,8.433133748203593e307,8.443113788023951e307,8.453093827844312e307,8.463073867664671e307,8.473053907485029e307,8.48303394730539e307,8.493013987125748e307,8.502994026946107e307,8.512974066766468e307,8.522954106586827e307,8.532934146407185e307,8.542914186227545e307,8.552894226047905e307,8.562874265868263e307,8.572854305688623e307,8.582834345508982e307,8.592814385329341e307,8.602794425149701e307,8.61277446497006e307,8.622754504790419e307,8.632734544610778e307,8.642714584431139e307,8.652694624251497e307,8.662674664071857e307,8.672654703892216e307,8.682634743712574e307,8.692614783532935e307,8.702594823353293e307,8.712574863173653e307,8.722554902994012e307,8.732534942814371e307,8.742514982634731e307,8.75249502245509e307,8.762475062275449e307,8.772455102095808e307,8.782435141916168e307,8.792415181736527e307,8.802395221556887e307,8.812375261377245e307,8.822355301197604e307,8.832335341017965e307,8.842315380838323e307,8.852295420658683e307,8.862275460479042e307,8.872255500299402e307,8.882235540119761e307,8.892215579940119e307,8.902195619760479e307,8.912175659580838e307,8.922155699401198e307,8.932135739221557e307,8.942115779041917e307,8.952095818862275e307,8.962075858682634e307,8.972055898502995e307,8.982035938323353e307,8.992015978143713e307,9.001996017964071e307,9.011976057784432e307,9.02195609760479e307,9.03193613742515e307,9.041916177245509e307,9.051896217065867e307,9.061876256886228e307,9.071856296706586e307,9.081836336526947e307,9.091816376347305e307,9.101796416167663e307,9.111776455988024e307,9.121756495808384e307,9.131736535628743e307,9.141716575449101e307,9.151696615269462e307,9.16167665508982e307,9.17165669491018e307,9.181636734730539e307,9.191616774550897e307,9.201596814371258e307,9.211576854191616e307,9.221556894011977e307,9.231536933832337e307,9.241516973652695e307,9.251497013473054e307,9.261477053293412e307,9.271457093113773e307,9.281437132934131e307,9.29141717275449e307,9.30139721257485e307,9.31137725239521e307,9.321357292215569e307,9.33133733203593e307,9.341317371856288e307,9.351297411676646e307,9.361277451497007e307,9.371257491317365e307,9.381237531137723e307,9.391217570958084e307,9.401197610778442e307,9.411177650598803e307,9.421157690419163e307,9.431137730239522e307,9.44111777005988e307,9.45109780988024e307,9.461077849700599e307,9.471057889520957e307,9.481037929341316e307,9.491017969161676e307,9.500998008982037e307,9.510978048802397e307,9.520958088622756e307,9.530938128443114e307,9.540918168263472e307,9.550898208083833e307,9.560878247904191e307,9.57085828772455e307,9.58083832754491e307,9.59081836736527e307,9.600798407185629e307,9.610778447005987e307,9.620758486826348e307,9.630738526646706e307,9.640718566467067e307,9.650698606287425e307,9.660678646107784e307,9.670658685928142e307,9.680638725748504e307,9.690618765568863e307,9.700598805389223e307,9.710578845209582e307,9.72055888502994e307,9.730538924850299e307,9.740518964670657e307,9.750499004491017e307,9.760479044311378e307,9.770459084131738e307,9.780439123952097e307,9.790419163772455e307,9.800399203592814e307,9.810379243413174e307,9.820359283233534e307,9.830339323053893e307,9.840319362874251e307,9.85029940269461e307,9.860279442514968e307,9.87025948233533e307,9.88023952215569e307,9.89021956197605e307,9.900199601796408e307,9.910179641616766e307,9.920159681437125e307,9.930139721257483e307,9.940119761077844e307,9.950099800898204e307,9.960079840718564e307,9.970059880538923e307,9.980039920359281e307,9.99001996017964e307,1.0e308]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_negative.json new file mode 100644 index 000000000000..94b04ac20ee7 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_negative.json @@ -0,0 +1 @@ +{"expected":[-0.34657359027997264,-0.3404625388971485,-0.33457109364634363,-0.32888723800141867,-0.32339984141210615,-0.3180985771608443,-0.3129738493750175,-0.3080167280062865,-0.3032188907641098,-0.29857257113706154,-0.2940705117583707,-0.28970592247547644,-0.285472442570696,-0.28136410665409234,-0.27737531381254793,-0.27350079965272023,-0.2697356109214776,-0.26607508242682765,-0.2625148160162577,-0.2590506613986834,-0.2556786986215131,-0.2523952220363065,-0.2491967256055976,-0.2460798894200992,-0.2430415673100419,-0.24007877544713213,-0.23718868184477704,-0.23436859667404164,-0.2316159633214523,-0.22892835012238874,-0.2263034427105594,-0.2237390369300278,-0.22123303226156635,-0.21878342571982545,-0.2163883061820061,-0.21404584911246846,-0.2117543116510497,-0.209512028035861,-0.20731740533400853,-0.2051689194560914,-0.2030651114324875,-0.20100458393138315,-0.19898599800025205,-0.1970080700140687,-0.19506956881496879,-0.1931693130293561,-0.1913061685496268,-0.18947904616873648,-0.1876868993568,-0.1859287221697821,-0.18420354728113442,-0.1825104441279542,-0.18084851716390002,-0.17921690421169933,-0.17761477490863203,-0.17604132923887542,-0.17449579614705407,-0.17297743222775977,-0.17148552048618954,-0.17001936916540536,-0.16857831063604226,-0.16716170034459002,-0.16576891581664793,-0.1643993557118045,-0.1630524389270272,-0.16172760374566036,-0.1604243070293291,-0.15914202345022826,-0.15788024476144552,-0.1566384791031227,-0.15541625034240525,-0.15421309744526276,-0.15302857387838759,-0.15186224703949394,-0.15071369771444632,-0.14958251955974575,-0.14846831860899332,-0.14737071280203803,-0.14628933153559295,-0.145223815234181,-0.14417381494033768,-0.14313899192306542,-0.14211901730359117,-0.1411135716975377,-0.14012234487266978,-0.1391450354214251,-0.13818135044748728,-0.13723100526569784,-0.13629372311464796,-0.13536923488132424,-0.13445727883722083,-0.13355760038536138,-0.13266995181770525,-0.13179409208244222,-0.13092978656070547,-0.13007680685225964,-0.12923493056974283,-0.1284039411410666,-0.1275836276195951,-0.12677378450174875,-0.12597421155169242,-0.1251847136327896,-0.12440510054551648,-0.12363518687154913,-0.12287479182374932,-0.12212373910178903,-0.12138185675316715,-0.12064897703938371,-0.11992493630704866,-0.1192095748637136,-0.11850273685822443,-0.11780427016540394,-0.11711402627488128,-0.11643186018389479,-0.11575763029390307,-0.11509119831084653,-0.11443242914890948,-0.11378119083763925,-0.11313735443228681,-0.11250079392723795,-0.11187138617241163,-0.11124901079250638,-0.11063355010898254,-0.11002488906467202,-0.10942291515091222,-0.10882751833710647,-0.10823859100261622,-0.10765602787089558,-0.10707972594578172,-0.10650958444985963,-0.105945504764822,-0.1053873903737495,-0.10483514680523891,-0.10428868157931083,-0.10374790415503064,-0.10321272587977946,-0.10268305994011473,-0.10215882131416243,-0.10163992672548543,-0.10112629459837419,-0.1006178450145096,-0.10011449967094793,-0.09961618183938206,-0.0991228163266325,-0.09863432943632637,-0.09815064893172172,-0.09767170399963773,-0.09719742521545262,-0.09672774450913209,-0.09626259513225348,-0.09580191162599098,-0.09534562979003001,-0.09489368665237892,-0.09444602044004786,-0.09400257055056606,-0.09356327752430939,-0.09312808301761154,-0.09269692977663274,-0.09226976161196136,-0.09184652337392453,-0.09142716092858447,-0.0910116211343985,-0.09059985181952153,-0.09019180175973017,-0.08978742065694863,-0.08938665911835764,-0.08898946863606766,-0.08859580156733862,-0.08820561111532939,-0.08781885131036,-0.08743547699167115,-0.08705544378966538,-0.08667870810861529,-0.08630522710982402,-0.08593495869522509,-0.08556786149140737,-0.08520389483405284,-0.08484301875277463,-0.08448519395634334,-0.08413038181828997,-0.08377854436287441,-0.0834296442514087,-0.08308364476892435,-0.08274050981117419,-0.08240020387195818,-0.08206269203076469,-0.0817279399407173,-0.08139591381681881,-0.0810665804244838,-0.08073990706835155,-0.08041586158137103,-0.08009441231415076,-0.0797755281245658,-0.07945917836761426,-0.07914533288551726,-0.07883396199805462,-0.0785250364931304,-0.07821852761756136,-0.07791440706808284,-0.07761264698256543,-0.0773132199314374,-0.07701609890930634,-0.0767212573267757,-0.07642866900245006,-0.07613830815512451,-0.0758501493961532,-0.075564167721992,-0.07528033850691103,-0.07499863749587221,-0.07471904079756761,-0.07444152487761452,-0.07416606655190286,-0.07389264298009116,-0.07362123165924707,-0.07335181041762912,-0.07308435740860512,-0.072818851104705,-0.07255527029180339,-0.07229359406342949,-0.07203380181520064,-0.07177587323937647,-0.07151978831953061,-0.0712655273253372,-0.07101307080746883,-0.0707623995926038,-0.07051349477853941,-0.07026633772940889,-0.07002091007099948,-0.06977719368616903,-0.06953517071035871,-0.06929482352719973,-0.06905613476421127,-0.06881908728858802,-0.06858366420307464,-0.06834984884192546,-0.06811762476694706,-0.06788697576362183,-0.06765788583731083,-0.06743033920953362,-0.06720432031432362,-0.06697981379465702,-0.0667568044989536,-0.06653527747764763,-0.06631521797982756,-0.06609661144994233,-0.06587944352457338,-0.06566370002927034,-0.06544936697544936,-0.06523643055735204,-0.06502487714906445,-0.06481469330159394,-0.0646058657400031,-0.06439838136059926,-0.0641922272281783,-0.0639873905733217,-0.06378385878974537,-0.06358161943169947,-0.06338066021141767,-0.06318096899661509,-0.06298253380803359,-0.0627853428170336,-0.06258938434323127,-0.062394646852179984,-0.06220111895309541,-0.062008789396622944,-0.06181764707264666,-0.06162768100813914,-0.06143888036505081,-0.06125123443823829,-0.061064732653430966,-0.06087936456523462,-0.06069511985517166,-0.06051198832975703,-0.060329959918609025,-0.06014902467259428,-0.05996917276200644,-0.05979039447477725,-0.05961268021472009,-0.059436020499804725,-0.059260405960462836,-0.05908582733792381,-0.05891227548257977,-0.058739741352379846,-0.058568216011252484,-0.05839769062755546,-0.058228156472553305,-0.05805960491892103,-0.057892027439274046,-0.05772541560472367,-0.05755976108345749,-0.057395055639344356,-0.05723129113056335,-0.05706845950825623,-0.056906552815203106,-0.05674556318452049,-0.05658548283838161,-0.056426304086758555,-0.05626801932618552,-0.05611062103854294,-0.0559541017898622,-0.05579845422915034,-0.05564367108723433,-0.055489745175624786,-0.05533666938539848,-0.055184436686099396,-0.05503304012465806,-0.05488247282432856,-0.054732727983643155,-0.054583798875384074,-0.05443567884557193,-0.05428836131247092,-0.054141839765610045,-0.053996107764820174,-0.053851158939286874,-0.053706986986618376,-0.053563585671928544,-0.05342094882693471,-0.053279070349069764,-0.05313794420060859,-0.0529975644078083,-0.0528579250600621,-0.05271902030906679,-0.05258084436800308,-0.05244339151072908,-0.05230665607098634,-0.052170632441618396,-0.052035315073801464,-0.051900698476287234,-0.05176677721465731,-0.05163354591058935,-0.05150099924113444,-0.05136913193800565,-0.05123793878687766,-0.05110741462669694,-0.05097755434900263,-0.05084835289725772,-0.05071980526619054,-0.05059190650114603,-0.05046465169744713,-0.050338035999765524,-0.05021205460150216,-0.050086702744176856,-0.049961975716827194,-0.049837868855416384,-0.04971437754224996,-0.049591497205401104,-0.04946922331814467,-0.049347551398399414,-0.04922647700817853,-0.04910599575304837,-0.048986103281594987,-0.048866795284898616,-0.0487480674960158,-0.04862991568946905,-0.048512335680744,-0.04839532332579385,-0.0482788745205509,-0.04816298520044534,-0.048047651339930775,-0.04793286895201668,-0.047818634087807614,-0.04770494283604889,-0.04759179132267887,-0.04747917571038757,-0.04736709219818156,-0.04725553702095505,-0.047144506449067,-0.04703399678792425,-0.04692400437757045,-0.046814525592280935,-0.046705556840163004,-0.04659709456276206,-0.04648913523467305,-0.04638167536315749,-0.046274711487765595,-0.04616824017996383,-0.04606225804276751,-0.04595676171037852,-0.04585174784782798,-0.04574721315062382,-0.045643154344403206,-0.04553956818458969,-0.04543645145605506,-0.04533380097278575,-0.045231613577553814,-0.04512988614159236,-0.04502861556427532,-0.04492779877280159,-0.044827432721883394,-0.04472751439343879,-0.044628040796288425,-0.04452900896585615,-0.04443041596387377,-0.044332258878089705,-0.04423453482198143,-0.044137240934471834,-0.044040374379649236,-0.043943932346491105,-0.04384791204859154,-0.04375231072389211,-0.043657125634416365,-0.04356235406600783,-0.04346799332807131,-0.04337404075331765,-0.04328049369751176,-0.04318734953922395,-0.04309460567958439,-0.04300225954204087,-0.04291030857211955,-0.042818750237188855,-0.04272758202622638,-0.04263680144958878,-0.04254640603878454,-0.04245639334624976,-0.04236676094512666,-0.04227750642904497,-0.04218862741190607,-0.04210012152766981,-0.042011986430144116,-0.04192421979277712,-0.04183681930845199,-0.04174978268928431,-0.04166310766642194,-0.041576791989847435,-0.04149083342818287,-0.04140522976849712,-0.041319978816115585,-0.04123507839443208,-0.041150526344723264,-0.04106632052596525,-0.040982458814652435,-0.040898939104618615,-0.040815759306860294,-0.040732917349362074,-0.04065041117692427,-0.04056823875099255,-0.040486398049489676,-0.04040488706664924,-0.04032370381285154,-0.04024284631446121,-0.04016231261366705,-0.040082100768323595,-0.04000220885179469,-0.03992263495279888,-0.03984337717525668,-0.03976443363813967,-0.03968580247532133,-0.03960748183542972,-0.03952946988170184,-0.039451764791839775,-0.03937436475786849,-0.03929726798599531,-0.03922047269647107,-0.03914397712345285,-0.039067779514868416,-0.03899187813228209,-0.03891627125076236,-0.038840957158750855,-0.03876593415793302,-0.03869120056311012,-0.038616754702072896,-0.03854259491547647,-0.038468719556716935,-0.0383951269918092,-0.038321815599266236,-0.03824878376997981,-0.038176029907102484,-0.03810355242593107,-0.038031349753791244,-0.03795942032992367,-0.037887762605371245,-0.03781637504286778,-0.03774525611672775,-0.03767440431273751,-0.03760381812804754,-0.037533496071066035,-0.03746343666135362,-0.03739363842951923,-0.0373240999171173,-0.037254819676545835,-0.037185796270945905,-0.03711702827410207,-0.03704851427034397,-0.03698025285444896,-0.03691224263154597,-0.036844482217020226,-0.03677697023641911,-0.03670970532535915,-0.03664268612943383,-0.03657591130412261,-0.036509379514700804,-0.036443089436150475,-0.036377039753072375,-0.03631122915959875,-0.036245656359307106,-0.03618032006513496,-0.03611521899929549,-0.03605035189319406,-0.03598571748734567,-0.035921314531293345,-0.035857141783527315,-0.0357931980114051,-0.035729481991072475],"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]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_positive.json new file mode 100644 index 000000000000..5e9452e579ca --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_positive.json @@ -0,0 +1 @@ +{"expected":[0.34657359027997264,0.3404625388971485,0.33457109364634363,0.32888723800141867,0.32339984141210615,0.3180985771608443,0.3129738493750175,0.3080167280062865,0.3032188907641098,0.29857257113706154,0.2940705117583707,0.28970592247547644,0.285472442570696,0.28136410665409234,0.27737531381254793,0.27350079965272023,0.2697356109214776,0.26607508242682765,0.2625148160162577,0.2590506613986834,0.2556786986215131,0.2523952220363065,0.2491967256055976,0.2460798894200992,0.2430415673100419,0.24007877544713213,0.23718868184477704,0.23436859667404164,0.2316159633214523,0.22892835012238874,0.2263034427105594,0.2237390369300278,0.22123303226156635,0.21878342571982545,0.2163883061820061,0.21404584911246846,0.2117543116510497,0.209512028035861,0.20731740533400853,0.2051689194560914,0.2030651114324875,0.20100458393138315,0.19898599800025205,0.1970080700140687,0.19506956881496879,0.1931693130293561,0.1913061685496268,0.18947904616873648,0.1876868993568,0.1859287221697821,0.18420354728113442,0.1825104441279542,0.18084851716390002,0.17921690421169933,0.17761477490863203,0.17604132923887542,0.17449579614705407,0.17297743222775977,0.17148552048618954,0.17001936916540536,0.16857831063604226,0.16716170034459002,0.16576891581664793,0.1643993557118045,0.1630524389270272,0.16172760374566036,0.1604243070293291,0.15914202345022826,0.15788024476144552,0.1566384791031227,0.15541625034240525,0.15421309744526276,0.15302857387838759,0.15186224703949394,0.15071369771444632,0.14958251955974575,0.14846831860899332,0.14737071280203803,0.14628933153559295,0.145223815234181,0.14417381494033768,0.14313899192306542,0.14211901730359117,0.1411135716975377,0.14012234487266978,0.1391450354214251,0.13818135044748728,0.13723100526569784,0.13629372311464796,0.13536923488132424,0.13445727883722083,0.13355760038536138,0.13266995181770525,0.13179409208244222,0.13092978656070547,0.13007680685225964,0.12923493056974283,0.1284039411410666,0.1275836276195951,0.12677378450174875,0.12597421155169242,0.1251847136327896,0.12440510054551648,0.12363518687154913,0.12287479182374932,0.12212373910178903,0.12138185675316715,0.12064897703938371,0.11992493630704866,0.1192095748637136,0.11850273685822443,0.11780427016540394,0.11711402627488128,0.11643186018389479,0.11575763029390307,0.11509119831084653,0.11443242914890948,0.11378119083763925,0.11313735443228681,0.11250079392723795,0.11187138617241163,0.11124901079250638,0.11063355010898254,0.11002488906467202,0.10942291515091222,0.10882751833710647,0.10823859100261622,0.10765602787089558,0.10707972594578172,0.10650958444985963,0.105945504764822,0.1053873903737495,0.10483514680523891,0.10428868157931083,0.10374790415503064,0.10321272587977946,0.10268305994011473,0.10215882131416243,0.10163992672548543,0.10112629459837419,0.1006178450145096,0.10011449967094793,0.09961618183938206,0.0991228163266325,0.09863432943632637,0.09815064893172172,0.09767170399963773,0.09719742521545262,0.09672774450913209,0.09626259513225348,0.09580191162599098,0.09534562979003001,0.09489368665237892,0.09444602044004786,0.09400257055056606,0.09356327752430939,0.09312808301761154,0.09269692977663274,0.09226976161196136,0.09184652337392453,0.09142716092858447,0.0910116211343985,0.09059985181952153,0.09019180175973017,0.08978742065694863,0.08938665911835764,0.08898946863606766,0.08859580156733862,0.08820561111532939,0.08781885131036,0.08743547699167115,0.08705544378966538,0.08667870810861529,0.08630522710982402,0.08593495869522509,0.08556786149140737,0.08520389483405284,0.08484301875277463,0.08448519395634334,0.08413038181828997,0.08377854436287441,0.0834296442514087,0.08308364476892435,0.08274050981117419,0.08240020387195818,0.08206269203076469,0.0817279399407173,0.08139591381681881,0.0810665804244838,0.08073990706835155,0.08041586158137103,0.08009441231415076,0.0797755281245658,0.07945917836761426,0.07914533288551726,0.07883396199805462,0.0785250364931304,0.07821852761756136,0.07791440706808284,0.07761264698256543,0.0773132199314374,0.07701609890930634,0.0767212573267757,0.07642866900245006,0.07613830815512451,0.0758501493961532,0.075564167721992,0.07528033850691103,0.07499863749587221,0.07471904079756761,0.07444152487761452,0.07416606655190286,0.07389264298009116,0.07362123165924707,0.07335181041762912,0.07308435740860512,0.072818851104705,0.07255527029180339,0.07229359406342949,0.07203380181520064,0.07177587323937647,0.07151978831953061,0.0712655273253372,0.07101307080746883,0.0707623995926038,0.07051349477853941,0.07026633772940889,0.07002091007099948,0.06977719368616903,0.06953517071035871,0.06929482352719973,0.06905613476421127,0.06881908728858802,0.06858366420307464,0.06834984884192546,0.06811762476694706,0.06788697576362183,0.06765788583731083,0.06743033920953362,0.06720432031432362,0.06697981379465702,0.0667568044989536,0.06653527747764763,0.06631521797982756,0.06609661144994233,0.06587944352457338,0.06566370002927034,0.06544936697544936,0.06523643055735204,0.06502487714906445,0.06481469330159394,0.0646058657400031,0.06439838136059926,0.0641922272281783,0.0639873905733217,0.06378385878974537,0.06358161943169947,0.06338066021141767,0.06318096899661509,0.06298253380803359,0.0627853428170336,0.06258938434323127,0.062394646852179984,0.06220111895309541,0.062008789396622944,0.06181764707264666,0.06162768100813914,0.06143888036505081,0.06125123443823829,0.061064732653430966,0.06087936456523462,0.06069511985517166,0.06051198832975703,0.060329959918609025,0.06014902467259428,0.05996917276200644,0.05979039447477725,0.05961268021472009,0.059436020499804725,0.059260405960462836,0.05908582733792381,0.05891227548257977,0.058739741352379846,0.058568216011252484,0.05839769062755546,0.058228156472553305,0.05805960491892103,0.057892027439274046,0.05772541560472367,0.05755976108345749,0.057395055639344356,0.05723129113056335,0.05706845950825623,0.056906552815203106,0.05674556318452049,0.05658548283838161,0.056426304086758555,0.05626801932618552,0.05611062103854294,0.0559541017898622,0.05579845422915034,0.05564367108723433,0.055489745175624786,0.05533666938539848,0.055184436686099396,0.05503304012465806,0.05488247282432856,0.054732727983643155,0.054583798875384074,0.05443567884557193,0.05428836131247092,0.054141839765610045,0.053996107764820174,0.053851158939286874,0.053706986986618376,0.053563585671928544,0.05342094882693471,0.053279070349069764,0.05313794420060859,0.0529975644078083,0.0528579250600621,0.05271902030906679,0.05258084436800308,0.05244339151072908,0.05230665607098634,0.052170632441618396,0.052035315073801464,0.051900698476287234,0.05176677721465731,0.05163354591058935,0.05150099924113444,0.05136913193800565,0.05123793878687766,0.05110741462669694,0.05097755434900263,0.05084835289725772,0.05071980526619054,0.05059190650114603,0.05046465169744713,0.050338035999765524,0.05021205460150216,0.050086702744176856,0.049961975716827194,0.049837868855416384,0.04971437754224996,0.049591497205401104,0.04946922331814467,0.049347551398399414,0.04922647700817853,0.04910599575304837,0.048986103281594987,0.048866795284898616,0.0487480674960158,0.04862991568946905,0.048512335680744,0.04839532332579385,0.0482788745205509,0.04816298520044534,0.048047651339930775,0.04793286895201668,0.047818634087807614,0.04770494283604889,0.04759179132267887,0.04747917571038757,0.04736709219818156,0.04725553702095505,0.047144506449067,0.04703399678792425,0.04692400437757045,0.046814525592280935,0.046705556840163004,0.04659709456276206,0.04648913523467305,0.04638167536315749,0.046274711487765595,0.04616824017996383,0.04606225804276751,0.04595676171037852,0.04585174784782798,0.04574721315062382,0.045643154344403206,0.04553956818458969,0.04543645145605506,0.04533380097278575,0.045231613577553814,0.04512988614159236,0.04502861556427532,0.04492779877280159,0.044827432721883394,0.04472751439343879,0.044628040796288425,0.04452900896585615,0.04443041596387377,0.044332258878089705,0.04423453482198143,0.044137240934471834,0.044040374379649236,0.043943932346491105,0.04384791204859154,0.04375231072389211,0.043657125634416365,0.04356235406600783,0.04346799332807131,0.04337404075331765,0.04328049369751176,0.04318734953922395,0.04309460567958439,0.04300225954204087,0.04291030857211955,0.042818750237188855,0.04272758202622638,0.04263680144958878,0.04254640603878454,0.04245639334624976,0.04236676094512666,0.04227750642904497,0.04218862741190607,0.04210012152766981,0.042011986430144116,0.04192421979277712,0.04183681930845199,0.04174978268928431,0.04166310766642194,0.041576791989847435,0.04149083342818287,0.04140522976849712,0.041319978816115585,0.04123507839443208,0.041150526344723264,0.04106632052596525,0.040982458814652435,0.040898939104618615,0.040815759306860294,0.040732917349362074,0.04065041117692427,0.04056823875099255,0.040486398049489676,0.04040488706664924,0.04032370381285154,0.04024284631446121,0.04016231261366705,0.040082100768323595,0.04000220885179469,0.03992263495279888,0.03984337717525668,0.03976443363813967,0.03968580247532133,0.03960748183542972,0.03952946988170184,0.039451764791839775,0.03937436475786849,0.03929726798599531,0.03922047269647107,0.03914397712345285,0.039067779514868416,0.03899187813228209,0.03891627125076236,0.038840957158750855,0.03876593415793302,0.03869120056311012,0.038616754702072896,0.03854259491547647,0.038468719556716935,0.0383951269918092,0.038321815599266236,0.03824878376997981,0.038176029907102484,0.03810355242593107,0.038031349753791244,0.03795942032992367,0.037887762605371245,0.03781637504286778,0.03774525611672775,0.03767440431273751,0.03760381812804754,0.037533496071066035,0.03746343666135362,0.03739363842951923,0.0373240999171173,0.037254819676545835,0.037185796270945905,0.03711702827410207,0.03704851427034397,0.03698025285444896,0.03691224263154597,0.036844482217020226,0.03677697023641911,0.03670970532535915,0.03664268612943383,0.03657591130412261,0.036509379514700804,0.036443089436150475,0.036377039753072375,0.03631122915959875,0.036245656359307106,0.03618032006513496,0.03611521899929549,0.03605035189319406,0.03598571748734567,0.035921314531293345,0.035857141783527315,0.0357931980114051,0.035729481991072475],"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]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_negative.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_negative.json new file mode 100644 index 000000000000..34881d4f3bf1 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_negative.json @@ -0,0 +1 @@ +{"expected":[-0.035729481991072475,-0.03554724134027826,-0.035366851088091206,-0.03518828318299127,-0.035011510137841796,-0.03483650501576095,-0.034663241416415635,-0.03449169346272319,-0.03432183578794688,-0.03415364352317151,-0.03398709228514617,-0.03382215816448174,-0.03365881771419102,-0.033497047938559885,-0.03333682628233855,-0.03317813062024202,-0.033020939246749634,-0.032865230866193695,-0.032710984583127746,-0.03255817989296524,-0.0324067966728799,-0.03225681517295913,-0.03210821600760244,-0.03196098014715696,-0.0318150889097823,-0.031670523953537796,-0.03152726726868465,-0.031385301170196514,-0.031244608290471886,-0.03110517157224186,-0.030966974261667266,-0.030829999901619384,-0.030694232325138376,-0.030559655649064155,-0.030426254267834272,-0.03029401284744386,-0.030162916319562583,-0.03003294987580395,-0.029904098962142356,-0.029776349273473474,-0.029649686748313586,-0.029524097563633996,-0.029399568129826182,-0.029276085085794146,-0.029153635294170026,-0.029032205836649515,-0.02891178400944342,-0.02879235731884226,-0.02867391347689035,-0.02855644039716645,-0.028439926190667847,-0.028324359161794887,-0.028209727804433152,-0.02809602079813057,-0.02798322700436663,-0.027871335462911324,-0.027760335388271135,-0.02765021616621975,-0.027540967350411154,-0.0274325786590727,-0.027325039971776217,-0.02721834132628469,-0.027112472915472766,-0.027007425084318838,-0.026903188326966927,-0.026799753283856403,-0.026697110738917743,-0.026595251616832554,-0.0264941669803562,-0.026393848027701245,-0.026294286089980273,-0.026195472628706366,-0.026097399233349854,-0.026000057618949742,-0.025903439623778512,-0.02580753720705882,-0.025712342446730808,-0.02561784753726866,-0.02552404478754526,-0.02543092661874355,-0.025338485562313547,-0.025246714257973802,-0.025155605451756154,-0.025065151994092722,-0.024975346837944088,-0.02488618303696758,-0.024797653743724706,-0.024709752207926775,-0.0246224717747177,-0.024535805882993117,-0.02444974806375495,-0.024364291938500447,-0.02427943121764496,-0.024195159698977634,-0.024111471266149067,-0.024028359887190428,-0.02394581961306299,-0.023863844576237588,-0.02378242898930311,-0.023701567143603438,-0.02362125340790212,-0.023541482227074157,-0.023462248120824137,-0.02338354568243032,-0.023305369577513835,-0.02322771454283257,-0.023150575385099098,-0.02307394697982206,-0.022997824270170584,-0.022922202265861048,-0.022847076042065796,-0.02277244073834328,-0.022698291557589068,-0.022624623765007325,-0.02255143268710229,-0.02247871371068926,-0.02240646228192467,-0.02233467390535483,-0.022263344142982915,-0.02219246861335379,-0.02212204299065627,-0.02205206300384241,-0.021982524435763543,-0.021913423122322532,-0.021844754951642044,-0.021776515863248407,-0.021708701847270705,-0.02164130894365484,-0.021574333241392175,-0.021507770877762462,-0.021441618037590787,-0.021375870952518135,-0.02131052590028544,-0.021245579204030616,-0.02118102723159852,-0.02111686639486339,-0.02105309314906364,-0.020989703992148594,-0.020926695464137092,-0.020864064146487525,-0.020801806661479263,-0.020739919671605014,-0.020678399878974102,-0.02061724402472631,-0.020556448888456074,-0.02049601128764688,-0.0204359280771156,-0.020376196148466575,-0.020316812429555256,-0.020257773883961216,-0.020199077510470283,-0.020140720342565747,-0.020082699447928242,-0.02002501192794439,-0.019967654917223767,-0.019910625583124265,-0.019853921125285463,-0.019797538775170057,-0.019741475795613,-0.01968572948037836,-0.01963029715372359,-0.019575176169971224,-0.019520363913087715,-0.019465857796269366,-0.01941165526153517,-0.019357753779326425,-0.019304150848113048,-0.019250843994006367,-0.019197830770378344,-0.019145108757487064,-0.019092675562108388,-0.019040528817173642,-0.018988666181413247,-0.018937085339006104,-0.018885783999234792,-0.018834759896146212,-0.018784010788217877,-0.018733534458029444,-0.018683328711939628,-0.01863339137976825,-0.01858372031448342,-0.01853431339189364,-0.018485168510344877,-0.018436283590422427,-0.018387656574657477,-0.018339285427238308,-0.018291168133726082,-0.018243302700775055,-0.018195687155857176,-0.01814831954699101,-0.01810119794247489,-0.018054320430624174,-0.018007685119512635,-0.01796129013671781,-0.01791513362907029,-0.017869213762406865,-0.017823528721327482,-0.01777807670895587,-0.017732855946703877,-0.017687864674039357,-0.017643101148257612,-0.017598563644256278,-0.017554250454313608,-0.01751015988787013,-0.01746629027131356,-0.01742263994776694,-0.01737920727687998,-0.017335990634623467,-0.01729298841308678,-0.017250199020278377,-0.01720762087992926,-0.01716525243129935,-0.017123092128986675,-0.017081138442739452,-0.01703938985727079,-0.016997844872076253,-0.01695650200125399,-0.016915359773327497,-0.01687441673107102,-0.01683367143133737,-0.016793122444888352,-0.016752768356227566,-0.016712607763435628,-0.01667263927800776,-0.01663286152469371,-0.016593273141339973,-0.01655387277873422,-0.01651465910045196,-0.01647563078270541,-0.016436786514194442,-0.016398124995959693,-0.0163596449412377,-0.016321345075318097,-0.016283224135402796,-0.01624528087046717,-0.01620751404112312,-0.016169922419484107,-0.016132504789032002,-0.016095259944485855,-0.016058186691672378,-0.016021283847398315,-0.015984550239324484,-0.01594798470584164,-0.015911586095947932,-0.015875353269128128,-0.01583928509523443,-0.01580338045436894,-0.015767638236767703,-0.01573205734268633,-0.01569663668228717,-0.015661375175528004,-0.01562627175205221,-0.015591325351080454,-0.015556534921303771,-0.015521899420778135,-0.01548741781682038,-0.015453089085905541,-0.015418912213565554,-0.015384886194289292,-0.015351010031423903,-0.015317282737077486,-0.015283703332023021,-0.015250270845603585,-0.015216984315638768,-0.015183842788332362,-0.015150845318181203,-0.015117990967885266,-0.015085278808258851,-0.015052707918142979,-0.015020277384318883,-0.014987986301422656,-0.014955833771860952,-0.014923818905727802,-0.014891940820722467,-0.014860198642068409,-0.014828591502433187,-0.014797118541849482,-0.01476577890763705,-0.014734571754325729,-0.014703496243579339,-0.014672551544120623,-0.0146417368316571,-0.01461105128880784,-0.014580494105031169,-0.014550064476553295,-0.014519761606297801,-0.014489584703816035,-0.014459532985218343,-0.014429605673106204,-0.01439980199650515,-0.014370121190798547,-0.014340562497662196,-0.014311125164999723,-0.01428180844687878,-0.014252611603468017,-0.014223533900974823,-0.014194574611583844,-0.014165733013396247,-0.0141370083903697,-0.014108400032259109,-0.014079907234558065,-0.014051529298440996,-0.014023265530706016,-0.01399511524371846,-0.013967077755355117,-0.013939152388949112,-0.013911338473235446,-0.013883635342297208,-0.013856042335512412,-0.013828558797501469,-0.01380118407807528,-0.013773917532183962,-0.013746758519866164,-0.013719706406198979,-0.013692760561248456,-0.013665920360020699,-0.013639185182413534,-0.013612554413168713,-0.013586027441824753,-0.013559603662670231,-0.013533282474697709,-0.013507063281558122,-0.013480945491515753,-0.013454928517403686,-0.013429011776579828,-0.013403194690883352,-0.013377476686591741,-0.01335185719437825,-0.013326335649269898,-0.01330091149060592,-0.013275584161996708,-0.013250353111283196,-0.01322521779049676,-0.013200177655819496,-0.013175232167545025,-0.013150380790039688,-0.013125622991704205,-0.013100958244935772,-0.013076386026090545,-0.01305190581544661,-0.013027517097167303,-0.013003219359264979,-0.012979012093565181,-0.01295489479567121,-0.012930866964929061,-0.01290692810439279,-0.012883077720790241,-0.012859315324489163,-0.01283564042946368,-0.012812052553261169,-0.012788551216969455,-0.012765135945184419,-0.012741806265977915,-0.012718561710866064,-0.012695401814777883,-0.012672326116024278,-0.012649334156267332,-0.012626425480489973,-0.01260359963696594,-0.012580856177230097,-0.012558194656049036,-0.01253561463139204,-0.012513115664402318,-0.012490697319368577,-0.012468359163696884,-0.01244610076788284,-0.012423921705484045,-0.012401821553092851,-0.012379799890309429,-0.01235785629971508,-0.012335990366845892,-0.0123142016801666,-0.012292489831044797,-0.012270854413725359,-0.01224929502530518,-0.01222781126570814,-0.012206402737660368,-0.012185069046665742,-0.012163809800981655,-0.012142624611595026,-0.012121513092198574,-0.012100474859167326,-0.012079509531535384,-0.012058616730972915,-0.0120377960817634,-0.012017047210781097,-0.011996369747468755,-0.011975763323815542,-0.011955227574335217,-0.011934762136044512,-0.011914366648441746,-0.011894040753485642,-0.011873784095574384,-0.011853596321524868,-0.011833477080552181,-0.011813426024249266,-0.011793442806566808,-0.011773527083793337,-0.011753678514535505,-0.011733896759698575,-0.011714181482467115,-0.011694532348285876,-0.011674949024840852,-0.011655431182040562,-0.011635978491997483,-0.011616590629009703,-0.011597267269542712,-0.011578008092211439,-0.01155881277776239,-0.011539681009056052,-0.011520612471049378,-0.011501606850778511,-0.011482663837341667,-0.011463783121882168,-0.011444964397571653,-0.011426207359593456,-0.01140751170512615,-0.011388877133327244,-0.011370303345317039,-0.011351790044162646,-0.01133333693486218,-0.011314943724329054,-0.01129661012137649,-0.011278335836702126,-0.011260120582872816,-0.01124196407430955,-0.011223866027272517,-0.011205826159846334,-0.01118784419192541,-0.011169919845199426,-0.011152052843138993,-0.011134242910981421,-0.011116489775716634,-0.011098793166073212,-0.01108115281250458,-0.011063568447175317,-0.011046039803947598,-0.011028566618367763,-0.011011148627653016,-0.010993785570678257,-0.010976477187963019,-0.010959223221658541,-0.01094202341553498,-0.010924877514968694,-0.010907785266929707,-0.010890746419969234,-0.010873760724207364,-0.010856827931320836,-0.010839947794530944,-0.010823120068591534,-0.010806344509777131,-0.010789620875871177,-0.010772948926154356,-0.010756328421393065,-0.010739759123827937,-0.010723240797162543,-0.010706773206552115,-0.010690356118592445,-0.01067398930130884,-0.010657672524145213,-0.010641405557953227,-0.010625188174981585,-0.0106090201488654,-0.010592901254615655,-0.010576831268608764,-0.010560809968576237,-0.010544837133594418,-0.01052891254407435,-0.010513035981751682,-0.01049720722967672,-0.010481426072204527,-0.010465692294985144,-0.010450005684953875,-0.01043436603032166,-0.010418773120565557,-0.010403226746419287,-0.010387726699863873,-0.010372272774118356,-0.010356864763630604,-0.010341502464068196,-0.010326185672309383,-0.010310914186434145,-0.010295687805715307,-0.010280506330609741,-0.010265369562749661,-0.010250277304933967,-0.010235229361119695,-0.010220225536413515,-0.010205265637063317,-0.010190349470449877,-0.010175476845078586,-0.010160647570571247,-0.010145861457657963,-0.010131118318169069,-0.010116417965027168,-0.010101760212239193,-0.010087144874888581,-0.010072571769127485,-0.010058040712169076,-0.010043551522279882,-0.010029104018772229,-0.01001469802199671,-0.010000333353334763],"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]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_positive.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_positive.json new file mode 100644 index 000000000000..477d2fc95f00 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_positive.json @@ -0,0 +1 @@ +{"expected":[0.035729481991072475,0.03554724134027826,0.035366851088091206,0.03518828318299127,0.035011510137841796,0.03483650501576095,0.034663241416415635,0.03449169346272319,0.03432183578794688,0.03415364352317151,0.03398709228514617,0.03382215816448174,0.03365881771419102,0.033497047938559885,0.03333682628233855,0.03317813062024202,0.033020939246749634,0.032865230866193695,0.032710984583127746,0.03255817989296524,0.0324067966728799,0.03225681517295913,0.03210821600760244,0.03196098014715696,0.0318150889097823,0.031670523953537796,0.03152726726868465,0.031385301170196514,0.031244608290471886,0.03110517157224186,0.030966974261667266,0.030829999901619384,0.030694232325138376,0.030559655649064155,0.030426254267834272,0.03029401284744386,0.030162916319562583,0.03003294987580395,0.029904098962142356,0.029776349273473474,0.029649686748313586,0.029524097563633996,0.029399568129826182,0.029276085085794146,0.029153635294170026,0.029032205836649515,0.02891178400944342,0.02879235731884226,0.02867391347689035,0.02855644039716645,0.028439926190667847,0.028324359161794887,0.028209727804433152,0.02809602079813057,0.02798322700436663,0.027871335462911324,0.027760335388271135,0.02765021616621975,0.027540967350411154,0.0274325786590727,0.027325039971776217,0.02721834132628469,0.027112472915472766,0.027007425084318838,0.026903188326966927,0.026799753283856403,0.026697110738917743,0.026595251616832554,0.0264941669803562,0.026393848027701245,0.026294286089980273,0.026195472628706366,0.026097399233349854,0.026000057618949742,0.025903439623778512,0.02580753720705882,0.025712342446730808,0.02561784753726866,0.02552404478754526,0.02543092661874355,0.025338485562313547,0.025246714257973802,0.025155605451756154,0.025065151994092722,0.024975346837944088,0.02488618303696758,0.024797653743724706,0.024709752207926775,0.0246224717747177,0.024535805882993117,0.02444974806375495,0.024364291938500447,0.02427943121764496,0.024195159698977634,0.024111471266149067,0.024028359887190428,0.02394581961306299,0.023863844576237588,0.02378242898930311,0.023701567143603438,0.02362125340790212,0.023541482227074157,0.023462248120824137,0.02338354568243032,0.023305369577513835,0.02322771454283257,0.023150575385099098,0.02307394697982206,0.022997824270170584,0.022922202265861048,0.022847076042065796,0.02277244073834328,0.022698291557589068,0.022624623765007325,0.02255143268710229,0.02247871371068926,0.02240646228192467,0.02233467390535483,0.022263344142982915,0.02219246861335379,0.02212204299065627,0.02205206300384241,0.021982524435763543,0.021913423122322532,0.021844754951642044,0.021776515863248407,0.021708701847270705,0.02164130894365484,0.021574333241392175,0.021507770877762462,0.021441618037590787,0.021375870952518135,0.02131052590028544,0.021245579204030616,0.02118102723159852,0.02111686639486339,0.02105309314906364,0.020989703992148594,0.020926695464137092,0.020864064146487525,0.020801806661479263,0.020739919671605014,0.020678399878974102,0.02061724402472631,0.020556448888456074,0.02049601128764688,0.0204359280771156,0.020376196148466575,0.020316812429555256,0.020257773883961216,0.020199077510470283,0.020140720342565747,0.020082699447928242,0.02002501192794439,0.019967654917223767,0.019910625583124265,0.019853921125285463,0.019797538775170057,0.019741475795613,0.01968572948037836,0.01963029715372359,0.019575176169971224,0.019520363913087715,0.019465857796269366,0.01941165526153517,0.019357753779326425,0.019304150848113048,0.019250843994006367,0.019197830770378344,0.019145108757487064,0.019092675562108388,0.019040528817173642,0.018988666181413247,0.018937085339006104,0.018885783999234792,0.018834759896146212,0.018784010788217877,0.018733534458029444,0.018683328711939628,0.01863339137976825,0.01858372031448342,0.01853431339189364,0.018485168510344877,0.018436283590422427,0.018387656574657477,0.018339285427238308,0.018291168133726082,0.018243302700775055,0.018195687155857176,0.01814831954699101,0.01810119794247489,0.018054320430624174,0.018007685119512635,0.01796129013671781,0.01791513362907029,0.017869213762406865,0.017823528721327482,0.01777807670895587,0.017732855946703877,0.017687864674039357,0.017643101148257612,0.017598563644256278,0.017554250454313608,0.01751015988787013,0.01746629027131356,0.01742263994776694,0.01737920727687998,0.017335990634623467,0.01729298841308678,0.017250199020278377,0.01720762087992926,0.01716525243129935,0.017123092128986675,0.017081138442739452,0.01703938985727079,0.016997844872076253,0.01695650200125399,0.016915359773327497,0.01687441673107102,0.01683367143133737,0.016793122444888352,0.016752768356227566,0.016712607763435628,0.01667263927800776,0.01663286152469371,0.016593273141339973,0.01655387277873422,0.01651465910045196,0.01647563078270541,0.016436786514194442,0.016398124995959693,0.0163596449412377,0.016321345075318097,0.016283224135402796,0.01624528087046717,0.01620751404112312,0.016169922419484107,0.016132504789032002,0.016095259944485855,0.016058186691672378,0.016021283847398315,0.015984550239324484,0.01594798470584164,0.015911586095947932,0.015875353269128128,0.01583928509523443,0.01580338045436894,0.015767638236767703,0.01573205734268633,0.01569663668228717,0.015661375175528004,0.01562627175205221,0.015591325351080454,0.015556534921303771,0.015521899420778135,0.01548741781682038,0.015453089085905541,0.015418912213565554,0.015384886194289292,0.015351010031423903,0.015317282737077486,0.015283703332023021,0.015250270845603585,0.015216984315638768,0.015183842788332362,0.015150845318181203,0.015117990967885266,0.015085278808258851,0.015052707918142979,0.015020277384318883,0.014987986301422656,0.014955833771860952,0.014923818905727802,0.014891940820722467,0.014860198642068409,0.014828591502433187,0.014797118541849482,0.01476577890763705,0.014734571754325729,0.014703496243579339,0.014672551544120623,0.0146417368316571,0.01461105128880784,0.014580494105031169,0.014550064476553295,0.014519761606297801,0.014489584703816035,0.014459532985218343,0.014429605673106204,0.01439980199650515,0.014370121190798547,0.014340562497662196,0.014311125164999723,0.01428180844687878,0.014252611603468017,0.014223533900974823,0.014194574611583844,0.014165733013396247,0.0141370083903697,0.014108400032259109,0.014079907234558065,0.014051529298440996,0.014023265530706016,0.01399511524371846,0.013967077755355117,0.013939152388949112,0.013911338473235446,0.013883635342297208,0.013856042335512412,0.013828558797501469,0.01380118407807528,0.013773917532183962,0.013746758519866164,0.013719706406198979,0.013692760561248456,0.013665920360020699,0.013639185182413534,0.013612554413168713,0.013586027441824753,0.013559603662670231,0.013533282474697709,0.013507063281558122,0.013480945491515753,0.013454928517403686,0.013429011776579828,0.013403194690883352,0.013377476686591741,0.01335185719437825,0.013326335649269898,0.01330091149060592,0.013275584161996708,0.013250353111283196,0.01322521779049676,0.013200177655819496,0.013175232167545025,0.013150380790039688,0.013125622991704205,0.013100958244935772,0.013076386026090545,0.01305190581544661,0.013027517097167303,0.013003219359264979,0.012979012093565181,0.01295489479567121,0.012930866964929061,0.01290692810439279,0.012883077720790241,0.012859315324489163,0.01283564042946368,0.012812052553261169,0.012788551216969455,0.012765135945184419,0.012741806265977915,0.012718561710866064,0.012695401814777883,0.012672326116024278,0.012649334156267332,0.012626425480489973,0.01260359963696594,0.012580856177230097,0.012558194656049036,0.01253561463139204,0.012513115664402318,0.012490697319368577,0.012468359163696884,0.01244610076788284,0.012423921705484045,0.012401821553092851,0.012379799890309429,0.01235785629971508,0.012335990366845892,0.0123142016801666,0.012292489831044797,0.012270854413725359,0.01224929502530518,0.01222781126570814,0.012206402737660368,0.012185069046665742,0.012163809800981655,0.012142624611595026,0.012121513092198574,0.012100474859167326,0.012079509531535384,0.012058616730972915,0.0120377960817634,0.012017047210781097,0.011996369747468755,0.011975763323815542,0.011955227574335217,0.011934762136044512,0.011914366648441746,0.011894040753485642,0.011873784095574384,0.011853596321524868,0.011833477080552181,0.011813426024249266,0.011793442806566808,0.011773527083793337,0.011753678514535505,0.011733896759698575,0.011714181482467115,0.011694532348285876,0.011674949024840852,0.011655431182040562,0.011635978491997483,0.011616590629009703,0.011597267269542712,0.011578008092211439,0.01155881277776239,0.011539681009056052,0.011520612471049378,0.011501606850778511,0.011482663837341667,0.011463783121882168,0.011444964397571653,0.011426207359593456,0.01140751170512615,0.011388877133327244,0.011370303345317039,0.011351790044162646,0.01133333693486218,0.011314943724329054,0.01129661012137649,0.011278335836702126,0.011260120582872816,0.01124196407430955,0.011223866027272517,0.011205826159846334,0.01118784419192541,0.011169919845199426,0.011152052843138993,0.011134242910981421,0.011116489775716634,0.011098793166073212,0.01108115281250458,0.011063568447175317,0.011046039803947598,0.011028566618367763,0.011011148627653016,0.010993785570678257,0.010976477187963019,0.010959223221658541,0.01094202341553498,0.010924877514968694,0.010907785266929707,0.010890746419969234,0.010873760724207364,0.010856827931320836,0.010839947794530944,0.010823120068591534,0.010806344509777131,0.010789620875871177,0.010772948926154356,0.010756328421393065,0.010739759123827937,0.010723240797162543,0.010706773206552115,0.010690356118592445,0.01067398930130884,0.010657672524145213,0.010641405557953227,0.010625188174981585,0.0106090201488654,0.010592901254615655,0.010576831268608764,0.010560809968576237,0.010544837133594418,0.01052891254407435,0.010513035981751682,0.01049720722967672,0.010481426072204527,0.010465692294985144,0.010450005684953875,0.01043436603032166,0.010418773120565557,0.010403226746419287,0.010387726699863873,0.010372272774118356,0.010356864763630604,0.010341502464068196,0.010326185672309383,0.010310914186434145,0.010295687805715307,0.010280506330609741,0.010265369562749661,0.010250277304933967,0.010235229361119695,0.010220225536413515,0.010205265637063317,0.010190349470449877,0.010175476845078586,0.010160647570571247,0.010145861457657963,0.010131118318169069,0.010116417965027168,0.010101760212239193,0.010087144874888581,0.010072571769127485,0.010058040712169076,0.010043551522279882,0.010029104018772229,0.01001469802199671,0.010000333353334763],"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]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_negative.json new file mode 100644 index 000000000000..e1236dc042c7 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_negative.json @@ -0,0 +1 @@ +{"expected":[-1.5222612188617113,-1.504586603996554,-1.4875757829269853,-1.4711827314360777,-1.4553660422356198,-1.4400883274295309,-1.4253157146233255,-1.4110174196020666,-1.397165382025739,-1.3837339533089152,-1.3706996279639225,-1.3580408113409939,-1.3457376180039984,-1.3337716960170605,-1.3221260732461817,-1.3107850224467472,-1.299733942447189,-1.2889592531779241,-1.27844830265359,-1.268189284311477,-1.258171163352654,-1.2483836109342261,-1.23881694522946,-1.2294620785132346,-1.2203104695484495,-1.2113540806486411,-1.2025853388762893,-1.1939971009078294,-1.185582621157269,-1.177335522802342,-1.1692497714017163,-1.1613196508300776,-1.1535397412909425,-1.1459048991955825,-1.1384102387211692,-1.131051114882736,-1.123823107972237,-1.1167220092343302,-1.1097438076627764,-1.1028846778138675,-1.096140968544315,-1.0895091925906872,-1.0829860169160574,-1.0765682537570536,-1.0702528523112094,-1.0640368910104332,-1.0579175703316916,-1.0518922061007079,-1.045958223248642,-1.0401131499854857,-1.0343546123572196,-1.028680329156812,-1.0230881071618,-1.017575836673619,-1.01214148733604,-1.0067831042119981,-1.0014988040999027,-0.996286772072088,-0.9911452582195268,-0.9860725745882294,-0.9810670922939403,-0.9761272388028316,-0.9712514953668497,-0.966438394603295,-0.9616865182089999,-0.9569944948002216,-0.9523609978700524,-0.9477847438557462,-0.9432644903089489,-0.9387990341623247,-0.9343872100865429,-0.9300278889320407,-0.9257199762503567,-0.9214624108902181,-0.9172541636638843,-0.913094236079575,-0.9089816591360902,-0.904915492175996,-0.9008948217939962,-0.8969187607973309,-0.8929864472152577,-0.8890970433548595,-0.8852497349006028,-0.8814437300552372,-0.877678258719779,-0.8739525717104644,-0.8702659400106908,-0.8666176540560862,-0.8630070230509628,-0.859433374314514,-0.8558960526552202,-0.8523944197720077,-0.8489278536808073,-0.845495748165227,-0.8420975122501315,-0.838732569696995,-0.8354003585199522,-0.8321003305215402,-0.8288319508471755,-0.8255946975574674,-0.8223880612175182,-0.8192115445024044,-0.8160646618180856,-0.8129469389370146,-0.8098579126477796,-0.806797130418126,-0.8037641500707564,-0.8007585394713281,-0.7977798762281019,-0.7948277474027244,-0.7919017492316563,-0.7890014868577703,-0.7861265740716873,-0.7832766330624223,-0.7804512941769463,-0.777650195688278,-0.774872983571753,-0.7721193112891199,-0.7693888395801399,-0.7666812362613812,-0.7639961760319074,-0.7613333402855826,-0.7586924169297257,-0.7560731002098495,-0.753475090540255,-0.7508980943402339,-0.7483418238756678,-0.745805997105809,-0.7432903375350367,-0.7407945740694069,-0.7383184408777962,-0.7358616772574791,-0.7334240275039592,-0.7310052407848993,-0.7286050710179959,-0.726223276752647,-0.723859621055281,-0.7215138713982013,-0.7191857995518269,-0.7168751814802011,-0.7145817972396494,-0.7123054308804763,-0.7100458703515905,-0.7078029074079553,-0.7055763375207622,-0.7033659597902362,-0.7011715768609779,-0.6989929948397534,-0.6968300232156529,-0.6946824747825285,-0.6925501655636415,-0.6904329147384397,-0.6883305445713936,-0.686242880342823,-0.6841697502816474,-0.6821109854999962,-0.680066419929618,-0.6780358902600289,-0.6760192358783447,-0.6740162988107384,-0.6720269236654789,-0.6700509575774879,-0.6680882501543787,-0.6661386534239223,-0.664202021782897,-0.662278211947281,-0.6603670829037412,-0.6584684958623832,-0.6565823142107182,-0.6547084034688138,-0.6528466312455901,-0.6509968671962252,-0.6491589829806407,-0.6473328522230288,-0.6455183504723947,-0.6437153551640811,-0.6419237455822467,-0.6401434028232714,-0.638374209760057,-0.636616051007203,-0.6348688128870277,-0.6331323833964104,-0.6314066521744348,-0.6296915104708036,-0.6279868511150107,-0.6262925684862418,-0.624608558483988,-0.6229347184993499,-0.6212709473870122,-0.619617145437874,-0.6179732143523102,-0.6163390572140529,-0.6147145784646723,-0.6130996838786391,-0.6114942805389592,-0.6098982768133553,-0.6083115823309908,-0.6067341079597129,-0.6051657657838074,-0.6036064690822471,-0.6020561323074223,-0.6005146710643429,-0.5989820020902936,-0.5974580432349389,-0.5959427134408578,-0.5944359327245021,-0.5929376221575666,-0.591447703848758,-0.589966100925957,-0.5884927375187573,-0.5870275387413794,-0.5855704306759414,-0.5841213403560853,-0.5826801957509458,-0.5812469257494518,-0.5798214601449581,-0.5784037296201924,-0.5769936657325129,-0.5755912008994714,-0.5741962683846682,-0.5728088022838976,-0.571428737511574,-0.5700560097874312,-0.5686905556234922,-0.5673323123112965,-0.5659812179093863,-0.5646372112310383,-0.5633002318322411,-0.5619702199999086,-0.5606471167403256,-0.5593308637678198,-0.5580214034936534,-0.5567186790151332,-0.5554226341049291,-0.5541332132005997,-0.5528503613943196,-0.5515740244228013,-0.5503041486574124,-0.5490406810944769,-0.5477835693457634,-0.5465327616291508,-0.5452882067594687,-0.5440498541395113,-0.5428176537512175,-0.5415915561470147,-0.5403715124413231,-0.5391574743022175,-0.5379493939432407,-0.5367472241153685,-0.5355509180991189,-0.5343604296968083,-0.5331757132249442,-0.5319967235067573,-0.5308234158648681,-0.5296557461140837,-0.5284936705543233,-0.5273371459636709,-0.5261861295915498,-0.5250405791520187,-0.5239004528171849,-0.5227657092107335,-0.5216363074015704,-0.5205122068975743,-0.5193933676394598,-0.5182797499947439,-0.5171713147518193,-0.5160680231141268,-0.5149698366944296,-0.5138767175091854,-0.5127886279730118,-0.5117055308932492,-0.5106273894646124,-0.5095541672639345,-0.5084858282449976,-0.5074223367334505,-0.5063636574218122,-0.5053097553645565,-0.5042605959732793,-0.5032161450119463,-0.5021763685922174,-0.5011412331688482,-0.5001107055351686,-0.4990847528186323,-0.49806334247644046,-0.4970464422912359,-0.4960340203668667,-0.49502604512421744,-0.49402248529710896,-0.49302330992826193,-0.4920284883653261,-0.49103799025697104,-0.4900517855490416,-0.48906984448077095,-0.4880921375810552,-0.48711863566478664,-0.4861493098292431,-0.4851841314505345,-0.48422307218010474,-0.48326610394128733,-0.48231319892591507,-0.48136432959098097,-0.48041946865535134,-0.47947858909652896,-0.4785416641474657,-0.4776086672934234,-0.47667957226888286,-0.4757543530545002,-0.4748329838741066,-0.47391543919175716,-0.47300169370882084,-0.4720917223611145,-0.47118550031608153,-0.47028300297001047,-0.4693842059452955,-0.46848908508773746,-0.4675976164638854,-0.4667097763584157,-0.46582554127155107,-0.4649448879165162,-0.46406779321703173,-0.4631942343048432,-0.46232418851728674,-0.4614576333948899,-0.46059454667900696,-0.45973490630948777,-0.45887869042238094,-0.45802587734766914,-0.4571764456070364,-0.45633037391166853,-0.45548764116008295,-0.4546482264359907,-0.4538121090061874,-0.45297926831847485,-0.45214968399961114,-0.4513233358532893,-0.45050020385814504,-0.44968026816579115,-0.4488635090988796,-0.4480499071491907,-0.4472394429757481,-0.4464320974029601,-0.44562785141878586,-0.44482668617292814,-0.4440285829750491,-0.4432335232930106,-0.44244148875113953,-0.44165246112851575,-0.4408664223572831,-0.4400833545209831,-0.439303239852912,-0.43852606073449824,-0.437751799693703,-0.43698043940344145,-0.43621196268002504,-0.4354463524816246,-0.43468359190675265,-0.4339236641927684,-0.4331665527143994,-0.4324122409822842,-0.43166071264153405,-0.4309119514703128,-0.4301659413784362,-0.4294226664059878,-0.4286821107219546,-0.42794425862287955,-0.42720909453153044,-0.4264766029955883,-0.42574676868635003,-0.42501957639744914,-0.4242950110435926,-0.4235730576593135,-0.42285370139774003,-0.4221369275293787,-0.4214227214409153,-0.4207110686340288,-0.42000195472422097,-0.41929536543966117,-0.4185912866200448,-0.41788970421546645,-0.41719060428530674,-0.41649397299713387,-0.4157997966256173,-0.4151080615514561,-0.4144187542603204,-0.413731861341805,-0.4130473694883972,-0.41236526549445535,-0.41168553625520227,-0.41100816876572893,-0.41033315012001087,-0.4096604675099374,-0.4089901082243513,-0.40832205964810064,-0.4076563092611023,-0.40699284463741653,-0.4063316534443322,-0.4056727234414634,-0.40501604247985734,-0.40436159850111175,-0.4037093795365033,-0.40305937370612677,-0.4024115692180438,-0.40176595436744195,-0.4011225175358033,-0.4004812471900837,-0.39984213188190076,-0.39920516024673136,-0.39857032100311923,-0.39793760295189134,-0.39730699497538285,-0.3966784860366722,-0.3960520651788241,-0.3954277215241415,-0.3948054442734263,-0.3941852227052488,-0.3935670461752247,-0.3929509041153011,-0.39233678603305056,-0.39172468151097284,-0.39111458020580514,-0.39050647184783915,-0.3899003462402472,-0.389296193258415,-0.38869400284928224,-0.3880937650306902,-0.38749546989073774,-0.3868991075871432,-0.38630466834661403,-0.38571214246422414,-0.3851215203027965,-0.38453279229229376,-0.3839459489292161,-0.3833609807760043,-0.38277787846045,-0.3821966326751136,-0.3816172341767463,-0.38103967378572035,-0.38046394238546466,-0.3798900309219069,-0.37931793040292144,-0.3787476318977833,-0.3781791265366284,-0.37761240550991904,-0.3770474600679155,-0.3764842815201535,-0.37592286123492685,-0.37536319063877616,-0.3748052612159821,-0.3742490645080656,-0.37369459211329165,-0.37314183568617965,-0.3725907869370185,-0.37204143763138703,-0.37149377958967866,-0.3709478046866322,-0.3704035048508673,-0.36986087206442436,-0.36931989836230933,-0.3687805758320439,-0.3682428966132196,-0.367706852897057,-0.3671724369259695,-0.3666396409931313,-0.36610845744205067,-0.36557887866614586,-0.3650508971083283,-0.3645245052605866,-0.36399969566357804,-0.3634764609062219,-0.36295479362529837,-0.3624346865050508,-0.3619161322767923,-0.36139912371851646,-0.3608836536545119,-0.3603697149549805,-0.3598573005356597,-0.35934640335744894,-0.3588370164260394,-0.3583291327915473,-0.35782274554815174,-0.35731784783373527,-0.35681443282952846,-0.3563124937597581,-0.3558120238912986,-0.3553130165333275,-0.354815465036983,-0.35431936279502707,-0.3538247032415097,-0.3533314798514377,-0.3528396861404467,-0.35234931566447575,-0.35186036201944604,-0.3513728188409417,-0.35088667980389465,-0.3504019386222722,-0.3499185890487672,-0.3494366248744922,-0.34895603992867563,-0.34847682807836167,-0.3479989832281121,-0.34752249931971263,-0.34704737033187966,-0.34657359027997264],"x":[-1.1,-1.103784860557769,-1.1075697211155378,-1.1113545816733068,-1.1151394422310756,-1.1189243027888447,-1.1227091633466135,-1.1264940239043826,-1.1302788844621514,-1.1340637450199202,-1.1378486055776893,-1.1416334661354581,-1.1454183266932272,-1.149203187250996,-1.1529880478087648,-1.156772908366534,-1.1605577689243027,-1.1643426294820718,-1.1681274900398406,-1.1719123505976095,-1.1756972111553785,-1.1794820717131473,-1.1832669322709164,-1.1870517928286852,-1.1908366533864543,-1.1946215139442231,-1.198406374501992,-1.202191235059761,-1.2059760956175298,-1.2097609561752989,-1.2135458167330677,-1.2173306772908365,-1.2211155378486056,-1.2249003984063744,-1.2286852589641435,-1.2324701195219123,-1.2362549800796814,-1.2400398406374502,-1.243824701195219,-1.247609561752988,-1.251394422310757,-1.255179282868526,-1.2589641434262948,-1.2627490039840636,-1.2665338645418327,-1.2703187250996015,-1.2741035856573706,-1.2778884462151394,-1.2816733067729085,-1.2854581673306773,-1.2892430278884461,-1.2930278884462152,-1.296812749003984,-1.300597609561753,-1.304382470119522,-1.3081673306772907,-1.3119521912350598,-1.3157370517928286,-1.3195219123505977,-1.3233067729083665,-1.3270916334661356,-1.3308764940239044,-1.3346613545816732,-1.3384462151394423,-1.3422310756972111,-1.3460159362549802,-1.349800796812749,-1.3535856573705178,-1.357370517928287,-1.3611553784860557,-1.3649402390438248,-1.3687250996015936,-1.3725099601593624,-1.3762948207171315,-1.3800796812749003,-1.3838645418326694,-1.3876494023904382,-1.3914342629482073,-1.395219123505976,-1.399003984063745,-1.402788844621514,-1.4065737051792828,-1.4103585657370519,-1.4141434262948207,-1.4179282868525895,-1.4217131474103586,-1.4254980079681274,-1.4292828685258965,-1.4330677290836653,-1.4368525896414344,-1.4406374501992032,-1.444422310756972,-1.448207171314741,-1.45199203187251,-1.455776892430279,-1.4595617529880478,-1.4633466135458166,-1.4671314741035857,-1.4709163346613545,-1.4747011952191236,-1.4784860557768924,-1.4822709163346615,-1.4860557768924303,-1.4898406374501991,-1.4936254980079682,-1.497410358565737,-1.501195219123506,-1.504980079681275,-1.5087649402390437,-1.5125498007968128,-1.5163346613545816,-1.5201195219123507,-1.5239043824701195,-1.5276892430278886,-1.5314741035856574,-1.5352589641434262,-1.5390438247011953,-1.542828685258964,-1.5466135458167332,-1.550398406374502,-1.5541832669322708,-1.5579681274900399,-1.5617529880478087,-1.5655378486055778,-1.5693227091633466,-1.5731075697211154,-1.5768924302788845,-1.5806772908366533,-1.5844621513944224,-1.5882470119521912,-1.5920318725099603,-1.595816733067729,-1.599601593625498,-1.603386454183267,-1.6071713147410358,-1.6109561752988049,-1.6147410358565737,-1.6185258964143425,-1.6223107569721116,-1.6260956175298804,-1.6298804780876495,-1.6336653386454183,-1.6374501992031874,-1.6412350597609562,-1.645019920318725,-1.648804780876494,-1.652589641434263,-1.656374501992032,-1.6601593625498008,-1.6639442231075696,-1.6677290836653387,-1.6715139442231075,-1.6752988047808766,-1.6790836653386454,-1.6828685258964144,-1.6866533864541833,-1.690438247011952,-1.6942231075697212,-1.69800796812749,-1.701792828685259,-1.7055776892430279,-1.7093625498007967,-1.7131474103585658,-1.7169322709163346,-1.7207171314741037,-1.7245019920318725,-1.7282868525896415,-1.7320717131474104,-1.7358565737051792,-1.7396414342629483,-1.743426294820717,-1.7472111553784861,-1.750996015936255,-1.7547808764940238,-1.7585657370517929,-1.7623505976095617,-1.7661354581673308,-1.7699203187250996,-1.7737051792828684,-1.7774900398406375,-1.7812749003984063,-1.7850597609561754,-1.7888446215139442,-1.7926294820717132,-1.796414342629482,-1.800199203187251,-1.80398406374502,-1.8077689243027888,-1.8115537848605578,-1.8153386454183267,-1.8191235059760955,-1.8229083665338646,-1.8266932270916334,-1.8304780876494025,-1.8342629482071713,-1.8380478087649403,-1.8418326693227092,-1.845617529880478,-1.849402390438247,-1.853187250996016,-1.856972111553785,-1.8607569721115538,-1.8645418326693226,-1.8683266932270917,-1.8721115537848605,-1.8758964143426295,-1.8796812749003984,-1.8834661354581674,-1.8872509960159363,-1.891035856573705,-1.8948207171314742,-1.898605577689243,-1.902390438247012,-1.9061752988047809,-1.9099601593625497,-1.9137450199203188,-1.9175298804780876,-1.9213147410358566,-1.9250996015936255,-1.9288844621513945,-1.9326693227091634,-1.9364541832669322,-1.9402390438247012,-1.94402390438247,-1.9478087649402391,-1.951593625498008,-1.9553784860557768,-1.9591633466135459,-1.9629482071713147,-1.9667330677290837,-1.9705179282868526,-1.9743027888446214,-1.9780876494023905,-1.9818725099601593,-1.9856573705179283,-1.9894422310756972,-1.9932270916334662,-1.997011952191235,-2.000796812749004,-2.004581673306773,-2.008366533864542,-2.0121513944223106,-2.0159362549800797,-2.0197211155378487,-2.0235059760956173,-2.0272908366533864,-2.0310756972111554,-2.0348605577689245,-2.038645418326693,-2.042430278884462,-2.046215139442231,-2.05,-2.053784860557769,-2.057569721115538,-2.061354581673307,-2.0651394422310756,-2.0689243027888446,-2.0727091633466137,-2.0764940239043823,-2.0802788844621514,-2.0840637450199204,-2.087848605577689,-2.091633466135458,-2.095418326693227,-2.099203187250996,-2.102988047808765,-2.106772908366534,-2.110557768924303,-2.1143426294820715,-2.1181274900398406,-2.1219123505976096,-2.1256972111553787,-2.1294820717131473,-2.1332669322709163,-2.1370517928286854,-2.140836653386454,-2.144621513944223,-2.148406374501992,-2.152191235059761,-2.15597609561753,-2.159760956175299,-2.163545816733068,-2.1673306772908365,-2.1711155378486056,-2.1749003984063746,-2.1786852589641432,-2.1824701195219123,-2.1862549800796813,-2.1900398406374504,-2.193824701195219,-2.197609561752988,-2.201394422310757,-2.2051792828685257,-2.2089641434262948,-2.212749003984064,-2.216533864541833,-2.2203187250996015,-2.2241035856573705,-2.2278884462151396,-2.231673306772908,-2.2354581673306773,-2.2392430278884463,-2.243027888446215,-2.246812749003984,-2.250597609561753,-2.254382470119522,-2.2581673306772907,-2.2619521912350598,-2.265737051792829,-2.2695219123505974,-2.2733067729083665,-2.2770916334661355,-2.2808764940239046,-2.284661354581673,-2.2884462151394422,-2.2922310756972113,-2.29601593625498,-2.299800796812749,-2.303585657370518,-2.307370517928287,-2.3111553784860557,-2.3149402390438247,-2.318725099601594,-2.3225099601593624,-2.3262948207171315,-2.3300796812749005,-2.333864541832669,-2.337649402390438,-2.3414342629482072,-2.3452191235059763,-2.349003984063745,-2.352788844621514,-2.356573705179283,-2.3603585657370516,-2.3641434262948207,-2.3679282868525897,-2.3717131474103588,-2.3754980079681274,-2.3792828685258964,-2.3830677290836655,-2.386852589641434,-2.390637450199203,-2.394422310756972,-2.398207171314741,-2.40199203187251,-2.405776892430279,-2.409561752988048,-2.4133466135458166,-2.4171314741035856,-2.4209163346613547,-2.4247011952191233,-2.4284860557768924,-2.4322709163346614,-2.4360557768924305,-2.439840637450199,-2.443625498007968,-2.447410358565737,-2.451195219123506,-2.454980079681275,-2.458764940239044,-2.462549800796813,-2.4663346613545816,-2.4701195219123506,-2.4739043824701197,-2.4776892430278883,-2.4814741035856573,-2.4852589641434264,-2.489043824701195,-2.492828685258964,-2.496613545816733,-2.500398406374502,-2.504183266932271,-2.50796812749004,-2.511752988047809,-2.5155378486055775,-2.5193227091633466,-2.5231075697211156,-2.5268924302788847,-2.5306772908366533,-2.5344621513944223,-2.5382470119521914,-2.54203187250996,-2.545816733067729,-2.549601593625498,-2.553386454183267,-2.5571713147410358,-2.560956175298805,-2.564741035856574,-2.5685258964143425,-2.5723107569721115,-2.5760956175298806,-2.579880478087649,-2.5836653386454183,-2.5874501992031873,-2.5912350597609564,-2.595019920318725,-2.598804780876494,-2.602589641434263,-2.6063745019920317,-2.6101593625498007,-2.61394422310757,-2.617729083665339,-2.6215139442231075,-2.6252988047808765,-2.6290836653386456,-2.632868525896414,-2.6366533864541832,-2.6404382470119523,-2.644223107569721,-2.64800796812749,-2.651792828685259,-2.655577689243028,-2.6593625498007967,-2.6631474103585657,-2.666932270916335,-2.6707171314741034,-2.6745019920318724,-2.6782868525896415,-2.6820717131474106,-2.685856573705179,-2.689641434262948,-2.6934262948207173,-2.697211155378486,-2.700996015936255,-2.704780876494024,-2.708565737051793,-2.7123505976095617,-2.7161354581673307,-2.7199203187250998,-2.7237051792828684,-2.7274900398406374,-2.7312749003984065,-2.735059760956175,-2.738844621513944,-2.742629482071713,-2.7464143426294823,-2.750199203187251,-2.75398406374502,-2.757768924302789,-2.7615537848605576,-2.7653386454183266,-2.7691235059760957,-2.7729083665338647,-2.7766932270916334,-2.7804780876494024,-2.7842629482071715,-2.78804780876494,-2.791832669322709,-2.795617529880478,-2.799402390438247,-2.803187250996016,-2.806972111553785,-2.810756972111554,-2.8145418326693226,-2.8183266932270916,-2.8221115537848607,-2.8258964143426293,-2.8296812749003983,-2.8334661354581674,-2.8372509960159364,-2.841035856573705,-2.844820717131474,-2.848605577689243,-2.8523904382470118,-2.856175298804781,-2.85996015936255,-2.863745019920319,-2.8675298804780875,-2.8713147410358566,-2.8750996015936257,-2.8788844621513943,-2.8826693227091633,-2.8864541832669324,-2.890239043824701,-2.89402390438247,-2.897808764940239,-2.901593625498008,-2.9053784860557768,-2.909163346613546,-2.912948207171315,-2.9167330677290835,-2.9205179282868525,-2.9243027888446216,-2.9280876494023906,-2.9318725099601592,-2.9356573705179283,-2.9394422310756974,-2.943227091633466,-2.947011952191235,-2.950796812749004,-2.954581673306773,-2.9583665338645417,-2.962151394422311,-2.96593625498008,-2.9697211155378485,-2.9735059760956175,-2.9772908366533866,-2.981075697211155,-2.9848605577689242,-2.9886454183266933,-2.9924302788844623,-2.996215139442231,-3.0]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_positive.json new file mode 100644 index 000000000000..52d26effe418 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_positive.json @@ -0,0 +1 @@ +{"expected":[1.5222612188617113,1.504586603996554,1.4875757829269853,1.4711827314360777,1.4553660422356198,1.4400883274295309,1.4253157146233255,1.4110174196020666,1.397165382025739,1.3837339533089152,1.3706996279639225,1.3580408113409939,1.3457376180039984,1.3337716960170605,1.3221260732461817,1.3107850224467472,1.299733942447189,1.2889592531779241,1.27844830265359,1.268189284311477,1.258171163352654,1.2483836109342261,1.23881694522946,1.2294620785132346,1.2203104695484495,1.2113540806486411,1.2025853388762893,1.1939971009078294,1.185582621157269,1.177335522802342,1.1692497714017163,1.1613196508300776,1.1535397412909425,1.1459048991955825,1.1384102387211692,1.131051114882736,1.123823107972237,1.1167220092343302,1.1097438076627764,1.1028846778138675,1.096140968544315,1.0895091925906872,1.0829860169160574,1.0765682537570536,1.0702528523112094,1.0640368910104332,1.0579175703316916,1.0518922061007079,1.045958223248642,1.0401131499854857,1.0343546123572196,1.028680329156812,1.0230881071618,1.017575836673619,1.01214148733604,1.0067831042119981,1.0014988040999027,0.996286772072088,0.9911452582195268,0.9860725745882294,0.9810670922939403,0.9761272388028316,0.9712514953668497,0.966438394603295,0.9616865182089999,0.9569944948002216,0.9523609978700524,0.9477847438557462,0.9432644903089489,0.9387990341623247,0.9343872100865429,0.9300278889320407,0.9257199762503567,0.9214624108902181,0.9172541636638843,0.913094236079575,0.9089816591360902,0.904915492175996,0.9008948217939962,0.8969187607973309,0.8929864472152577,0.8890970433548595,0.8852497349006028,0.8814437300552372,0.877678258719779,0.8739525717104644,0.8702659400106908,0.8666176540560862,0.8630070230509628,0.859433374314514,0.8558960526552202,0.8523944197720077,0.8489278536808073,0.845495748165227,0.8420975122501315,0.838732569696995,0.8354003585199522,0.8321003305215402,0.8288319508471755,0.8255946975574674,0.8223880612175182,0.8192115445024044,0.8160646618180856,0.8129469389370146,0.8098579126477796,0.806797130418126,0.8037641500707564,0.8007585394713281,0.7977798762281019,0.7948277474027244,0.7919017492316563,0.7890014868577703,0.7861265740716873,0.7832766330624223,0.7804512941769463,0.777650195688278,0.774872983571753,0.7721193112891199,0.7693888395801399,0.7666812362613812,0.7639961760319074,0.7613333402855826,0.7586924169297257,0.7560731002098495,0.753475090540255,0.7508980943402339,0.7483418238756678,0.745805997105809,0.7432903375350367,0.7407945740694069,0.7383184408777962,0.7358616772574791,0.7334240275039592,0.7310052407848993,0.7286050710179959,0.726223276752647,0.723859621055281,0.7215138713982013,0.7191857995518269,0.7168751814802011,0.7145817972396494,0.7123054308804763,0.7100458703515905,0.7078029074079553,0.7055763375207622,0.7033659597902362,0.7011715768609779,0.6989929948397534,0.6968300232156529,0.6946824747825285,0.6925501655636415,0.6904329147384397,0.6883305445713936,0.686242880342823,0.6841697502816474,0.6821109854999962,0.680066419929618,0.6780358902600289,0.6760192358783447,0.6740162988107384,0.6720269236654789,0.6700509575774879,0.6680882501543787,0.6661386534239223,0.664202021782897,0.662278211947281,0.6603670829037412,0.6584684958623832,0.6565823142107182,0.6547084034688138,0.6528466312455901,0.6509968671962252,0.6491589829806407,0.6473328522230288,0.6455183504723947,0.6437153551640811,0.6419237455822467,0.6401434028232714,0.638374209760057,0.636616051007203,0.6348688128870277,0.6331323833964104,0.6314066521744348,0.6296915104708036,0.6279868511150107,0.6262925684862418,0.624608558483988,0.6229347184993499,0.6212709473870122,0.619617145437874,0.6179732143523102,0.6163390572140529,0.6147145784646723,0.6130996838786391,0.6114942805389592,0.6098982768133553,0.6083115823309908,0.6067341079597129,0.6051657657838074,0.6036064690822471,0.6020561323074223,0.6005146710643429,0.5989820020902936,0.5974580432349389,0.5959427134408578,0.5944359327245021,0.5929376221575666,0.591447703848758,0.589966100925957,0.5884927375187573,0.5870275387413794,0.5855704306759414,0.5841213403560853,0.5826801957509458,0.5812469257494518,0.5798214601449581,0.5784037296201924,0.5769936657325129,0.5755912008994714,0.5741962683846682,0.5728088022838976,0.571428737511574,0.5700560097874312,0.5686905556234922,0.5673323123112965,0.5659812179093863,0.5646372112310383,0.5633002318322411,0.5619702199999086,0.5606471167403256,0.5593308637678198,0.5580214034936534,0.5567186790151332,0.5554226341049291,0.5541332132005997,0.5528503613943196,0.5515740244228013,0.5503041486574124,0.5490406810944769,0.5477835693457634,0.5465327616291508,0.5452882067594687,0.5440498541395113,0.5428176537512175,0.5415915561470147,0.5403715124413231,0.5391574743022175,0.5379493939432407,0.5367472241153685,0.5355509180991189,0.5343604296968083,0.5331757132249442,0.5319967235067573,0.5308234158648681,0.5296557461140837,0.5284936705543233,0.5273371459636709,0.5261861295915498,0.5250405791520187,0.5239004528171849,0.5227657092107335,0.5216363074015704,0.5205122068975743,0.5193933676394598,0.5182797499947439,0.5171713147518193,0.5160680231141268,0.5149698366944296,0.5138767175091854,0.5127886279730118,0.5117055308932492,0.5106273894646124,0.5095541672639345,0.5084858282449976,0.5074223367334505,0.5063636574218122,0.5053097553645565,0.5042605959732793,0.5032161450119463,0.5021763685922174,0.5011412331688482,0.5001107055351686,0.4990847528186323,0.49806334247644046,0.4970464422912359,0.4960340203668667,0.49502604512421744,0.49402248529710896,0.49302330992826193,0.4920284883653261,0.49103799025697104,0.4900517855490416,0.48906984448077095,0.4880921375810552,0.48711863566478664,0.4861493098292431,0.4851841314505345,0.48422307218010474,0.48326610394128733,0.48231319892591507,0.48136432959098097,0.48041946865535134,0.47947858909652896,0.4785416641474657,0.4776086672934234,0.47667957226888286,0.4757543530545002,0.4748329838741066,0.47391543919175716,0.47300169370882084,0.4720917223611145,0.47118550031608153,0.47028300297001047,0.4693842059452955,0.46848908508773746,0.4675976164638854,0.4667097763584157,0.46582554127155107,0.4649448879165162,0.46406779321703173,0.4631942343048432,0.46232418851728674,0.4614576333948899,0.46059454667900696,0.45973490630948777,0.45887869042238094,0.45802587734766914,0.4571764456070364,0.45633037391166853,0.45548764116008295,0.4546482264359907,0.4538121090061874,0.45297926831847485,0.45214968399961114,0.4513233358532893,0.45050020385814504,0.44968026816579115,0.4488635090988796,0.4480499071491907,0.4472394429757481,0.4464320974029601,0.44562785141878586,0.44482668617292814,0.4440285829750491,0.4432335232930106,0.44244148875113953,0.44165246112851575,0.4408664223572831,0.4400833545209831,0.439303239852912,0.43852606073449824,0.437751799693703,0.43698043940344145,0.43621196268002504,0.4354463524816246,0.43468359190675265,0.4339236641927684,0.4331665527143994,0.4324122409822842,0.43166071264153405,0.4309119514703128,0.4301659413784362,0.4294226664059878,0.4286821107219546,0.42794425862287955,0.42720909453153044,0.4264766029955883,0.42574676868635003,0.42501957639744914,0.4242950110435926,0.4235730576593135,0.42285370139774003,0.4221369275293787,0.4214227214409153,0.4207110686340288,0.42000195472422097,0.41929536543966117,0.4185912866200448,0.41788970421546645,0.41719060428530674,0.41649397299713387,0.4157997966256173,0.4151080615514561,0.4144187542603204,0.413731861341805,0.4130473694883972,0.41236526549445535,0.41168553625520227,0.41100816876572893,0.41033315012001087,0.4096604675099374,0.4089901082243513,0.40832205964810064,0.4076563092611023,0.40699284463741653,0.4063316534443322,0.4056727234414634,0.40501604247985734,0.40436159850111175,0.4037093795365033,0.40305937370612677,0.4024115692180438,0.40176595436744195,0.4011225175358033,0.4004812471900837,0.39984213188190076,0.39920516024673136,0.39857032100311923,0.39793760295189134,0.39730699497538285,0.3966784860366722,0.3960520651788241,0.3954277215241415,0.3948054442734263,0.3941852227052488,0.3935670461752247,0.3929509041153011,0.39233678603305056,0.39172468151097284,0.39111458020580514,0.39050647184783915,0.3899003462402472,0.389296193258415,0.38869400284928224,0.3880937650306902,0.38749546989073774,0.3868991075871432,0.38630466834661403,0.38571214246422414,0.3851215203027965,0.38453279229229376,0.3839459489292161,0.3833609807760043,0.38277787846045,0.3821966326751136,0.3816172341767463,0.38103967378572035,0.38046394238546466,0.3798900309219069,0.37931793040292144,0.3787476318977833,0.3781791265366284,0.37761240550991904,0.3770474600679155,0.3764842815201535,0.37592286123492685,0.37536319063877616,0.3748052612159821,0.3742490645080656,0.37369459211329165,0.37314183568617965,0.3725907869370185,0.37204143763138703,0.37149377958967866,0.3709478046866322,0.3704035048508673,0.36986087206442436,0.36931989836230933,0.3687805758320439,0.3682428966132196,0.367706852897057,0.3671724369259695,0.3666396409931313,0.36610845744205067,0.36557887866614586,0.3650508971083283,0.3645245052605866,0.36399969566357804,0.3634764609062219,0.36295479362529837,0.3624346865050508,0.3619161322767923,0.36139912371851646,0.3608836536545119,0.3603697149549805,0.3598573005356597,0.35934640335744894,0.3588370164260394,0.3583291327915473,0.35782274554815174,0.35731784783373527,0.35681443282952846,0.3563124937597581,0.3558120238912986,0.3553130165333275,0.354815465036983,0.35431936279502707,0.3538247032415097,0.3533314798514377,0.3528396861404467,0.35234931566447575,0.35186036201944604,0.3513728188409417,0.35088667980389465,0.3504019386222722,0.3499185890487672,0.3494366248744922,0.34895603992867563,0.34847682807836167,0.3479989832281121,0.34752249931971263,0.34704737033187966,0.34657359027997264],"x":[1.1,1.103784860557769,1.1075697211155378,1.1113545816733068,1.1151394422310756,1.1189243027888447,1.1227091633466135,1.1264940239043826,1.1302788844621514,1.1340637450199202,1.1378486055776893,1.1416334661354581,1.1454183266932272,1.149203187250996,1.1529880478087648,1.156772908366534,1.1605577689243027,1.1643426294820718,1.1681274900398406,1.1719123505976095,1.1756972111553785,1.1794820717131473,1.1832669322709164,1.1870517928286852,1.1908366533864543,1.1946215139442231,1.198406374501992,1.202191235059761,1.2059760956175298,1.2097609561752989,1.2135458167330677,1.2173306772908365,1.2211155378486056,1.2249003984063744,1.2286852589641435,1.2324701195219123,1.2362549800796814,1.2400398406374502,1.243824701195219,1.247609561752988,1.251394422310757,1.255179282868526,1.2589641434262948,1.2627490039840636,1.2665338645418327,1.2703187250996015,1.2741035856573706,1.2778884462151394,1.2816733067729085,1.2854581673306773,1.2892430278884461,1.2930278884462152,1.296812749003984,1.300597609561753,1.304382470119522,1.3081673306772907,1.3119521912350598,1.3157370517928286,1.3195219123505977,1.3233067729083665,1.3270916334661356,1.3308764940239044,1.3346613545816732,1.3384462151394423,1.3422310756972111,1.3460159362549802,1.349800796812749,1.3535856573705178,1.357370517928287,1.3611553784860557,1.3649402390438248,1.3687250996015936,1.3725099601593624,1.3762948207171315,1.3800796812749003,1.3838645418326694,1.3876494023904382,1.3914342629482073,1.395219123505976,1.399003984063745,1.402788844621514,1.4065737051792828,1.4103585657370519,1.4141434262948207,1.4179282868525895,1.4217131474103586,1.4254980079681274,1.4292828685258965,1.4330677290836653,1.4368525896414344,1.4406374501992032,1.444422310756972,1.448207171314741,1.45199203187251,1.455776892430279,1.4595617529880478,1.4633466135458166,1.4671314741035857,1.4709163346613545,1.4747011952191236,1.4784860557768924,1.4822709163346615,1.4860557768924303,1.4898406374501991,1.4936254980079682,1.497410358565737,1.501195219123506,1.504980079681275,1.5087649402390437,1.5125498007968128,1.5163346613545816,1.5201195219123507,1.5239043824701195,1.5276892430278886,1.5314741035856574,1.5352589641434262,1.5390438247011953,1.542828685258964,1.5466135458167332,1.550398406374502,1.5541832669322708,1.5579681274900399,1.5617529880478087,1.5655378486055778,1.5693227091633466,1.5731075697211154,1.5768924302788845,1.5806772908366533,1.5844621513944224,1.5882470119521912,1.5920318725099603,1.595816733067729,1.599601593625498,1.603386454183267,1.6071713147410358,1.6109561752988049,1.6147410358565737,1.6185258964143425,1.6223107569721116,1.6260956175298804,1.6298804780876495,1.6336653386454183,1.6374501992031874,1.6412350597609562,1.645019920318725,1.648804780876494,1.652589641434263,1.656374501992032,1.6601593625498008,1.6639442231075696,1.6677290836653387,1.6715139442231075,1.6752988047808766,1.6790836653386454,1.6828685258964144,1.6866533864541833,1.690438247011952,1.6942231075697212,1.69800796812749,1.701792828685259,1.7055776892430279,1.7093625498007967,1.7131474103585658,1.7169322709163346,1.7207171314741037,1.7245019920318725,1.7282868525896415,1.7320717131474104,1.7358565737051792,1.7396414342629483,1.743426294820717,1.7472111553784861,1.750996015936255,1.7547808764940238,1.7585657370517929,1.7623505976095617,1.7661354581673308,1.7699203187250996,1.7737051792828684,1.7774900398406375,1.7812749003984063,1.7850597609561754,1.7888446215139442,1.7926294820717132,1.796414342629482,1.800199203187251,1.80398406374502,1.8077689243027888,1.8115537848605578,1.8153386454183267,1.8191235059760955,1.8229083665338646,1.8266932270916334,1.8304780876494025,1.8342629482071713,1.8380478087649403,1.8418326693227092,1.845617529880478,1.849402390438247,1.853187250996016,1.856972111553785,1.8607569721115538,1.8645418326693226,1.8683266932270917,1.8721115537848605,1.8758964143426295,1.8796812749003984,1.8834661354581674,1.8872509960159363,1.891035856573705,1.8948207171314742,1.898605577689243,1.902390438247012,1.9061752988047809,1.9099601593625497,1.9137450199203188,1.9175298804780876,1.9213147410358566,1.9250996015936255,1.9288844621513945,1.9326693227091634,1.9364541832669322,1.9402390438247012,1.94402390438247,1.9478087649402391,1.951593625498008,1.9553784860557768,1.9591633466135459,1.9629482071713147,1.9667330677290837,1.9705179282868526,1.9743027888446214,1.9780876494023905,1.9818725099601593,1.9856573705179283,1.9894422310756972,1.9932270916334662,1.997011952191235,2.000796812749004,2.004581673306773,2.008366533864542,2.0121513944223106,2.0159362549800797,2.0197211155378487,2.0235059760956173,2.0272908366533864,2.0310756972111554,2.0348605577689245,2.038645418326693,2.042430278884462,2.046215139442231,2.05,2.053784860557769,2.057569721115538,2.061354581673307,2.0651394422310756,2.0689243027888446,2.0727091633466137,2.0764940239043823,2.0802788844621514,2.0840637450199204,2.087848605577689,2.091633466135458,2.095418326693227,2.099203187250996,2.102988047808765,2.106772908366534,2.110557768924303,2.1143426294820715,2.1181274900398406,2.1219123505976096,2.1256972111553787,2.1294820717131473,2.1332669322709163,2.1370517928286854,2.140836653386454,2.144621513944223,2.148406374501992,2.152191235059761,2.15597609561753,2.159760956175299,2.163545816733068,2.1673306772908365,2.1711155378486056,2.1749003984063746,2.1786852589641432,2.1824701195219123,2.1862549800796813,2.1900398406374504,2.193824701195219,2.197609561752988,2.201394422310757,2.2051792828685257,2.2089641434262948,2.212749003984064,2.216533864541833,2.2203187250996015,2.2241035856573705,2.2278884462151396,2.231673306772908,2.2354581673306773,2.2392430278884463,2.243027888446215,2.246812749003984,2.250597609561753,2.254382470119522,2.2581673306772907,2.2619521912350598,2.265737051792829,2.2695219123505974,2.2733067729083665,2.2770916334661355,2.2808764940239046,2.284661354581673,2.2884462151394422,2.2922310756972113,2.29601593625498,2.299800796812749,2.303585657370518,2.307370517928287,2.3111553784860557,2.3149402390438247,2.318725099601594,2.3225099601593624,2.3262948207171315,2.3300796812749005,2.333864541832669,2.337649402390438,2.3414342629482072,2.3452191235059763,2.349003984063745,2.352788844621514,2.356573705179283,2.3603585657370516,2.3641434262948207,2.3679282868525897,2.3717131474103588,2.3754980079681274,2.3792828685258964,2.3830677290836655,2.386852589641434,2.390637450199203,2.394422310756972,2.398207171314741,2.40199203187251,2.405776892430279,2.409561752988048,2.4133466135458166,2.4171314741035856,2.4209163346613547,2.4247011952191233,2.4284860557768924,2.4322709163346614,2.4360557768924305,2.439840637450199,2.443625498007968,2.447410358565737,2.451195219123506,2.454980079681275,2.458764940239044,2.462549800796813,2.4663346613545816,2.4701195219123506,2.4739043824701197,2.4776892430278883,2.4814741035856573,2.4852589641434264,2.489043824701195,2.492828685258964,2.496613545816733,2.500398406374502,2.504183266932271,2.50796812749004,2.511752988047809,2.5155378486055775,2.5193227091633466,2.5231075697211156,2.5268924302788847,2.5306772908366533,2.5344621513944223,2.5382470119521914,2.54203187250996,2.545816733067729,2.549601593625498,2.553386454183267,2.5571713147410358,2.560956175298805,2.564741035856574,2.5685258964143425,2.5723107569721115,2.5760956175298806,2.579880478087649,2.5836653386454183,2.5874501992031873,2.5912350597609564,2.595019920318725,2.598804780876494,2.602589641434263,2.6063745019920317,2.6101593625498007,2.61394422310757,2.617729083665339,2.6215139442231075,2.6252988047808765,2.6290836653386456,2.632868525896414,2.6366533864541832,2.6404382470119523,2.644223107569721,2.64800796812749,2.651792828685259,2.655577689243028,2.6593625498007967,2.6631474103585657,2.666932270916335,2.6707171314741034,2.6745019920318724,2.6782868525896415,2.6820717131474106,2.685856573705179,2.689641434262948,2.6934262948207173,2.697211155378486,2.700996015936255,2.704780876494024,2.708565737051793,2.7123505976095617,2.7161354581673307,2.7199203187250998,2.7237051792828684,2.7274900398406374,2.7312749003984065,2.735059760956175,2.738844621513944,2.742629482071713,2.7464143426294823,2.750199203187251,2.75398406374502,2.757768924302789,2.7615537848605576,2.7653386454183266,2.7691235059760957,2.7729083665338647,2.7766932270916334,2.7804780876494024,2.7842629482071715,2.78804780876494,2.791832669322709,2.795617529880478,2.799402390438247,2.803187250996016,2.806972111553785,2.810756972111554,2.8145418326693226,2.8183266932270916,2.8221115537848607,2.8258964143426293,2.8296812749003983,2.8334661354581674,2.8372509960159364,2.841035856573705,2.844820717131474,2.848605577689243,2.8523904382470118,2.856175298804781,2.85996015936255,2.863745019920319,2.8675298804780875,2.8713147410358566,2.8750996015936257,2.8788844621513943,2.8826693227091633,2.8864541832669324,2.890239043824701,2.89402390438247,2.897808764940239,2.901593625498008,2.9053784860557768,2.909163346613546,2.912948207171315,2.9167330677290835,2.9205179282868525,2.9243027888446216,2.9280876494023906,2.9318725099601592,2.9356573705179283,2.9394422310756974,2.943227091633466,2.947011952191235,2.950796812749004,2.954581673306773,2.9583665338645417,2.962151394422311,2.96593625498008,2.9697211155378485,2.9735059760956175,2.9772908366533866,2.981075697211155,2.9848605577689242,2.9886454183266933,2.9924302788844623,2.996215139442231,3.0]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl new file mode 100755 index 000000000000..55ee2358a2ac --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl @@ -0,0 +1,92 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2018 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( x, name ) + +Generate fixture data and write to file. + +# Arguments + +* `x`: domain +* `name::AbstractString`: output filename + +# Examples + +``` julia +julia> x = linspace( -1000.0, 1000.0, 2001 ); +julia> gen( x, \"data.json\" ); +``` +""" +function gen( x, name ) + y = acoth( 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) ); + close( outfile ); +end + +# Get the filename: +file = @__FILE__; + +# Extract the directory in which this file resides: +dir = dirname( file ); + +# Positive medium values: +x = linspace( 1.1, 3.0, 503 ); +gen( x, "medium_positive.json" ); + +# Large positive values: +x = linspace( 3.0, 28.0, 503 ); +gen( x, "large_positive.json" ); + +# Larger positive values: +x = linspace( 28.0, 100.0, 503 ); +gen( x, "larger_positive.json" ); + +# Huge positive values: +x = linspace( 1.0e300, 1.0e308, 1003 ); +gen( x, "huge_positive.json" ); + +# Negative medium values: +x = linspace( -1.1, -3.0, 503 ); +gen( x, "medium_negative.json" ); + +# Large negative values: +x = linspace( -3.0, -28.0, 503 ); +gen( x, "large_negative.json" ); + +# Larger negative values: +x = linspace( -28.0, -100.0, 503 ); +gen( x, "larger_negative.json" ); + +# Huge negative values: +x = linspace( -1.0e300, -1.0e308, 1003 ); +gen( x, "huge_negative.json" ); diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/test.js b/lib/node_modules/@stdlib/math/base/special/acot/test/test.js new file mode 100644 index 000000000000..1e423bcb3403 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/test.js @@ -0,0 +1,250 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2018 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 isnan = require( '@stdlib/math/base/assert/is-nan' ); +var randu = require( '@stdlib/random/base/randu' ); +var EPS = require( '@stdlib/constants/math/float64-eps' ); +var abs = require( '@stdlib/math/base/special/abs' ); +var acoth = require( './../lib' ); + + +// FIXTURES // + +var largerPositive = require( './fixtures/julia/larger_positive.json' ); +var largePositive = require( './fixtures/julia/large_positive.json' ); +var mediumPositive = require( './fixtures/julia/medium_positive.json' ); +var hugePositive = require( './fixtures/julia/huge_positive.json' ); +var largerNegative = require( './fixtures/julia/larger_negative.json' ); +var largeNegative = require( './fixtures/julia/large_negative.json' ); +var mediumNegative = require( './fixtures/julia/medium_negative.json' ); +var hugeNegative = require( './fixtures/julia/huge_negative.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.true( typeof acoth, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function computes the inverse hyperbolic cotangent for medium positive values', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = mediumPositive.x; + expected = mediumPositive.expected; + for ( i = 0; i < x.length; i++ ) { + y = acoth( x[ i ] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); + } else { + delta = abs( y - expected[i] ); + tol = 1.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the inverse hyperbolic cotangent for medium negative values', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = mediumNegative.x; + expected = mediumNegative.expected; + for ( i = 0; i < x.length; i++ ) { + y = acoth( x[ i ] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); + } else { + delta = abs( y - expected[i] ); + tol = 1.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the inverse hyperbolic cotangent for large positive values', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = largePositive.x; + expected = largePositive.expected; + for ( i = 0; i < x.length; i++ ) { + y = acoth( x[ i ] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); + } else { + delta = abs( y - expected[i] ); + tol = 1.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the inverse hyperbolic cotangent for large negative values', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = largeNegative.x; + expected = largeNegative.expected; + for ( i = 0; i < x.length; i++ ) { + y = acoth( x[ i ] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); + } else { + delta = abs( y - expected[i] ); + tol = 1.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the inverse hyperbolic cotangent for larger positive values', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = largerPositive.x; + expected = largerPositive.expected; + for ( i = 0; i < x.length; i++ ) { + y = acoth( x[ i ] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); + } else { + delta = abs( y - expected[i] ); + tol = 1.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the inverse hyperbolic cotangent for larger negative values', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = largerNegative.x; + expected = largerNegative.expected; + for ( i = 0; i < x.length; i++ ) { + y = acoth( x[ i ] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); + } else { + delta = abs( y - expected[i] ); + tol = 1.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the inverse hyperbolic cotangent for huge positive values', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = hugePositive.x; + expected = hugePositive.expected; + for ( i = 0; i < x.length; i++ ) { + y = acoth( x[ i ] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); + } else { + delta = abs( y - expected[i] ); + tol = 1.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the inverse hyperbolic cotangent for huge negative values', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = hugeNegative.x; + expected = hugeNegative.expected; + for ( i = 0; i < x.length; i++ ) { + y = acoth( x[ i ] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); + } else { + delta = abs( y - expected[i] ); + tol = 1.0 * EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { + var v = acoth( NaN ); + t.equal( isnan( v ), true, 'returns NaN' ); + t.end(); +}); + +tape( 'the function returns `NaN` if provided a value on the open interval (-1,1)', function test( t ) { + var v; + var i; + + for ( i = 0; i < 1e3; i++ ) { + v = (randu() * 0.99) - 0.99; + t.equal( isnan( acoth( v ) ), true, 'returns NaN when provided '+v ); + } + t.end(); +}); From 8c99c24f36f598ef04735b412b0b0a2b488ce115 Mon Sep 17 00:00:00 2001 From: JithinKS97 Date: Sun, 21 Jun 2020 09:33:20 +0530 Subject: [PATCH 02/10] changed copyright year to 2020 --- lib/node_modules/@stdlib/math/base/special/acot/README.md | 2 +- .../@stdlib/math/base/special/acot/benchmark/benchmark.js | 2 +- .../@stdlib/math/base/special/acot/benchmark/c/Makefile | 2 +- .../@stdlib/math/base/special/acot/benchmark/c/benchmark.c | 2 +- .../@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl | 2 +- .../math/base/special/acot/benchmark/python/benchmark.py | 2 +- .../@stdlib/math/base/special/acot/benchmark/r/benchmark.R | 2 +- .../@stdlib/math/base/special/acot/docs/types/index.d.ts | 2 +- .../@stdlib/math/base/special/acot/docs/types/test.ts | 2 +- .../@stdlib/math/base/special/acot/examples/index.js | 2 +- lib/node_modules/@stdlib/math/base/special/acot/lib/index.js | 2 +- lib/node_modules/@stdlib/math/base/special/acot/lib/main.js | 2 +- .../math/base/special/acot/test/fixtures/julia/runner.jl | 2 +- lib/node_modules/@stdlib/math/base/special/acot/test/test.js | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/README.md b/lib/node_modules/@stdlib/math/base/special/acot/README.md index 745d55f36a8f..5397efe3bf2e 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acot/README.md @@ -2,7 +2,7 @@ @license Apache-2.0 -Copyright (c) 2018 The Stdlib Authors. +Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js index f5dda57ebaf8..6f58e3d61f1f 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/Makefile b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/Makefile index e4542b1e66e9..9e90af0034a1 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/Makefile +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/Makefile @@ -1,7 +1,7 @@ #/ # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c index 3c3e445f598f..72e910f8153b 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl index ca08370466e6..9bdab609c104 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py index f0d9271a1ce6..5014ca678c83 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R index 05ecc4415628..138d84f022f6 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts index 617e883bc5d0..71c8d3bad561 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts index e158ec94bd9a..c5a81d31982c 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts +++ b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts @@ -1,7 +1,7 @@ /* * @license Apache-2.0 * -* Copyright (c) 2019 The Stdlib Authors. +* Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js b/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js index d5534f5498fb..fc2a5e8eb981 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js b/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js index c03fbac2a438..a62e55ffc1e1 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js b/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js index 6f2befa16963..8c97b1d830ab 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl index 55ee2358a2ac..55671a73566d 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl @@ -2,7 +2,7 @@ # # @license Apache-2.0 # -# Copyright (c) 2018 The Stdlib Authors. +# Copyright (c) 2020 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. diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/test.js b/lib/node_modules/@stdlib/math/base/special/acot/test/test.js index 1e423bcb3403..29dda52b976f 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/test.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2018 The Stdlib Authors. +* Copyright (c) 2020 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. From da210db2004f9e7b78d8e2a18475571eea4afbc3 Mon Sep 17 00:00:00 2001 From: JithinKS97 Date: Sun, 21 Jun 2020 10:40:31 +0530 Subject: [PATCH 03/10] changed acoth to acot in test --- .../math/base/special/acot/lib/main.js | 35 ++++++++++--------- .../math/base/special/acot/package.json | 4 +-- .../acot/test/fixtures/julia/runner.jl | 2 +- 3 files changed, 22 insertions(+), 19 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js b/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js index 8c97b1d830ab..bb14eca24ef6 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js @@ -20,42 +20,45 @@ // MODULES // -var atanh = require( '@stdlib/math/base/special/atanh' ); +var atan = require( '@stdlib/math/base/special/atan' ); // MAIN // /** -* Computes the inverse hyperbolic cotangent of a number. +* Computes the inverse cotangent of a number. * * @param {number} x - input value -* @returns {number} inverse hyperbolic cotangent (in radians) +* @returns {number} inverse cotangent (in radians) * * @example -* var v = acoth( 2.0 ); -* // returns ~0.5493 +* var v = acot( 2.0 ); +* // returns ~0.4636 * * @example -* var v = acoth( 0.0 ); -* // returns NaN +* var v = acot( 0.0 ); +* // returns ~1.5708 * * @example -* var v = acoth( 0.5 ); -* // returns NaN +* var v = acot( 0.5 ); +* // returns ~1.1071 * * @example -* var v = acoth( 1.0 ); -* // returns Infinity +* var v = acot( 1.0 ); +* // returns ~0.7854 * * @example -* var v = acoth( NaN ); +* var v = acot( NaN ); * // returns NaN +* +* @example +* var v = acot(Infinity) +* // returns 0 */ -function acoth( x ) { - return atanh( 1.0/x ); +function acot( x ) { + return atan( 1.0/x ); } - // EXPORTS // -module.exports = acoth; +module.exports = acot; \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/package.json b/lib/node_modules/@stdlib/math/base/special/acot/package.json index 0972991e1d0d..283ad953aa89 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/package.json +++ b/lib/node_modules/@stdlib/math/base/special/acot/package.json @@ -1,7 +1,7 @@ { - "name": "@stdlib/math/base/special/acoth", + "name": "@stdlib/math/base/special/acot", "version": "0.0.0", - "description": "Compute the inverse hyperbolic cotangent.", + "description": "Compute the inverse cotangent.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl index 55671a73566d..ec0511782b24 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl @@ -36,7 +36,7 @@ julia> gen( x, \"data.json\" ); ``` """ function gen( x, name ) - y = acoth( x ); + y = acot( x ); # Store data to be written to file as a collection: data = Dict([ From 458456394a5afd0b2d279890f2cc98ea063c5243 Mon Sep 17 00:00:00 2001 From: JithinKS97 Date: Tue, 23 Jun 2020 12:14:51 +0530 Subject: [PATCH 04/10] added fixtures with julia 1 --- .../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 +- .../acot/test/fixtures/julia/runner.jl | 33 ++++++++++--------- .../math/base/special/acot/test/test.js | 24 +++++++------- 10 files changed, 38 insertions(+), 35 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_negative.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_negative.json index f3326077a5c5..be9e5f691395 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_negative.json @@ -1 +1 @@ -{"expected":[-1.0e-300,-1.0019899700803996e-305,-5.00997495012525e-306,-3.3399888778370363e-306,-2.5049937500405933e-306,-2.003996004031968e-306,-1.6699972278046017e-306,-1.4314265367579942e-306,-1.2524984437706837e-306,-1.113332104956911e-306,-1.0019990060169862e-306,-9.109082702635492e-307,-8.349993111255683e-307,-7.707686443921621e-307,-7.157137806248462e-307,-6.679995604562892e-307,-6.2624961407367526e-307,-5.894114231939694e-307,-5.566663623557219e-307,-5.2736814820900544e-307,-5.009997540091208e-307,-4.7714263424908375e-307,-4.554543425703383e-307,-4.3565198847682755e-307,-4.174998298688193e-307,-4.007998433674212e-307,-3.853844707172141e-307,-3.711109770988138e-307,-3.578570183740229e-307,-3.4551712545235752e-307,-3.3399989178403507e-307,-3.232257052089807e-307,-3.1312490508401315e-307,-3.0363627447771213e-307,-2.947057984484668e-307,-2.8628563518908304e-307,-2.7833325864724224e-307,-2.708107401804421e-307,-2.6368414363381198e-307,-2.5692301348285587e-307,-2.504999397547645e-307,-2.4439018661976355e-307,-2.385713740408288e-307,-2.330232038443599e-307,-2.277272231448455e-307,-2.2266661931289897e-307,-2.1782604168658787e-307,-2.131914460430147e-307,-2.0874995851094575e-307,-2.044897561471964e-307,-2.0039996184384724e-307,-1.964705515993148e-307,-1.9269227248891176e-307,-1.8905656992175756e-307,-1.855555229802526e-307,-1.8218178681342688e-307,-1.7892854120242857e-307,-1.7578944454017103e-307,-1.7275859257170491e-307,-1.698304813304841e-307,-1.6699997378100412e-307,-1.6426226974249252e-307,-1.616128787232087e-307,-1.5904759534195363e-307,-1.5656247705381197e-307,-1.5415382393197954e-307,-1.5181816028760636e-307,-1.4955221793562331e-307,-1.473529209371135e-307,-1.4521737166843367e-307,-1.4314283808441068e-307,-1.4112674205788777e-307,-1.3916664869097454e-307,-1.372602565048249e-307,-1.3540538842483777e-307,-1.3359998348704203e-307,-1.3184208919924018e-307,-1.301298544973876e-307,-1.284615232437888e-307,-1.2683542821910123e-307,-1.2524998556493915e-307,-1.2370368963813603e-307,-1.2219510824152443e-307,-1.207228781994789e-307,-1.1928570124949122e-307,-1.1788234022375224e-307,-1.165116154971349e-307,-1.1517240168014396e-307,-1.1386362453734627e-307,-1.1258425811354745e-307,-1.113333220515567e-307,-1.101098790868022e-307,-1.0891303270534132e-307,-1.077419249529667e-307,-1.0659573438415672e-307,-1.0547367414056605e-307,-1.043749901496103e-307,-1.0329895943447855e-307,-1.0224488852761436e-307,-1.0121211198034978e-307,-1.0019999096196082e-307,-9.920791194194766e-308,-9.823528544982776e-308,-9.72815449071739e-308,-9.634614552703473e-308,-9.542856327624561e-308,-9.452829389647628e-308,-9.36448519801736e-308,-9.277777009784014e-308,-9.192659797335304e-308,-9.109090170426505e-308,-9.027026302425184e-308,-8.946427860507073e-308,-8.867255939558361e-308,-8.789472999556839e-308,-8.713042806220088e-308,-8.637930374723593e-308,-8.564101916305111e-308,-8.491524787584075e-308,-8.420167442436314e-308,-8.349999386275046e-308,-8.280991132598911e-308,-8.213114161677011e-308,-8.146340881249297e-308,-8.080644589128552e-308,-8.015999437597481e-308,-7.952380399501172e-308,-7.889763235941509e-308,-7.828124465485877e-308,-7.76744133480804e-308,-7.707691790684059e-308,-7.648854453270821e-308,-7.590908590599206e-308,-7.533834094217909e-308,-7.477611455927855e-308,-7.422221745550648e-308,-7.367646589677798e-308,-7.31386815135066e-308,-7.260869110623848e-308,-7.208632645967626e-308,-7.157142416467375e-308,-7.106382544780471e-308,-7.056337600813356e-308,-7.006992586083451e-308,-6.958332918732664e-308,-6.910344419161023e-308,-6.863013296250727e-308,-6.816326134152458e-308,-6.7702698796074e-308,-6.724831829779762e-308,-6.679999620576021e-308,-6.635761215428291e-308,-6.59210489452045e-308,-6.549019244436774e-308,-6.506493148213884e-308,-6.464515775777751e-308,-6.423076574748541e-308,-6.382165261596838e-308,-6.341771813135733e-308,-6.301886458333944e-308,-6.262499670435954e-308,-6.223602159375813e-308,-6.185184864471896e-308,-6.147238947390584e-308,-6.109755785367356e-308,-6.072726964674396e-308,-6.0361442743243e-308,-5.999999700000014e-308,-5.964285418201545e-308,-5.928993790600483e-308,-5.894117358593786e-308,-5.859648838048644e-308,-5.825581114230679e-308,-5.79190723690803e-308,-5.758620415624269e-308,-5.7257140151334e-308,-5.693181550990457e-308,-5.661016685291594e-308,-5.629213222557771e-308,-5.597765105756387e-308,-5.566666412455567e-308,-5.535911351105899e-308,-5.5054942574447635e-308,-5.475409591018554e-308,-5.445651931818299e-308,-5.416215977024408e-308,-5.38709653785641e-308,-5.358288536523788e-308,-5.329787003274116e-308,-5.301587073534906e-308,-5.273683985145715e-308,-5.24607307567721e-308,-5.218749779833993e-308,-5.191709626938183e-308,-5.164948238490815e-308,-5.138461325808293e-308,-5.112244687731162e-308,-5.086294208402699e-308,-5.060605855114792e-308,-5.03517567621879e-308,-5.009999799099008e-308,-4.985074428206736e-308,-4.960395843152641e-308,-4.935960396855549e-308,-4.911764513745683e-308,-4.887804688020471e-308,-4.86407748195118e-308,-4.840579524238613e-308,-4.817307508416242e-308,-4.794258191299199e-308,-4.771428391477558e-308,-4.748814987852481e-308,-4.726414918213783e-308,-4.704225177857575e-308,-4.682242818242647e-308,-4.660464945684376e-308,-4.638888720084883e-308,-4.617511353698322e-308,-4.596330109930147e-308,-4.575342302169268e-308,-4.554545292652072e-308,-4.533936491357268e-308,-4.513513354930611e-308,-4.493273385638567e-308,-4.473214130349974e-308,-4.453333179544894e-308,-4.433628166349759e-308,-4.414096765598018e-308,-4.3947366929155173e-308,-4.375545703829833e-308,-4.3565215929028397e-308,-4.33766219288582e-308,-4.318965373896408e-308,-4.30042904261674e-308,-4.2820511415121674e-308,-4.263829648069901e-308,-4.245762574057028e-308,-4.2278479647973124e-308,-4.2100838984662143e-308,-4.1924684854036216e-308,-4.1749998674437533e-308,-4.157676217261759e-308,-4.140495737736498e-308,-4.1234566613290697e-308,-4.106557249476624e-308,-4.089795792001003e-308,-4.0731706065318306e-308,-4.056680037943586e-308,-4.040322457806325e-308,-4.024096263849619e-308,-4.0079998794393636e-308,-3.992031753067098e-308,-3.976190357851477e-308,-3.9604741910515745e-308,-3.9448817735916697e-308,-3.929411649597236e-308,-3.9140623859417754e-308,-3.8988325718042696e-308,-3.8837208182368887e-308,-3.8687257577427317e-308,-3.8538460438633175e-308,-3.839080350775535e-308,-3.8244273728978524e-308,-3.8098858245054897e-308,-3.795454439354342e-308,-3.781131970313424e-308,-3.7669171890056e-308,-3.7528088854563846e-308,-3.7388058677506147e-308,-3.7249069616967734e-308,-3.7111110104987674e-308,-3.6974168744349913e-308,-3.6838234305444453e-308,-3.6703295723197703e-308,-3.656934209407004e-308,-3.64363626731187e-308,-3.6304346871124793e-308,-3.617328425178227e-308,-3.60431645289478e-308,-3.591397756394961e-308,-3.578571336295411e-308,-3.5658362074388647e-308,-3.5531913986419215e-308,-3.5406359524481537e-308,-3.528168924886433e-308,-3.515789385234351e-308,-3.503496415786593e-308,-3.4912891116281635e-308,-3.479166580412329e-308,-3.4671279421431755e-308,-3.4551723289626655e-308,-3.4432988849420786e-308,-3.4315067658777466e-308,-3.419795139090964e-308,-3.408163183231989e-308,-3.396610088088023e-308,-3.3851350543950894e-308,-3.373737293653711e-308,-3.3624160279482924e-308,-3.351170489770138e-308,-3.339999921844001e-308,-3.328903576958093e-308,-3.3178807177974665e-308,-3.30693061678071e-308,-3.296052555899846e-308,-3.285245826563398e-308,-3.274509729442524e-308,-3.263843574320153e-308,-3.2532466799430788e-308,-3.2427183738768986e-308,-3.232257992363789e-308,-3.221864880183003e-308,-3.2115383905140545e-308,-3.201277884802541e-308,-3.191082732628506e-308,-3.1809523115773256e-308,-3.1708860071130436e-308,-3.160883212454101e-308,-3.150943328451408e-308,-3.141065763468717e-308,-3.131249933265236e-308,-3.1214952608804274e-308,-3.111801176520969e-308,-3.1021671174497994e-308,-3.0925925278772306e-308,-3.083076858854061e-308,-3.0736195681666615e-308,-3.0642201202339883e-308,-3.054877986006471e-308,-3.0455926428667523e-308,-3.0363635745322323e-308,-3.0271902709593756e-308,-3.018072228249747e-308,-3.009008948557748e-308,-2.999999940000001e-308,-2.9910447165663635e-308,-2.9821427980325266e-308,-2.9732937098741745e-308,-2.964496983182663e-308,-2.955752154582192e-308,-2.9470587661484442e-308,-2.9384163653286446e-308,-2.929824504863036e-308,-2.921282742707717e-308,-2.91279064195883e-308,-2.904347770778073e-308,-2.8959537023194904e-308,-2.887608014657543e-308,-2.87931029071641e-308,-2.871060118200508e-308,-2.862857089526205e-308,-2.8547008017546946e-308,-2.846590856526021e-308,-2.8385268599942223e-308,-2.8305084227635747e-308,-2.8225351598259085e-308,-2.814606690498991e-308,-2.8067226383659357e-308,-2.7988826312156305e-308,-2.791086300984165e-308,-2.783333283697223e-308,-2.775623219413449e-308,-2.767955752168738e-308,-2.760330529921454e-308,-2.7527472044985515e-308,-2.7452054315425793e-308,-2.7377048704595547e-308,-2.730245184367692e-308,-2.7228260400469645e-308,-2.715447107889484e-308,-2.708108061850695e-308,-2.700808579401342e-308,-2.69354834148023e-308,-2.6863270324477296e-308,-2.679144340040036e-308,-2.6719999553241606e-308,-2.6648935726536335e-308,-2.657824889624919e-308,-2.6507936070345184e-308,-2.6437994288367534e-308,-2.6368420621022165e-308,-2.629921216976874e-308,-2.6230366066418144e-308,-2.6161879472736203e-308,-2.6093749580053715e-308,-2.602597360888245e-308,-2.595854880853715e-308,-2.5891472456763426e-308,-2.5824741859371356e-308,-2.5758354349874777e-308,-2.56923072891361e-308,-2.562659806501659e-308,-2.5561224092031967e-308,-2.549618281101335e-308,-2.543147168877323e-308,-2.5367088217776644e-308,-2.5303029915817267e-308,-2.523929432569841e-308,-2.517587901491882e-308,-2.511278157536323e-308,-2.5049999622997503e-308,-2.4987530797568427e-308,-2.492537276230787e-308,-2.486352320364143e-308,-2.480197983090139e-308,-2.47407403760439e-308,-2.4679802593370384e-308,-2.4619164259253005e-308,-2.4558823171864193e-308,-2.4498777150910146e-308,-2.443902403736824e-308,-2.4379561693228197e-308,-2.432038800123716e-308,-2.426150086464833e-308,-2.420289820697333e-308,-2.414457797173814e-308,-2.408653812224252e-308,-2.4028776641322914e-308,-2.39712915311188e-308,-2.3914080812842266e-308,-2.3857142526551025e-308,-2.380047473092457e-308,-2.374407550304351e-308,-2.368794293817213e-308,-2.363207514954388e-308,-2.3576470268150036e-308,-2.352112644253125e-308,-2.3466041838572035e-308,-2.3411214639298196e-308,-2.3356643044677006e-308,-2.330232527142023e-308,-2.324825955278988e-308,-2.3194444138406636e-308,-2.314087729406099e-308,-2.30875573015269e-308,-2.303448245837813e-308,-2.2981651077807007e-308,-2.2929061488445773e-308,-2.2876712034190284e-308,-2.2824601074026186e-308,-2.277272698185744e-308,-2.2721088146337177e-308,-2.266968297070085e-308,-2.2618509872601644e-308,-2.256756728394814e-308,-2.2516853650744104e-308,-2.2466367432930486e-308,-2.2416107104229543e-308,-2.2366071151990995e-308,-2.2316258077040293e-308,-2.226666639352889e-308,-2.221729462878649e-308,-2.216814132317527e-308,-2.2119205029946057e-308,-2.207048431509636e-308,-2.202197775723029e-308,-2.197368394742036e-308,-2.192560148907105e-308,-2.1877728997784183e-308,-2.183006510122603e-308,-2.178260843899622e-308,-2.1735357662498296e-308,-2.1688311434811946e-308,-2.164146843056692e-308,-2.15948273358186e-308,-2.154838684792508e-308,-2.150214567542596e-308,-2.1456102537922593e-308,-2.14102561659599e-308,-2.136460530090971e-308,-2.131914869485559e-308,-2.127388511047913e-308,-2.1228813320947644e-308,-2.118393210980338e-308,-2.113924027085403e-308,-2.109473660806471e-308,-2.105041993545124e-308,-2.1006289076974807e-308,-2.0962342866437917e-308,-2.091858014738168e-308,-2.087499977298438e-308,-2.083160060596125e-308,-2.078838151846559e-308,-2.0745341391991053e-308,-2.070247911727512e-308,-2.0659793594203845e-308,-2.061728373171773e-308,-2.0574948447718716e-308,-2.0532786668978436e-308,-2.0490797331047463e-308,-2.044897937816577e-308,-2.040733176317421e-308,-2.036585344742713e-308,-2.0324543400706034e-308,-2.028340060113426e-308,-2.0242424035092747e-308,-2.0201612697136775e-308,-2.0160965589913726e-308,-2.0120481724081867e-308,-2.008016011823005e-308,-2.00399997987984e-308,-1.99999998e-308,-1.9960159163743435e-308,-1.99204769395563e-308,-1.9880952184509637e-308,-1.9841583963143224e-308,-1.9802371347391775e-308,-1.976331341651203e-308,-1.9724409257010665e-308,-1.9685657962573096e-308,-1.964705863399308e-308,-1.9608610379103175e-308,-1.957031231270599e-308,-1.953216355650628e-308,-1.949416323904374e-308,-1.945631049562673e-308,-1.9418604468266634e-308,-1.9381044305613027e-308,-1.934362916288964e-308,-1.9306358201831005e-308,-1.9269230590619823e-308,-1.9232245503825136e-308,-1.919540212234113e-308,-1.9158699633326637e-308,-1.9122137230145394e-308,-1.908571411230694e-308,-1.9049429485408204e-308,-1.901328256107573e-308,-1.8977272556908577e-308,-1.89413986964219e-308,-1.89056602089911e-308,-1.887005632979667e-308,-1.8834586299769636e-308,-1.879924936553756e-308,-1.876404477937129e-308,-1.872897179913215e-308,-1.8694029688219815e-308,-1.8659217715520737e-308,-1.862453515535717e-308,-1.8589981287436713e-308,-1.855555539680247e-308,-1.8521256773783744e-308,-1.8487084713947253e-308,-1.84530385180489e-308,-1.8419117491986103e-308,-1.838532094675061e-308,-1.8351648198381836e-308,-1.831809856792075e-308,-1.828467138136422e-308,-1.825136596961987e-308,-1.821818166846149e-308,-1.818511781848479e-308,-1.81521737650638e-308,-1.8119348858307633e-308,-1.8086642453017767e-308,-1.8054053908645733e-308,-1.8021582589251333e-308,-1.7989227863461284e-308,-1.795698910442826e-308,-1.7924865689790417e-308,-1.789285700163138e-308,-1.7860962426440567e-308,-1.7829181355074023e-308,-1.779751318271566e-308,-1.7765957308838843e-308,-1.773451313716845e-308,-1.7703180075643347e-308,-1.767195753637916e-308,-1.764084493563157e-308,-1.7609841693759904e-308,-1.757894723519114e-308,-1.7548160988384283e-308,-1.751748238579515e-308,-1.7486910863841454e-308,-1.7456445862868314e-308,-1.74260868271141e-308,-1.739583320467665e-308,-1.7365684447479795e-308,-1.733564001124029e-308,-1.730569935543505e-308,-1.7275861943268725e-308,-1.724612724164166e-308,-1.721649472111808e-308,-1.718696385589472e-308,-1.7157534123769707e-308,-1.712820500611177e-308,-1.7098975987829795e-308,-1.7069846557342654e-308,-1.7040816206549357e-308,-1.7011884430799524e-308,-1.698305072886412e-308,-1.695431460290654e-308,-1.692567555845394e-308,-1.6897133104368846e-308,-1.686868675282114e-308,-1.6840336019260225e-308,-1.681208042238751e-308,-1.678391948412919e-308,-1.675585272960929e-308,-1.6727879687122944e-308,-1.669999988811e-308,-1.667221286712883e-308,-1.6644518161830446e-308,-1.6616915312932853e-308,-1.6589403864195647e-308,-1.6561983362394917e-308,-1.653465335729831e-308,-1.6507413401640394e-308,-1.648026305109829e-308,-1.6453201864267516e-308,-1.6426229402638e-308,-1.639934523057047e-308,-1.6372548915272973e-308,-1.634584002677762e-308,-1.6319218137917645e-308,-1.629268282430458e-308,-1.6266233664305746e-308,-1.6239870239021877e-308,-1.621359213226506e-308,-1.6187398930536773e-308,-1.6161290223006247e-308,-1.613526560148895e-308,-1.610932466042535e-308,-1.6083466996859807e-308,-1.6057692210419746e-308,-1.603199990329498e-308,-1.6006389680217213e-308,-1.5980861148439823e-308,-1.595541391771776e-308,-1.5930047600287637e-308,-1.5904761810848073e-308,-1.587955616654017e-308,-1.5854430286928176e-308,-1.582938379398037e-308,-1.5804416312050074e-308,-1.5779527467856905e-308,-1.5754716890468137e-308,-1.572998421128031e-308,-1.5705329064000946e-308,-1.5680751084630474e-308,-1.5656249911444336e-308,-1.5631825184975214e-308,-1.5607476547995455e-308,-1.5583203645499687e-308,-1.5559006124687516e-308,-1.5534883634946456e-308,-1.551083582783502e-308,-1.54868623570659e-308,-1.546296287848937e-308,-1.5439137050076805e-308,-1.541538453190438e-308,-1.539170498613689e-308,-1.5368098077011743e-308,-1.5344563470823083e-308,-1.532110083590607e-308,-1.529770984262129e-308,-1.5274390163339346e-308,-1.5251141472425513e-308,-1.522796344622463e-308,-1.5204855763046044e-308,-1.5181818103148763e-308,-1.5158850148726657e-308,-1.51359515838939e-308,-1.5113122094670463e-308,-1.5090361368967734e-308,-1.5067669096574366e-308,-1.5045044969142117e-308,-1.502248868017191e-308,-1.4999999925e-308,-1.497757840078425e-308,-1.4955223806490533e-308,-1.493293584287926e-308,-1.491071421249203e-308,-1.48885586196384e-308,-1.486646877038276e-308,-1.484444437253136e-308,-1.4822485135619374e-308,-1.4800590770898194e-308,-1.4778760991322734e-308,-1.475699551153889e-308,-1.473529404787111e-308,-1.471365631831008e-308,-1.469208204250049e-308,-1.467057094172896e-308,-1.4649122738911973e-308,-1.462773715858405e-308,-1.4606413926885907e-308,-1.4585152771552793e-308,-1.456395342190289e-308,-1.454281560882582e-308,-1.4521739064771267e-308,-1.4500723523737696e-308,-1.4479768721261153e-308,-1.4458874394404154e-308,-1.443804028174472e-308,-1.441726612336546e-308,-1.4396551660842747e-308,-1.4375896637236036e-308,-1.43553007970772e-308,-1.433476388636004e-308,-1.4314285652529797e-308,-1.4293865844472844e-308,-1.427350421250639e-308,-1.4253200508368324e-308,-1.4232954485207094e-308,-1.4212765897571753e-308,-1.4192634501401986e-308,-1.417256005401831e-308,-1.4152542314112326e-308,-1.4132581041737005e-308,-1.411267599829716e-308,-1.4092826946539907e-308,-1.407303365054523e-308,-1.4053295875716655e-308,-1.403361338877198e-308,-1.401398595773407e-308,-1.3994413351921755e-308,-1.3974895341940795e-308,-1.39554316996749e-308,-1.393602219827685e-308,-1.391666661215972e-308,-1.389736471698808e-308,-1.3878116289669357e-308,-1.385892110834524e-308,-1.383977895238317e-308,-1.3820689602367847e-308,-1.380165284009289e-308,-1.3782668448552495e-308,-1.376373621193319e-308,-1.374485591560568e-308,-1.372602734611672e-308,-1.370725029118106e-308,-1.3688524539673474e-308,-1.366984988162088e-308,-1.3651226108194434e-308,-1.363265301170179e-308,-1.3614130385579365e-308,-1.3595658024384674e-308,-1.357723572378875e-308,-1.3558863280568593e-308,-1.354054049259971e-308,-1.3522267158848695e-308,-1.3504043079365886e-308,-1.3485868055278063e-308,-1.346774188878122e-308,-1.344966438313337e-308,-1.343163534264747e-308,-1.341365457268431e-308,-1.339572187964554e-308,-1.337783707096672e-308,-1.33599999551104e-308,-1.334221034155932e-308,-1.332446804080961e-308,-1.330677286436406e-308,-1.3289124624725427e-308,-1.327152313538985e-308,-1.325396821084026e-308,-1.323645966653986e-308,-1.3218997318925653e-308,-1.3201580985402055e-308,-1.3184210484334486e-308,-1.316688563504311e-308,-1.3149606257796515e-308,-1.3132372173805543e-308,-1.31151832052171e-308,-1.3098039175108033e-308,-1.308093990747909e-308,-1.306388522724885e-308,-1.3046874960247803e-308,-1.302990893321237e-308,-1.301298697377905e-308,-1.2996108910478584e-308,-1.297927457273014e-308,-1.296248379083559e-308,-1.2945736395973798e-308,-1.292903222019496e-308,-1.2912371096415e-308,-1.289575285840998e-308,-1.2879177340810594e-308,-1.286264437909667e-308,-1.2846153809591717e-308,-1.2829705469457557e-308,-1.281329919668893e-308,-1.279693483010819e-308,-1.278061220936003e-308,-1.276433117490624e-308,-1.274809156802051e-308,-1.2731893230783266e-308,-1.2715736006076554e-308,-1.2699619737578974e-308,-1.2683544269760615e-308,-1.266750944787807e-308,-1.265151511796947e-308,-1.263556112684953e-308,-1.26196473221047e-308,-1.260377355208829e-308,-1.2587939665915633e-308,-1.257214551345935e-308,-1.2556390945344565e-308,-1.2540675812944217e-308,-1.2524999968374376e-308,-1.2509363264489614e-308,-1.249376555487839e-308,-1.247820669385849e-308,-1.2462686536472487e-308,-1.244720493848324e-308,-1.243176175636941e-308,-1.241635684732107e-308,-1.2400990069235247e-308,-1.238566128071159e-308,-1.237037034104801e-308,-1.235511711023641e-308,-1.233990144895836e-308,-1.23247232185809e-308,-1.230958228115232e-308,-1.2294478499397945e-308,-1.2279411736716045e-308,-1.2264381857173676e-308,-1.22493887255026e-308,-1.2234432207095225e-308,-1.2219512168000596e-308,-1.2204628474920366e-308,-1.218978099520486e-308,-1.2174969596849095e-308,-1.21601941484889e-308,-1.2145454519397024e-308,-1.2130750579479274e-308,-1.2116082199270683e-308,-1.2101449249931734e-308,-1.208685160324457e-308,-1.2072289131609233e-308,-1.2057761708039983e-308,-1.204326920616159e-308,-1.2028811500205655e-308,-1.2014388465006987e-308,-1.1999999976e-308,-1.1985645909215105e-308,-1.1971326141275163e-308,-1.195704054939195e-308,-1.194278901136264e-308,-1.1928571405566327e-308,-1.1914387610960567e-308,-1.1900237507077936e-308,-1.188612097402262e-308,-1.1872037892467035e-308,-1.185798814364847e-308,-1.1843971609365726e-308,-1.182998817197582e-308,-1.1816037714390685e-308,-1.1802120120073916e-308,-1.178823527303751e-308,-1.177438305783864e-308,-1.1760563359576477e-308,-1.174677606388898e-308,-1.17330210569498e-308,-1.1719298225465065e-308,-1.1705607456670344e-308,-1.169194863832751e-308,-1.16783216587217e-308,-1.1664726406658254e-308,-1.165116277145971e-308,-1.1637630642962766e-308,-1.1624129911515335e-308,-1.161066046797356e-308,-1.159722220369888e-308,-1.1583815010555113e-308,-1.1570438780905543e-308,-1.155709340761006e-308,-1.1543778784022277e-308,-1.15304948039867e-308,-1.151724136183591e-308,-1.1504018352387757e-308,-1.1490825670942577e-308,-1.147766321328043e-308,-1.1464530875658355e-308,-1.145142855480764e-308,-1.143835614793113e-308,-1.142531355270052e-308,-1.14123006672537e-308,-1.1399317390192083e-308,-1.1386363620577996e-308,-1.137343925793205e-308,-1.136054420223055e-308,-1.1347678353902903e-308,-1.1334841613829056e-308,-1.132203388333697e-308,-1.130925506420007e-308,-1.129650505863475e-308,-1.1283783769297847e-308,-1.1271091099284216e-308,-1.125842695212423e-308,-1.124579123178134e-308,-1.1233183842649663e-308,-1.122060468955156e-308,-1.120805367773524e-308,-1.1195530712872384e-308,-1.1183035701055785e-308,-1.117056854879699e-308,-1.1158129163023993e-308,-1.1145717451078875e-308,-1.113333332071556e-308,-1.1120976680097463e-308,-1.1108647437795293e-308,-1.1096345502784735e-308,-1.108407078444426e-308,-1.1071823192552853e-308,-1.105960263728784e-308,-1.1047409029222673e-308,-1.103524227932475e-308,-1.102310229895326e-308,-1.1010988999857023e-308,-1.0998902294172336e-308,-1.098684209442088e-308,-1.097480831350758e-308,-1.0962800864718526e-308,-1.0950819661718893e-308,-1.093886461855085e-308,-1.092693564963152e-308,-1.091503266975095e-308,-1.0903155594070055e-308,-1.089130433811862e-308,-1.087947881779329e-308,-1.0867678949355593e-308,-1.085590464942994e-308,-1.0844155835001687e-308,-1.083243242341516e-308,-1.082073433237175e-308,-1.080906147992794e-308,-1.079741378449344e-308,-1.0785791164829246e-308,-1.0774193540045787e-308,-1.076262082960101e-308,-1.075107295329855e-308,-1.073954983128586e-308,-1.0728051384052385e-308,-1.071657753242769e-308,-1.0705128197579715e-308,-1.0693703301012906e-308,-1.0682302764566444e-308,-1.0670926510412475e-308,-1.065957446105432e-308,-1.0648246539324727e-308,-1.0636942668384114e-308,-1.062566277171883e-308,-1.0614406773139453e-308,-1.060317459677904e-308,-1.0591966167091437e-308,-1.0580781408849597e-308,-1.0569620247143887e-308,-1.0558482607380404e-308,-1.054736841527934e-308,-1.053627759687329e-308,-1.052521007850567e-308,-1.051416578682902e-308,-1.050314464880345e-308,-1.0492146591694965e-308,-1.0481171543073914e-308,-1.047021943081338e-308,-1.045929018308759e-308,-1.0448383728370384e-308,-1.0437499995433595e-308,-1.0426638913345555e-308,-1.041580041146952e-308,-1.040498441946216e-308,-1.0394190867272e-308,-1.0383419685137966e-308,-1.0372670803587824e-308,-1.0361944153436733e-308,-1.035123966578572e-308,-1.0340557272020247e-308,-1.0329896903808694e-308,-1.0319258493100955e-308,-1.030864197212696e-308,-1.0298047273395236e-308,-1.028747432969149e-308,-1.027692307407716e-308,-1.0266393439888054e-308,-1.0255885360732884e-308,-1.024539877049193e-308,-1.0234933603315593e-308,-1.022448979362307e-308,-1.0214067276100966e-308,-1.0203665985701904e-308,-1.019328585764321e-308,-1.018292682740556e-308,-1.0172588830731634e-308,-1.0162271803624785e-308,-1.0151975682347726e-308,-1.014170040342122e-308,-1.0131445903622763e-308,-1.0121212119985305e-308,-1.011099898979595e-308,-1.010080645059468e-308,-1.0090634440173054e-308,-1.0080482896573e-308,-1.0070351758085504e-308,-1.006024096324938e-308,-1.005015045085004e-308,-1.0040080159918234e-308,-1.0030030029728826e-308,-1.00199999997996e-308,-1.000999000989001e-308,-1.0e-308],"x":[-1.0e300,-9.98013982035928e304,-1.996017964071856e305,-2.9940219461077846e305,-3.992025928143713e305,-4.99002991017964e305,-5.988033892215569e305,-6.986037874251497e305,-7.984041856287425e305,-8.982045838323353e305,-9.98004982035928e305,-1.097805380239521e306,-1.1976057784431138e306,-1.2974061766467066e306,-1.3972065748502995e306,-1.4970069730538922e306,-1.5968073712574852e306,-1.696607769461078e306,-1.7964081676646707e306,-1.8962085658682634e306,-1.9960089640718562e306,-2.095809362275449e306,-2.195609760479042e306,-2.2954101586826347e306,-2.3952105568862274e306,-2.4950109550898204e306,-2.5948113532934132e306,-2.694611751497006e306,-2.794412149700599e306,-2.894212547904192e306,-2.9940129461077844e306,-3.0938133443113774e306,-3.19361374251497e306,-3.293414140718563e306,-3.3932145389221553e306,-3.493014937125749e306,-3.5928153353293414e306,-3.6926157335329344e306,-3.792416131736527e306,-3.89221652994012e306,-3.9920169281437123e306,-4.091817326347306e306,-4.1916177245508984e306,-4.291418122754491e306,-4.391218520958084e306,-4.491018919161676e306,-4.5908193173652693e306,-4.6906197155688624e306,-4.7904201137724554e306,-4.890220511976048e306,-4.990020910179641e306,-5.089821308383233e306,-5.1896217065868263e306,-5.2894221047904194e306,-5.3892225029940124e306,-5.489022901197605e306,-5.588823299401198e306,-5.688623697604791e306,-5.788424095808384e306,-5.888224494011976e306,-5.988024892215569e306,-6.08782529041916e306,-6.187625688622755e306,-6.287426086826348e306,-6.38722648502994e306,-6.487026883233533e306,-6.586827281437126e306,-6.686627679640719e306,-6.786428077844312e306,-6.886228476047904e306,-6.986028874251498e306,-7.08582927245509e306,-7.185629670658683e306,-7.285430068862275e306,-7.385230467065869e306,-7.485030865269462e306,-7.584831263473054e306,-7.684631661676647e306,-7.784432059880239e306,-7.884232458083833e306,-7.984032856287426e306,-8.083833254491018e306,-8.183633652694611e306,-8.283434050898204e306,-8.383234449101797e306,-8.483034847305389e306,-8.582835245508982e306,-8.682635643712576e306,-8.782436041916168e306,-8.882236440119761e306,-8.982036838323353e306,-9.081837236526947e306,-9.18163763473054e306,-9.28143803293413e306,-9.381238431137725e306,-9.481038829341318e306,-9.580839227544911e306,-9.680639625748501e306,-9.780440023952096e306,-9.88024042215569e306,-9.980040820359282e306,-1.0079841218562874e307,-1.0179641616766467e307,-1.0279442014970061e307,-1.0379242413173654e307,-1.0479042811377244e307,-1.0578843209580839e307,-1.0678643607784432e307,-1.0778444005988024e307,-1.0878244404191615e307,-1.097804480239521e307,-1.1077845200598804e307,-1.1177645598802395e307,-1.1277445997005988e307,-1.1377246395209582e307,-1.1477046793413176e307,-1.1576847191616768e307,-1.167664758982036e307,-1.1776447988023952e307,-1.1876248386227546e307,-1.1976048784431138e307,-1.207584918263473e307,-1.2175649580838324e307,-1.2275449979041918e307,-1.237525037724551e307,-1.24750507754491e307,-1.2574851173652696e307,-1.2674651571856288e307,-1.277445197005988e307,-1.2874252368263474e307,-1.2974052766467066e307,-1.307385316467066e307,-1.3173653562874252e307,-1.3273453961077843e307,-1.3373254359281438e307,-1.347305475748503e307,-1.3572855155688624e307,-1.3672655553892216e307,-1.3772455952095807e307,-1.3872256350299404e307,-1.3972056748502993e307,-1.4071857146706585e307,-1.417165754491018e307,-1.4271457943113774e307,-1.4371258341317366e307,-1.4471058739520957e307,-1.4570859137724552e307,-1.4670659535928146e307,-1.4770459934131735e307,-1.4870260332335327e307,-1.4970060730538924e307,-1.5069861128742516e307,-1.5169661526946107e307,-1.5269461925149702e307,-1.5369262323353294e307,-1.5469062721556885e307,-1.5568863119760477e307,-1.5668663517964071e307,-1.5768463916167666e307,-1.5868264314371258e307,-1.5968064712574852e307,-1.6067865110778444e307,-1.6167665508982035e307,-1.626746590718563e307,-1.6367266305389221e307,-1.6467066703592813e307,-1.6566867101796408e307,-1.6666667500000002e307,-1.6766467898203594e307,-1.6866268296407185e307,-1.696606869461078e307,-1.7065869092814372e307,-1.7165669491017963e307,-1.7265469889221555e307,-1.7365270287425152e307,-1.7465070685628744e307,-1.7564871083832335e307,-1.766467148203593e307,-1.776447188023952e307,-1.7864272278443113e307,-1.7964072676646705e307,-1.80638730748503e307,-1.8163673473053894e307,-1.8263473871257486e307,-1.836327426946108e307,-1.8463074667664672e307,-1.856287506586826e307,-1.8662675464071858e307,-1.876247586227545e307,-1.8862276260479041e307,-1.8962076658682636e307,-1.906187705688623e307,-1.9161677455089822e307,-1.926147785329341e307,-1.9361278251497005e307,-1.94610786497006e307,-1.9560879047904191e307,-1.9660679446107783e307,-1.976047984431138e307,-1.9860280242514972e307,-1.9960080640718563e307,-2.0059881038922155e307,-2.0159681437125747e307,-2.0259481835329341e307,-2.0359282233532933e307,-2.0459082631736527e307,-2.0558883029940122e307,-2.0658683428143714e307,-2.0758483826347305e307,-2.0858284224550897e307,-2.095808462275449e307,-2.1057885020958086e307,-2.1157685419161678e307,-2.125748581736527e307,-2.1357286215568864e307,-2.1457086613772458e307,-2.1556887011976047e307,-2.165668741017964e307,-2.1756487808383233e307,-2.1856288206586828e307,-2.195608860479042e307,-2.205588900299401e307,-2.2155689401197608e307,-2.2255489799401197e307,-2.235529019760479e307,-2.2455090595808383e307,-2.2554890994011975e307,-2.265469139221557e307,-2.2754491790419164e307,-2.2854292188622753e307,-2.295409258682635e307,-2.305389298502994e307,-2.315369338323353e307,-2.325349378143713e307,-2.335329417964072e307,-2.345309457784431e307,-2.355289497604791e307,-2.3652695374251497e307,-2.375249577245509e307,-2.385229617065868e307,-2.395209656886228e307,-2.405189696706587e307,-2.415169736526946e307,-2.4251497763473053e307,-2.435129816167664e307,-2.445109855988024e307,-2.455089895808383e307,-2.4650699356287425e307,-2.475049975449102e307,-2.4850300152694614e307,-2.4950100550898203e307,-2.5049900949101797e307,-2.514970134730539e307,-2.524950174550898e307,-2.534930214371258e307,-2.5449102541916165e307,-2.5548902940119764e307,-2.5648703338323353e307,-2.574850373652694e307,-2.584830413473054e307,-2.5948104532934126e307,-2.6047904931137725e307,-2.614770532934132e307,-2.624750572754491e307,-2.6347306125748503e307,-2.64471065239521e307,-2.6546906922155687e307,-2.664670732035928e307,-2.674650771856288e307,-2.6846308116766465e307,-2.6946108514970064e307,-2.7045908913173653e307,-2.7145709311377243e307,-2.724550970958084e307,-2.7345310107784426e307,-2.7445110505988025e307,-2.7544910904191615e307,-2.764471130239521e307,-2.7744511700598803e307,-2.78443120988024e307,-2.7944112497005987e307,-2.804391289520958e307,-2.8143713293413175e307,-2.8243513691616765e307,-2.8343314089820364e307,-2.8443114488023953e307,-2.854291488622755e307,-2.8642715284431137e307,-2.8742515682634726e307,-2.8842316080838326e307,-2.8942116479041915e307,-2.904191687724551e307,-2.91417172754491e307,-2.92415176736527e307,-2.9341318071856287e307,-2.9441118470059876e307,-2.9540918868263476e307,-2.9640719266467065e307,-2.974051966467066e307,-2.9840320062874253e307,-2.994012046107785e307,-3.0039920859281437e307,-3.013972125748503e307,-3.023952165568862e307,-3.0339322053892215e307,-3.0439122452095814e307,-3.05389228502994e307,-3.0638723248503e307,-3.073852364670658e307,-3.083832404491018e307,-3.0938124443113776e307,-3.103792484131736e307,-3.113772523952096e307,-3.1237525637724554e307,-3.1337326035928143e307,-3.1437126434131737e307,-3.1536926832335336e307,-3.163672723053892e307,-3.1736527628742515e307,-3.183632802694611e307,-3.19361284251497e307,-3.20359288233533e307,-3.213572922155688e307,-3.223552961976048e307,-3.233533001796407e307,-3.243513041616766e307,-3.253493081437126e307,-3.263473121257485e307,-3.2734531610778443e307,-3.2834332008982037e307,-3.293413240718563e307,-3.303393280538922e307,-3.3133733203592815e307,-3.323353360179641e307,-3.3333334e307,-3.3433134398203593e307,-3.3532934796407187e307,-3.363273519461078e307,-3.373253559281437e307,-3.3832335991017965e307,-3.3932136389221554e307,-3.403193678742515e307,-3.4131737185628743e307,-3.423153758383233e307,-3.433133798203593e307,-3.443113838023952e307,-3.4530938778443115e307,-3.463073917664671e307,-3.47305395748503e307,-3.4830339973053893e307,-3.4930140371257487e307,-3.5029940769461077e307,-3.512974116766467e307,-3.522954156586827e307,-3.5329341964071855e307,-3.542914236227545e307,-3.552894276047904e307,-3.562874315868263e307,-3.572854355688623e307,-3.5828343955089816e307,-3.5928144353293415e307,-3.602794475149701e307,-3.61277451497006e307,-3.6227545547904193e307,-3.6327345946107787e307,-3.6427146344311377e307,-3.652694674251497e307,-3.6626747140718565e307,-3.6726547538922155e307,-3.6826347937125754e307,-3.692614833532934e307,-3.7025948733532933e307,-3.7125749131736527e307,-3.7225549529940116e307,-3.7325349928143715e307,-3.7425150326347305e307,-3.75249507245509e307,-3.7624751122754493e307,-3.7724551520958083e307,-3.7824351919161677e307,-3.792415231736527e307,-3.8023952715568865e307,-3.8123753113772455e307,-3.822355351197605e307,-3.8323353910179643e307,-3.8423154308383233e307,-3.8522954706586827e307,-3.8622755104790416e307,-3.872255550299401e307,-3.8822355901197605e307,-3.89221562994012e307,-3.902195669760479e307,-3.912175709580839e307,-3.9221557494011977e307,-3.9321357892215566e307,-3.9421158290419166e307,-3.9520958688622755e307,-3.962075908682635e307,-3.9720559485029943e307,-3.9820359883233533e307,-3.9920160281437127e307,-4.001996067964072e307,-4.011976107784431e307,-4.0219561476047905e307,-4.0319361874251494e307,-4.041916227245509e307,-4.051896267065869e307,-4.061876306886227e307,-4.0718563467065866e307,-4.0818363865269466e307,-4.091816426347305e307,-4.101796466167665e307,-4.1117765059880244e307,-4.1217565458083833e307,-4.1317365856287427e307,-4.1417166254491016e307,-4.151696665269461e307,-4.1616767050898205e307,-4.1716567449101794e307,-4.181636784730539e307,-4.1916168245508983e307,-4.201596864371257e307,-4.211576904191617e307,-4.221556944011976e307,-4.231536983832335e307,-4.241517023652695e307,-4.251497063473054e307,-4.2614771032934133e307,-4.2714571431137727e307,-4.281437182934132e307,-4.291417222754491e307,-4.30139726257485e307,-4.31137730239521e307,-4.321357342215569e307,-4.3313373820359283e307,-4.341317421856287e307,-4.3512974616766467e307,-4.361277501497006e307,-4.371257541317365e307,-4.3812375811377244e307,-4.391217620958084e307,-4.4011976607784433e307,-4.411177700598802e307,-4.421157740419162e307,-4.431137780239521e307,-4.44111782005988e307,-4.45109785988024e307,-4.4610778997005984e307,-4.4710579395209583e307,-4.4810379793413177e307,-4.4910180191616767e307,-4.500998058982036e307,-4.510978098802395e307,-4.520958138622754e307,-4.530938178443114e307,-4.540918218263473e307,-4.550898258083833e307,-4.560878297904192e307,-4.570858337724551e307,-4.58083837754491e307,-4.590818417365269e307,-4.600798457185629e307,-4.610778497005987e307,-4.620758536826348e307,-4.630738576646706e307,-4.640718616467066e307,-4.650698656287426e307,-4.660678696107784e307,-4.670658735928143e307,-4.680638775748503e307,-4.690618815568863e307,-4.700598855389221e307,-4.710578895209582e307,-4.72055893502994e307,-4.730538974850299e307,-4.740519014670659e307,-4.750499054491018e307,-4.760479094311377e307,-4.770459134131736e307,-4.780439173952097e307,-4.790419213772455e307,-4.800399253592814e307,-4.810379293413174e307,-4.820359333233532e307,-4.830339373053893e307,-4.840319412874252e307,-4.850299452694611e307,-4.86027949251497e307,-4.870259532335329e307,-4.880239572155689e307,-4.890219611976047e307,-4.900199651796407e307,-4.910179691616766e307,-4.920159731437126e307,-4.930139771257485e307,-4.940119811077844e307,-4.950099850898203e307,-4.960079890718563e307,-4.970059930538923e307,-4.980039970359281e307,-4.990020010179641e307,-5.00000005e307,-5.009980089820359e307,-5.019960129640719e307,-5.029940169461078e307,-5.039920209281437e307,-5.049900249101796e307,-5.059880288922156e307,-5.069860328742515e307,-5.079840368562874e307,-5.089820408383233e307,-5.099800448203593e307,-5.109780488023953e307,-5.119760527844311e307,-5.129740567664671e307,-5.13972060748503e307,-5.149700647305389e307,-5.159680687125749e307,-5.169660726946108e307,-5.179640766766467e307,-5.189620806586826e307,-5.199600846407187e307,-5.209580886227545e307,-5.2195609260479035e307,-5.229540965868263e307,-5.239521005688623e307,-5.249501045508982e307,-5.259481085329341e307,-5.269461125149701e307,-5.279441164970059e307,-5.28942120479042e307,-5.299401244610779e307,-5.309381284431137e307,-5.319361324251497e307,-5.329341364071857e307,-5.339321403892216e307,-5.349301443712575e307,-5.359281483532935e307,-5.369261523353293e307,-5.379241563173652e307,-5.389221602994013e307,-5.399201642814371e307,-5.40918168263473e307,-5.41916172245509e307,-5.42914176227545e307,-5.439121802095808e307,-5.449101841916168e307,-5.459081881736527e307,-5.469061921556886e307,-5.479041961377247e307,-5.489022001197605e307,-5.499002041017964e307,-5.508982080838323e307,-5.518962120658683e307,-5.528942160479042e307,-5.5389222002994e307,-5.548902240119761e307,-5.55888227994012e307,-5.568862319760479e307,-5.578842359580839e307,-5.588822399401197e307,-5.598802439221556e307,-5.608782479041917e307,-5.618762518862276e307,-5.628742558682634e307,-5.638722598502995e307,-5.648702638323353e307,-5.658682678143712e307,-5.668662717964073e307,-5.678642757784431e307,-5.68862279760479e307,-5.69860283742515e307,-5.70858287724551e307,-5.718562917065868e307,-5.728542956886227e307,-5.738522996706587e307,-5.748503036526946e307,-5.758483076347306e307,-5.768463116167665e307,-5.778443155988024e307,-5.788423195808384e307,-5.798403235628743e307,-5.808383275449102e307,-5.818363315269461e307,-5.82834335508982e307,-5.83832339491018e307,-5.84830343473054e307,-5.858283474550898e307,-5.868263514371257e307,-5.878243554191616e307,-5.888223594011976e307,-5.898203633832336e307,-5.908183673652694e307,-5.918163713473054e307,-5.928143753293414e307,-5.938123793113772e307,-5.948103832934132e307,-5.958083872754491e307,-5.96806391257485e307,-5.97804395239521e307,-5.98802399221557e307,-5.998004032035928e307,-6.007984071856287e307,-6.017964111676646e307,-6.027944151497006e307,-6.037924191317366e307,-6.047904231137724e307,-6.057884270958084e307,-6.067864310778444e307,-6.077844350598802e307,-6.087824390419162e307,-6.097804430239521e307,-6.10778447005988e307,-6.11776450988024e307,-6.1277445497006e307,-6.137724589520958e307,-6.147704629341316e307,-6.157684669161678e307,-6.167664708982036e307,-6.177644748802395e307,-6.187624788622754e307,-6.197604828443114e307,-6.207584868263473e307,-6.217564908083832e307,-6.227544947904192e307,-6.23752498772455e307,-6.24750502754491e307,-6.25748506736527e307,-6.267465107185629e307,-6.277445147005988e307,-6.287425186826347e307,-6.297405226646707e307,-6.307385266467066e307,-6.317365306287426e307,-6.327345346107784e307,-6.337325385928143e307,-6.347305425748504e307,-6.357285465568862e307,-6.367265505389221e307,-6.377245545209581e307,-6.387225585029941e307,-6.397205624850299e307,-6.40718566467066e307,-6.417165704491018e307,-6.427145744311376e307,-6.437125784131738e307,-6.447105823952096e307,-6.457085863772455e307,-6.467065903592814e307,-6.477045943413174e307,-6.487025983233533e307,-6.497006023053891e307,-6.506986062874252e307,-6.51696610269461e307,-6.52694614251497e307,-6.53692618233533e307,-6.546906222155689e307,-6.556886261976047e307,-6.566866301796407e307,-6.576846341616767e307,-6.586826381437125e307,-6.596806421257486e307,-6.606786461077844e307,-6.616766500898204e307,-6.626746540718564e307,-6.636726580538922e307,-6.646706620359281e307,-6.65668666017964e307,-6.666666700000001e307,-6.676646739820359e307,-6.686626779640719e307,-6.696606819461078e307,-6.706586859281436e307,-6.716566899101797e307,-6.726546938922156e307,-6.736526978742515e307,-6.746507018562874e307,-6.756487058383235e307,-6.766467098203593e307,-6.776447138023952e307,-6.786427177844311e307,-6.79640721766467e307,-6.806387257485031e307,-6.816367297305389e307,-6.826347337125749e307,-6.836327376946107e307,-6.846307416766466e307,-6.856287456586827e307,-6.866267496407185e307,-6.876247536227545e307,-6.886227576047904e307,-6.896207615868264e307,-6.906187655688623e307,-6.916167695508982e307,-6.926147735329341e307,-6.9361277751497e307,-6.946107814970061e307,-6.956087854790419e307,-6.966067894610779e307,-6.976047934431137e307,-6.986027974251497e307,-6.996008014071857e307,-7.005988053892215e307,-7.015968093712575e307,-7.025948133532934e307,-7.035928173353294e307,-7.045908213173653e307,-7.055888252994012e307,-7.065868292814371e307,-7.07584833263473e307,-7.085828372455091e307,-7.095808412275449e307,-7.105788452095808e307,-7.115768491916168e307,-7.125748531736527e307,-7.135728571556886e307,-7.145708611377246e307,-7.155688651197605e307,-7.165668691017963e307,-7.175648730838324e307,-7.185628770658683e307,-7.195608810479041e307,-7.205588850299401e307,-7.215568890119761e307,-7.22554892994012e307,-7.235528969760479e307,-7.245509009580839e307,-7.255489049401197e307,-7.265469089221557e307,-7.275449129041917e307,-7.285429168862275e307,-7.295409208682634e307,-7.305389248502994e307,-7.315369288323354e307,-7.325349328143712e307,-7.335329367964072e307,-7.345309407784431e307,-7.35528944760479e307,-7.365269487425151e307,-7.375249527245509e307,-7.385229567065868e307,-7.395209606886228e307,-7.405189646706588e307,-7.415169686526946e307,-7.425149726347305e307,-7.435129766167665e307,-7.445109805988024e307,-7.455089845808384e307,-7.465069885628743e307,-7.475049925449102e307,-7.48502996526946e307,-7.495010005089821e307,-7.50499004491018e307,-7.514970084730538e307,-7.524950124550899e307,-7.534930164371257e307,-7.544910204191617e307,-7.554890244011977e307,-7.564870283832335e307,-7.574850323652694e307,-7.584830363473055e307,-7.594810403293414e307,-7.604790443113772e307,-7.614770482934132e307,-7.624750522754491e307,-7.63473056257485e307,-7.64471060239521e307,-7.654690642215569e307,-7.664670682035928e307,-7.674650721856287e307,-7.684630761676648e307,-7.694610801497006e307,-7.704590841317365e307,-7.714570881137725e307,-7.724550920958084e307,-7.734530960778444e307,-7.744511000598802e307,-7.754491040419162e307,-7.764471080239521e307,-7.77445112005988e307,-7.78443115988024e307,-7.794411199700598e307,-7.804391239520958e307,-7.814371279341318e307,-7.824351319161677e307,-7.834331358982036e307,-7.844311398802395e307,-7.854291438622754e307,-7.864271478443114e307,-7.874251518263474e307,-7.884231558083832e307,-7.894211597904192e307,-7.904191637724551e307,-7.91417167754491e307,-7.92415171736527e307,-7.934131757185628e307,-7.944111797005988e307,-7.954091836826348e307,-7.964071876646707e307,-7.974051916467066e307,-7.984031956287425e307,-7.994011996107784e307,-8.003992035928144e307,-8.013972075748504e307,-8.023952115568862e307,-8.033932155389222e307,-8.043912195209582e307,-8.05389223502994e307,-8.063872274850299e307,-8.073852314670659e307,-8.083832354491018e307,-8.093812394311377e307,-8.103792434131738e307,-8.113772473952096e307,-8.123752513772454e307,-8.133732553592814e307,-8.143712593413174e307,-8.153692633233533e307,-8.163672673053892e307,-8.173652712874252e307,-8.183632752694611e307,-8.19361279251497e307,-8.20359283233533e307,-8.213572872155688e307,-8.223552911976048e307,-8.233532951796408e307,-8.243512991616767e307,-8.253493031437125e307,-8.263473071257485e307,-8.273453111077844e307,-8.283433150898203e307,-8.293413190718564e307,-8.303393230538922e307,-8.313373270359281e307,-8.323353310179642e307,-8.33333335e307,-8.343313389820359e307,-8.353293429640719e307,-8.363273469461078e307,-8.373253509281437e307,-8.383233549101797e307,-8.393213588922156e307,-8.403193628742514e307,-8.413173668562875e307,-8.423153708383234e307,-8.433133748203593e307,-8.443113788023951e307,-8.453093827844312e307,-8.463073867664671e307,-8.473053907485029e307,-8.48303394730539e307,-8.493013987125748e307,-8.502994026946107e307,-8.512974066766468e307,-8.522954106586827e307,-8.532934146407185e307,-8.542914186227545e307,-8.552894226047905e307,-8.562874265868263e307,-8.572854305688623e307,-8.582834345508982e307,-8.592814385329341e307,-8.602794425149701e307,-8.61277446497006e307,-8.622754504790419e307,-8.632734544610778e307,-8.642714584431139e307,-8.652694624251497e307,-8.662674664071857e307,-8.672654703892216e307,-8.682634743712574e307,-8.692614783532935e307,-8.702594823353293e307,-8.712574863173653e307,-8.722554902994012e307,-8.732534942814371e307,-8.742514982634731e307,-8.75249502245509e307,-8.762475062275449e307,-8.772455102095808e307,-8.782435141916168e307,-8.792415181736527e307,-8.802395221556887e307,-8.812375261377245e307,-8.822355301197604e307,-8.832335341017965e307,-8.842315380838323e307,-8.852295420658683e307,-8.862275460479042e307,-8.872255500299402e307,-8.882235540119761e307,-8.892215579940119e307,-8.902195619760479e307,-8.912175659580838e307,-8.922155699401198e307,-8.932135739221557e307,-8.942115779041917e307,-8.952095818862275e307,-8.962075858682634e307,-8.972055898502995e307,-8.982035938323353e307,-8.992015978143713e307,-9.001996017964071e307,-9.011976057784432e307,-9.02195609760479e307,-9.03193613742515e307,-9.041916177245509e307,-9.051896217065867e307,-9.061876256886228e307,-9.071856296706586e307,-9.081836336526947e307,-9.091816376347305e307,-9.101796416167663e307,-9.111776455988024e307,-9.121756495808384e307,-9.131736535628743e307,-9.141716575449101e307,-9.151696615269462e307,-9.16167665508982e307,-9.17165669491018e307,-9.181636734730539e307,-9.191616774550897e307,-9.201596814371258e307,-9.211576854191616e307,-9.221556894011977e307,-9.231536933832337e307,-9.241516973652695e307,-9.251497013473054e307,-9.261477053293412e307,-9.271457093113773e307,-9.281437132934131e307,-9.29141717275449e307,-9.30139721257485e307,-9.31137725239521e307,-9.321357292215569e307,-9.33133733203593e307,-9.341317371856288e307,-9.351297411676646e307,-9.361277451497007e307,-9.371257491317365e307,-9.381237531137723e307,-9.391217570958084e307,-9.401197610778442e307,-9.411177650598803e307,-9.421157690419163e307,-9.431137730239522e307,-9.44111777005988e307,-9.45109780988024e307,-9.461077849700599e307,-9.471057889520957e307,-9.481037929341316e307,-9.491017969161676e307,-9.500998008982037e307,-9.510978048802397e307,-9.520958088622756e307,-9.530938128443114e307,-9.540918168263472e307,-9.550898208083833e307,-9.560878247904191e307,-9.57085828772455e307,-9.58083832754491e307,-9.59081836736527e307,-9.600798407185629e307,-9.610778447005987e307,-9.620758486826348e307,-9.630738526646706e307,-9.640718566467067e307,-9.650698606287425e307,-9.660678646107784e307,-9.670658685928142e307,-9.680638725748504e307,-9.690618765568863e307,-9.700598805389223e307,-9.710578845209582e307,-9.72055888502994e307,-9.730538924850299e307,-9.740518964670657e307,-9.750499004491017e307,-9.760479044311378e307,-9.770459084131738e307,-9.780439123952097e307,-9.790419163772455e307,-9.800399203592814e307,-9.810379243413174e307,-9.820359283233534e307,-9.830339323053893e307,-9.840319362874251e307,-9.85029940269461e307,-9.860279442514968e307,-9.87025948233533e307,-9.88023952215569e307,-9.89021956197605e307,-9.900199601796408e307,-9.910179641616766e307,-9.920159681437125e307,-9.930139721257483e307,-9.940119761077844e307,-9.950099800898204e307,-9.960079840718564e307,-9.970059880538923e307,-9.980039920359281e307,-9.99001996017964e307,-1.0e308]} \ No newline at end of file +{"expected":[-1.0e-300,-1.0019899700803994e-305,-5.00997495012525e-306,-3.3399888778370363e-306,-2.504993750040594e-306,-2.0039960040319678e-306,-1.6699972278046017e-306,-1.4314265367579942e-306,-1.2524984437706837e-306,-1.113332104956911e-306,-1.0019990060169862e-306,-9.109082702635492e-307,-8.349993111255683e-307,-7.707686443921621e-307,-7.157137806248462e-307,-6.679995604562892e-307,-6.262496140736753e-307,-5.894114231939694e-307,-5.566663623557219e-307,-5.2736814820900544e-307,-5.009997540091208e-307,-4.771426342490837e-307,-4.554543425703383e-307,-4.3565198847682755e-307,-4.174998298688193e-307,-4.007998433674212e-307,-3.853844707172141e-307,-3.711109770988138e-307,-3.578570183740229e-307,-3.455171254523576e-307,-3.3399989178403507e-307,-3.232257052089807e-307,-3.1312490508401315e-307,-3.0363627447771213e-307,-2.9470579844846677e-307,-2.8628563518908308e-307,-2.7833325864724224e-307,-2.708107401804421e-307,-2.6368414363381198e-307,-2.5692301348285587e-307,-2.504999397547645e-307,-2.443901866197636e-307,-2.385713740408288e-307,-2.330232038443599e-307,-2.277272231448455e-307,-2.2266661931289893e-307,-2.1782604168658787e-307,-2.131914460430147e-307,-2.0874995851094575e-307,-2.044897561471964e-307,-2.0039996184384724e-307,-1.964705515993148e-307,-1.9269227248891176e-307,-1.8905656992175756e-307,-1.8555552298025264e-307,-1.8218178681342688e-307,-1.7892854120242857e-307,-1.7578944454017103e-307,-1.7275859257170495e-307,-1.698304813304841e-307,-1.6699997378100412e-307,-1.6426226974249248e-307,-1.616128787232087e-307,-1.5904759534195363e-307,-1.5656247705381197e-307,-1.5415382393197954e-307,-1.5181816028760636e-307,-1.4955221793562331e-307,-1.473529209371135e-307,-1.4521737166843367e-307,-1.431428380844107e-307,-1.4112674205788777e-307,-1.3916664869097454e-307,-1.3726025650482488e-307,-1.3540538842483777e-307,-1.3359998348704205e-307,-1.3184208919924018e-307,-1.301298544973876e-307,-1.2846152324378878e-307,-1.2683542821910123e-307,-1.2524998556493917e-307,-1.2370368963813603e-307,-1.2219510824152443e-307,-1.207228781994789e-307,-1.1928570124949122e-307,-1.1788234022375222e-307,-1.165116154971349e-307,-1.1517240168014396e-307,-1.1386362453734627e-307,-1.1258425811354745e-307,-1.1133332205155669e-307,-1.1010987908680223e-307,-1.0891303270534134e-307,-1.077419249529667e-307,-1.0659573438415672e-307,-1.0547367414056605e-307,-1.043749901496103e-307,-1.0329895943447853e-307,-1.0224488852761436e-307,-1.0121211198034978e-307,-1.0019999096196082e-307,-9.920791194194766e-308,-9.823528544982776e-308,-9.72815449071739e-308,-9.634614552703473e-308,-9.54285632762456e-308,-9.452829389647628e-308,-9.36448519801736e-308,-9.277777009784014e-308,-9.192659797335304e-308,-9.109090170426505e-308,-9.027026302425186e-308,-8.946427860507071e-308,-8.867255939558361e-308,-8.789472999556839e-308,-8.71304280622009e-308,-8.637930374723595e-308,-8.564101916305111e-308,-8.491524787584075e-308,-8.420167442436314e-308,-8.349999386275046e-308,-8.280991132598909e-308,-8.213114161677011e-308,-8.146340881249299e-308,-8.080644589128552e-308,-8.01599943759748e-308,-7.952380399501172e-308,-7.889763235941509e-308,-7.828124465485877e-308,-7.76744133480804e-308,-7.707691790684059e-308,-7.648854453270821e-308,-7.590908590599206e-308,-7.533834094217909e-308,-7.477611455927855e-308,-7.422221745550648e-308,-7.367646589677798e-308,-7.31386815135066e-308,-7.260869110623848e-308,-7.208632645967628e-308,-7.157142416467375e-308,-7.106382544780469e-308,-7.056337600813356e-308,-7.006992586083451e-308,-6.958332918732664e-308,-6.910344419161023e-308,-6.863013296250727e-308,-6.816326134152459e-308,-6.770269879607399e-308,-6.724831829779761e-308,-6.679999620576022e-308,-6.635761215428291e-308,-6.59210489452045e-308,-6.549019244436774e-308,-6.506493148213884e-308,-6.464515775777751e-308,-6.42307657474854e-308,-6.382165261596838e-308,-6.341771813135733e-308,-6.301886458333944e-308,-6.262499670435955e-308,-6.223602159375813e-308,-6.185184864471896e-308,-6.147238947390584e-308,-6.109755785367356e-308,-6.072726964674395e-308,-6.0361442743243e-308,-5.999999700000015e-308,-5.964285418201545e-308,-5.928993790600483e-308,-5.894117358593786e-308,-5.859648838048644e-308,-5.825581114230679e-308,-5.791907236908029e-308,-5.75862041562427e-308,-5.7257140151334e-308,-5.693181550990457e-308,-5.661016685291595e-308,-5.62921322255777e-308,-5.597765105756387e-308,-5.566666412455566e-308,-5.535911351105899e-308,-5.505494257444764e-308,-5.475409591018554e-308,-5.4456519318183e-308,-5.416215977024408e-308,-5.38709653785641e-308,-5.358288536523788e-308,-5.329787003274116e-308,-5.301587073534906e-308,-5.273683985145715e-308,-5.246073075677211e-308,-5.218749779833993e-308,-5.191709626938182e-308,-5.164948238490815e-308,-5.138461325808293e-308,-5.112244687731162e-308,-5.086294208402698e-308,-5.060605855114792e-308,-5.035175676218791e-308,-5.009999799099008e-308,-4.985074428206736e-308,-4.96039584315264e-308,-4.935960396855549e-308,-4.911764513745683e-308,-4.887804688020471e-308,-4.864077481951181e-308,-4.840579524238613e-308,-4.817307508416242e-308,-4.794258191299198e-308,-4.771428391477557e-308,-4.748814987852481e-308,-4.726414918213783e-308,-4.704225177857575e-308,-4.682242818242647e-308,-4.660464945684377e-308,-4.638888720084883e-308,-4.617511353698321e-308,-4.596330109930147e-308,-4.575342302169268e-308,-4.554545292652072e-308,-4.533936491357268e-308,-4.513513354930611e-308,-4.493273385638567e-308,-4.473214130349973e-308,-4.453333179544894e-308,-4.433628166349759e-308,-4.414096765598018e-308,-4.3947366929155173e-308,-4.375545703829833e-308,-4.3565215929028406e-308,-4.33766219288582e-308,-4.318965373896408e-308,-4.300429042616741e-308,-4.2820511415121674e-308,-4.2638296480699e-308,-4.2457625740570283e-308,-4.2278479647973124e-308,-4.2100838984662143e-308,-4.1924684854036216e-308,-4.174999867443754e-308,-4.157676217261759e-308,-4.140495737736497e-308,-4.1234566613290697e-308,-4.106557249476623e-308,-4.089795792001003e-308,-4.0731706065318306e-308,-4.056680037943586e-308,-4.040322457806325e-308,-4.0240962638496192e-308,-4.0079998794393636e-308,-3.992031753067098e-308,-3.976190357851477e-308,-3.9604741910515745e-308,-3.9448817735916707e-308,-3.929411649597235e-308,-3.914062385941776e-308,-3.8988325718042696e-308,-3.8837208182368877e-308,-3.868725757742732e-308,-3.853846043863317e-308,-3.839080350775535e-308,-3.8244273728978524e-308,-3.8098858245054897e-308,-3.795454439354342e-308,-3.781131970313424e-308,-3.7669171890056e-308,-3.7528088854563846e-308,-3.738805867750615e-308,-3.724906961696773e-308,-3.7111110104987684e-308,-3.6974168744349913e-308,-3.6838234305444443e-308,-3.670329572319771e-308,-3.6569342094070034e-308,-3.64363626731187e-308,-3.6304346871124793e-308,-3.617328425178227e-308,-3.60431645289478e-308,-3.591397756394961e-308,-3.578571336295411e-308,-3.5658362074388647e-308,-3.5531913986419215e-308,-3.5406359524481537e-308,-3.5281689248864336e-308,-3.515789385234351e-308,-3.503496415786593e-308,-3.4912891116281635e-308,-3.4791665804123285e-308,-3.4671279421431755e-308,-3.4551723289626655e-308,-3.4432988849420786e-308,-3.431506765877746e-308,-3.4197951390909643e-308,-3.408163183231989e-308,-3.3966100880880227e-308,-3.3851350543950894e-308,-3.373737293653711e-308,-3.3624160279482924e-308,-3.351170489770138e-308,-3.339999921844002e-308,-3.328903576958093e-308,-3.3178807177974665e-308,-3.30693061678071e-308,-3.296052555899846e-308,-3.2852458265633984e-308,-3.2745097294425235e-308,-3.2638435743201535e-308,-3.2532466799430783e-308,-3.2427183738768986e-308,-3.2322579923637895e-308,-3.2218648801830023e-308,-3.2115383905140545e-308,-3.201277884802541e-308,-3.191082732628506e-308,-3.1809523115773256e-308,-3.170886007113044e-308,-3.160883212454101e-308,-3.150943328451408e-308,-3.141065763468717e-308,-3.131249933265236e-308,-3.121495260880428e-308,-3.1118011765209686e-308,-3.1021671174497994e-308,-3.0925925278772306e-308,-3.0830768588540605e-308,-3.0736195681666615e-308,-3.0642201202339883e-308,-3.054877986006471e-308,-3.0455926428667523e-308,-3.0363635745322323e-308,-3.0271902709593756e-308,-3.018072228249747e-308,-3.009008948557748e-308,-2.999999940000001e-308,-2.9910447165663635e-308,-2.9821427980325266e-308,-2.9732937098741745e-308,-2.964496983182663e-308,-2.955752154582192e-308,-2.947058766148444e-308,-2.9384163653286446e-308,-2.929824504863036e-308,-2.9212827427077163e-308,-2.9127906419588304e-308,-2.904347770778073e-308,-2.8959537023194904e-308,-2.8876080146575433e-308,-2.87931029071641e-308,-2.871060118200508e-308,-2.862857089526205e-308,-2.8547008017546946e-308,-2.846590856526021e-308,-2.838526859994223e-308,-2.8305084227635747e-308,-2.8225351598259085e-308,-2.814606690498991e-308,-2.806722638365935e-308,-2.798882631215631e-308,-2.7910863009841647e-308,-2.783333283697223e-308,-2.7756232194134495e-308,-2.767955752168738e-308,-2.760330529921454e-308,-2.752747204498552e-308,-2.7452054315425793e-308,-2.7377048704595547e-308,-2.730245184367692e-308,-2.7228260400469645e-308,-2.7154471078894847e-308,-2.7081080618506946e-308,-2.700808579401342e-308,-2.69354834148023e-308,-2.686327032447729e-308,-2.679144340040036e-308,-2.6719999553241606e-308,-2.6648935726536335e-308,-2.657824889624919e-308,-2.6507936070345184e-308,-2.6437994288367534e-308,-2.6368420621022165e-308,-2.6299212169768747e-308,-2.6230366066418144e-308,-2.6161879472736203e-308,-2.6093749580053715e-308,-2.602597360888245e-308,-2.595854880853715e-308,-2.589147245676342e-308,-2.5824741859371356e-308,-2.5758354349874777e-308,-2.56923072891361e-308,-2.562659806501659e-308,-2.556122409203197e-308,-2.549618281101335e-308,-2.5431471688773226e-308,-2.5367088217776644e-308,-2.5303029915817267e-308,-2.523929432569841e-308,-2.517587901491882e-308,-2.511278157536323e-308,-2.5049999622997503e-308,-2.4987530797568427e-308,-2.492537276230787e-308,-2.486352320364143e-308,-2.4801979830901384e-308,-2.47407403760439e-308,-2.4679802593370384e-308,-2.4619164259253005e-308,-2.4558823171864193e-308,-2.449877715091015e-308,-2.4439024037368237e-308,-2.4379561693228197e-308,-2.4320388001237163e-308,-2.426150086464833e-308,-2.420289820697333e-308,-2.414457797173814e-308,-2.408653812224252e-308,-2.4028776641322914e-308,-2.3971291531118794e-308,-2.3914080812842266e-308,-2.3857142526551025e-308,-2.3800474730924563e-308,-2.3744075503043513e-308,-2.368794293817213e-308,-2.363207514954388e-308,-2.357647026815004e-308,-2.352112644253125e-308,-2.3466041838572035e-308,-2.3411214639298196e-308,-2.3356643044677006e-308,-2.330232527142023e-308,-2.324825955278988e-308,-2.319444413840664e-308,-2.314087729406099e-308,-2.30875573015269e-308,-2.303448245837813e-308,-2.2981651077807007e-308,-2.2929061488445773e-308,-2.2876712034190284e-308,-2.2824601074026186e-308,-2.277272698185744e-308,-2.2721088146337177e-308,-2.266968297070085e-308,-2.261850987260165e-308,-2.256756728394814e-308,-2.25168536507441e-308,-2.2466367432930486e-308,-2.2416107104229543e-308,-2.2366071151990995e-308,-2.23162580770403e-308,-2.226666639352889e-308,-2.221729462878649e-308,-2.216814132317527e-308,-2.2119205029946057e-308,-2.207048431509636e-308,-2.202197775723029e-308,-2.197368394742036e-308,-2.1925601489071057e-308,-2.1877728997784183e-308,-2.183006510122603e-308,-2.178260843899622e-308,-2.1735357662498296e-308,-2.168831143481194e-308,-2.164146843056692e-308,-2.15948273358186e-308,-2.154838684792508e-308,-2.1502145675425966e-308,-2.1456102537922593e-308,-2.1410256165959896e-308,-2.136460530090971e-308,-2.131914869485559e-308,-2.127388511047913e-308,-2.122881332094765e-308,-2.118393210980338e-308,-2.113924027085403e-308,-2.109473660806471e-308,-2.105041993545124e-308,-2.10062890769748e-308,-2.0962342866437917e-308,-2.0918580147381686e-308,-2.087499977298438e-308,-2.083160060596125e-308,-2.078838151846559e-308,-2.074534139199105e-308,-2.070247911727512e-308,-2.065979359420385e-308,-2.061728373171773e-308,-2.0574948447718716e-308,-2.0532786668978436e-308,-2.0490797331047463e-308,-2.0448979378165763e-308,-2.040733176317421e-308,-2.036585344742713e-308,-2.0324543400706034e-308,-2.028340060113426e-308,-2.0242424035092747e-308,-2.020161269713677e-308,-2.0160965589913726e-308,-2.012048172408187e-308,-2.008016011823005e-308,-2.00399997987984e-308,-1.99999998e-308,-1.9960159163743435e-308,-1.99204769395563e-308,-1.9880952184509637e-308,-1.9841583963143224e-308,-1.9802371347391775e-308,-1.976331341651203e-308,-1.9724409257010665e-308,-1.9685657962573096e-308,-1.964705863399308e-308,-1.9608610379103175e-308,-1.9570312312705997e-308,-1.953216355650628e-308,-1.949416323904374e-308,-1.945631049562673e-308,-1.9418604468266634e-308,-1.9381044305613027e-308,-1.9343629162889646e-308,-1.9306358201831005e-308,-1.9269230590619823e-308,-1.923224550382514e-308,-1.919540212234113e-308,-1.915869963332663e-308,-1.912213723014539e-308,-1.9085714112306944e-308,-1.9049429485408204e-308,-1.901328256107573e-308,-1.8977272556908577e-308,-1.8941398696421897e-308,-1.89056602089911e-308,-1.887005632979667e-308,-1.8834586299769636e-308,-1.879924936553756e-308,-1.8764044779371294e-308,-1.872897179913215e-308,-1.8694029688219815e-308,-1.8659217715520737e-308,-1.8624535155357167e-308,-1.8589981287436713e-308,-1.855555539680247e-308,-1.8521256773783744e-308,-1.8487084713947253e-308,-1.84530385180489e-308,-1.8419117491986103e-308,-1.838532094675061e-308,-1.835164819838184e-308,-1.831809856792075e-308,-1.828467138136422e-308,-1.8251365969619876e-308,-1.821818166846149e-308,-1.818511781848479e-308,-1.81521737650638e-308,-1.811934885830764e-308,-1.8086642453017767e-308,-1.805405390864573e-308,-1.8021582589251333e-308,-1.7989227863461284e-308,-1.7956989104428257e-308,-1.792486568979042e-308,-1.789285700163138e-308,-1.786096242644056e-308,-1.7829181355074023e-308,-1.779751318271566e-308,-1.7765957308838843e-308,-1.773451313716845e-308,-1.7703180075643347e-308,-1.767195753637916e-308,-1.764084493563157e-308,-1.7609841693759904e-308,-1.7578947235191136e-308,-1.7548160988384283e-308,-1.751748238579515e-308,-1.7486910863841454e-308,-1.7456445862868314e-308,-1.74260868271141e-308,-1.739583320467665e-308,-1.7365684447479795e-308,-1.733564001124029e-308,-1.730569935543505e-308,-1.727586194326873e-308,-1.724612724164166e-308,-1.721649472111808e-308,-1.718696385589472e-308,-1.71575341237697e-308,-1.712820500611177e-308,-1.7098975987829795e-308,-1.7069846557342654e-308,-1.7040816206549357e-308,-1.701188443079952e-308,-1.698305072886412e-308,-1.695431460290654e-308,-1.6925675558453933e-308,-1.6897133104368846e-308,-1.6868686752821143e-308,-1.6840336019260225e-308,-1.681208042238751e-308,-1.678391948412919e-308,-1.6755852729609287e-308,-1.6727879687122944e-308,-1.6699999888110004e-308,-1.667221286712883e-308,-1.6644518161830446e-308,-1.661691531293285e-308,-1.6589403864195647e-308,-1.6561983362394917e-308,-1.653465335729831e-308,-1.6507413401640394e-308,-1.6480263051098296e-308,-1.6453201864267516e-308,-1.6426229402638e-308,-1.639934523057047e-308,-1.6372548915272973e-308,-1.634584002677762e-308,-1.6319218137917645e-308,-1.629268282430458e-308,-1.626623366430574e-308,-1.6239870239021877e-308,-1.621359213226506e-308,-1.6187398930536773e-308,-1.6161290223006247e-308,-1.613526560148895e-308,-1.610932466042535e-308,-1.6083466996859807e-308,-1.6057692210419746e-308,-1.6031999903294976e-308,-1.6006389680217213e-308,-1.598086114843983e-308,-1.595541391771776e-308,-1.5930047600287637e-308,-1.5904761810848073e-308,-1.587955616654017e-308,-1.5854430286928176e-308,-1.582938379398037e-308,-1.5804416312050074e-308,-1.5779527467856905e-308,-1.5754716890468137e-308,-1.572998421128031e-308,-1.570532906400094e-308,-1.5680751084630474e-308,-1.5656249911444336e-308,-1.5631825184975214e-308,-1.560747654799546e-308,-1.5583203645499687e-308,-1.555900612468751e-308,-1.5534883634946456e-308,-1.551083582783502e-308,-1.54868623570659e-308,-1.546296287848937e-308,-1.5439137050076805e-308,-1.541538453190438e-308,-1.539170498613689e-308,-1.5368098077011743e-308,-1.5344563470823083e-308,-1.532110083590607e-308,-1.5297709842621294e-308,-1.5274390163339346e-308,-1.5251141472425513e-308,-1.522796344622463e-308,-1.5204855763046044e-308,-1.518181810314876e-308,-1.5158850148726657e-308,-1.51359515838939e-308,-1.5113122094670463e-308,-1.509036136896774e-308,-1.5067669096574366e-308,-1.5045044969142117e-308,-1.502248868017191e-308,-1.4999999925e-308,-1.497757840078425e-308,-1.4955223806490533e-308,-1.493293584287926e-308,-1.491071421249203e-308,-1.48885586196384e-308,-1.4866468770382765e-308,-1.484444437253136e-308,-1.4822485135619374e-308,-1.48005907708982e-308,-1.4778760991322734e-308,-1.475699551153889e-308,-1.4735294047871106e-308,-1.471365631831008e-308,-1.4692082042500496e-308,-1.467057094172896e-308,-1.4649122738911973e-308,-1.462773715858405e-308,-1.4606413926885907e-308,-1.4585152771552793e-308,-1.456395342190289e-308,-1.454281560882582e-308,-1.4521739064771267e-308,-1.4500723523737696e-308,-1.4479768721261153e-308,-1.4458874394404154e-308,-1.443804028174472e-308,-1.441726612336546e-308,-1.4396551660842747e-308,-1.4375896637236036e-308,-1.43553007970772e-308,-1.4334763886360034e-308,-1.4314285652529797e-308,-1.4293865844472844e-308,-1.427350421250639e-308,-1.4253200508368324e-308,-1.4232954485207094e-308,-1.4212765897571753e-308,-1.4192634501401986e-308,-1.417256005401831e-308,-1.4152542314112326e-308,-1.4132581041737005e-308,-1.411267599829716e-308,-1.4092826946539907e-308,-1.4073033650545226e-308,-1.4053295875716655e-308,-1.403361338877198e-308,-1.401398595773407e-308,-1.3994413351921755e-308,-1.3974895341940795e-308,-1.3955431699674893e-308,-1.393602219827685e-308,-1.391666661215972e-308,-1.3897364716988077e-308,-1.3878116289669357e-308,-1.3858921108345243e-308,-1.383977895238317e-308,-1.3820689602367847e-308,-1.380165284009289e-308,-1.378266844855249e-308,-1.3763736211933193e-308,-1.374485591560568e-308,-1.372602734611672e-308,-1.3707250291181054e-308,-1.3688524539673474e-308,-1.366984988162088e-308,-1.3651226108194434e-308,-1.363265301170179e-308,-1.3614130385579365e-308,-1.3595658024384674e-308,-1.357723572378875e-308,-1.3558863280568593e-308,-1.3540540492599705e-308,-1.3522267158848695e-308,-1.3504043079365886e-308,-1.3485868055278063e-308,-1.346774188878122e-308,-1.344966438313337e-308,-1.343163534264747e-308,-1.341365457268431e-308,-1.339572187964554e-308,-1.337783707096672e-308,-1.33599999551104e-308,-1.3342210341559326e-308,-1.332446804080961e-308,-1.3306772864364056e-308,-1.3289124624725427e-308,-1.327152313538985e-308,-1.325396821084026e-308,-1.323645966653986e-308,-1.3218997318925653e-308,-1.3201580985402055e-308,-1.3184210484334486e-308,-1.316688563504311e-308,-1.3149606257796515e-308,-1.3132372173805543e-308,-1.31151832052171e-308,-1.3098039175108033e-308,-1.308093990747909e-308,-1.306388522724885e-308,-1.3046874960247803e-308,-1.302990893321237e-308,-1.301298697377905e-308,-1.2996108910478584e-308,-1.297927457273014e-308,-1.296248379083559e-308,-1.2945736395973798e-308,-1.292903222019496e-308,-1.2912371096415e-308,-1.289575285840998e-308,-1.2879177340810594e-308,-1.286264437909667e-308,-1.2846153809591717e-308,-1.2829705469457557e-308,-1.281329919668893e-308,-1.279693483010819e-308,-1.278061220936003e-308,-1.276433117490624e-308,-1.274809156802051e-308,-1.2731893230783266e-308,-1.2715736006076554e-308,-1.2699619737578974e-308,-1.2683544269760615e-308,-1.266750944787807e-308,-1.265151511796947e-308,-1.263556112684953e-308,-1.26196473221047e-308,-1.260377355208829e-308,-1.2587939665915633e-308,-1.257214551345935e-308,-1.2556390945344565e-308,-1.2540675812944217e-308,-1.2524999968374376e-308,-1.2509363264489614e-308,-1.249376555487839e-308,-1.247820669385849e-308,-1.2462686536472487e-308,-1.244720493848324e-308,-1.2431761756369415e-308,-1.241635684732107e-308,-1.2400990069235247e-308,-1.238566128071159e-308,-1.237037034104801e-308,-1.235511711023641e-308,-1.233990144895836e-308,-1.23247232185809e-308,-1.2309582281152313e-308,-1.2294478499397945e-308,-1.2279411736716045e-308,-1.2264381857173676e-308,-1.22493887255026e-308,-1.2234432207095225e-308,-1.2219512168000596e-308,-1.2204628474920366e-308,-1.218978099520486e-308,-1.2174969596849095e-308,-1.21601941484889e-308,-1.2145454519397024e-308,-1.2130750579479274e-308,-1.2116082199270683e-308,-1.2101449249931734e-308,-1.2086851603244565e-308,-1.2072289131609233e-308,-1.2057761708039983e-308,-1.204326920616159e-308,-1.202881150020565e-308,-1.2014388465006987e-308,-1.1999999976e-308,-1.1985645909215105e-308,-1.1971326141275163e-308,-1.195704054939195e-308,-1.194278901136264e-308,-1.1928571405566327e-308,-1.1914387610960567e-308,-1.190023750707793e-308,-1.188612097402262e-308,-1.187203789246704e-308,-1.185798814364847e-308,-1.1843971609365726e-308,-1.182998817197582e-308,-1.1816037714390685e-308,-1.1802120120073916e-308,-1.178823527303751e-308,-1.177438305783864e-308,-1.176056335957647e-308,-1.174677606388898e-308,-1.17330210569498e-308,-1.1719298225465065e-308,-1.1705607456670344e-308,-1.169194863832751e-308,-1.16783216587217e-308,-1.1664726406658254e-308,-1.165116277145971e-308,-1.1637630642962766e-308,-1.1624129911515335e-308,-1.161066046797356e-308,-1.159722220369888e-308,-1.1583815010555113e-308,-1.157043878090555e-308,-1.155709340761006e-308,-1.1543778784022277e-308,-1.15304948039867e-308,-1.151724136183591e-308,-1.1504018352387757e-308,-1.1490825670942577e-308,-1.147766321328043e-308,-1.1464530875658355e-308,-1.145142855480764e-308,-1.143835614793113e-308,-1.142531355270052e-308,-1.14123006672537e-308,-1.1399317390192083e-308,-1.1386363620577996e-308,-1.137343925793205e-308,-1.136054420223055e-308,-1.1347678353902903e-308,-1.1334841613829056e-308,-1.1322033883336974e-308,-1.130925506420007e-308,-1.129650505863475e-308,-1.1283783769297847e-308,-1.1271091099284216e-308,-1.125842695212423e-308,-1.124579123178134e-308,-1.1233183842649663e-308,-1.122060468955156e-308,-1.120805367773524e-308,-1.1195530712872384e-308,-1.1183035701055785e-308,-1.117056854879699e-308,-1.1158129163023993e-308,-1.1145717451078875e-308,-1.113333332071556e-308,-1.1120976680097463e-308,-1.1108647437795293e-308,-1.1096345502784735e-308,-1.108407078444426e-308,-1.1071823192552853e-308,-1.105960263728784e-308,-1.104740902922267e-308,-1.103524227932475e-308,-1.102310229895326e-308,-1.1010988999857023e-308,-1.0998902294172336e-308,-1.098684209442088e-308,-1.097480831350758e-308,-1.096280086471853e-308,-1.0950819661718893e-308,-1.093886461855085e-308,-1.092693564963152e-308,-1.091503266975095e-308,-1.0903155594070055e-308,-1.089130433811862e-308,-1.087947881779329e-308,-1.0867678949355593e-308,-1.085590464942994e-308,-1.0844155835001687e-308,-1.0832432423415166e-308,-1.082073433237175e-308,-1.080906147992794e-308,-1.079741378449344e-308,-1.0785791164829246e-308,-1.0774193540045787e-308,-1.076262082960101e-308,-1.075107295329855e-308,-1.073954983128586e-308,-1.0728051384052385e-308,-1.0716577532427695e-308,-1.0705128197579715e-308,-1.0693703301012906e-308,-1.0682302764566444e-308,-1.0670926510412475e-308,-1.065957446105432e-308,-1.0648246539324727e-308,-1.0636942668384114e-308,-1.062566277171883e-308,-1.0614406773139453e-308,-1.060317459677904e-308,-1.0591966167091437e-308,-1.0580781408849597e-308,-1.0569620247143887e-308,-1.0558482607380404e-308,-1.0547368415279333e-308,-1.053627759687329e-308,-1.052521007850567e-308,-1.0514165786829024e-308,-1.050314464880345e-308,-1.0492146591694965e-308,-1.0481171543073914e-308,-1.047021943081338e-308,-1.045929018308759e-308,-1.044838372837038e-308,-1.0437499995433595e-308,-1.0426638913345555e-308,-1.041580041146952e-308,-1.040498441946216e-308,-1.0394190867272e-308,-1.0383419685137966e-308,-1.0372670803587824e-308,-1.0361944153436733e-308,-1.035123966578572e-308,-1.0340557272020243e-308,-1.0329896903808694e-308,-1.0319258493100955e-308,-1.0308641972126965e-308,-1.0298047273395236e-308,-1.028747432969149e-308,-1.027692307407716e-308,-1.026639343988805e-308,-1.0255885360732884e-308,-1.024539877049193e-308,-1.0234933603315593e-308,-1.022448979362307e-308,-1.0214067276100966e-308,-1.0203665985701904e-308,-1.019328585764321e-308,-1.0182926827405565e-308,-1.0172588830731634e-308,-1.0162271803624785e-308,-1.015197568234772e-308,-1.0141700403421215e-308,-1.0131445903622763e-308,-1.0121212119985305e-308,-1.011099898979595e-308,-1.010080645059468e-308,-1.0090634440173054e-308,-1.0080482896572997e-308,-1.0070351758085504e-308,-1.006024096324938e-308,-1.005015045085004e-308,-1.0040080159918234e-308,-1.0030030029728826e-308,-1.00199999997996e-308,-1.0009990009890007e-308,-1.0e-308],"x":[-1.0e300,-9.980139820359282e304,-1.996017964071856e305,-2.9940219461077846e305,-3.992025928143712e305,-4.990029910179641e305,-5.988033892215569e305,-6.986037874251497e305,-7.984041856287425e305,-8.982045838323353e305,-9.98004982035928e305,-1.097805380239521e306,-1.1976057784431138e306,-1.2974061766467066e306,-1.3972065748502995e306,-1.4970069730538922e306,-1.596807371257485e306,-1.696607769461078e306,-1.7964081676646707e306,-1.8962085658682634e306,-1.9960089640718562e306,-2.0958093622754492e306,-2.195609760479042e306,-2.2954101586826347e306,-2.3952105568862277e306,-2.4950109550898204e306,-2.5948113532934132e306,-2.694611751497006e306,-2.794412149700599e306,-2.8942125479041914e306,-2.9940129461077844e306,-3.0938133443113774e306,-3.19361374251497e306,-3.293414140718563e306,-3.393214538922156e306,-3.4930149371257484e306,-3.5928153353293414e306,-3.6926157335329344e306,-3.792416131736527e306,-3.89221652994012e306,-3.9920169281437123e306,-4.0918173263473054e306,-4.1916177245508984e306,-4.291418122754491e306,-4.391218520958084e306,-4.491018919161677e306,-4.5908193173652693e306,-4.6906197155688624e306,-4.7904201137724554e306,-4.890220511976048e306,-4.990020910179641e306,-5.089821308383233e306,-5.1896217065868263e306,-5.2894221047904194e306,-5.389222502994012e306,-5.489022901197605e306,-5.588823299401198e306,-5.688623697604791e306,-5.788424095808383e306,-5.888224494011976e306,-5.988024892215569e306,-6.087825290419162e306,-6.187625688622755e306,-6.287426086826348e306,-6.38722648502994e306,-6.487026883233533e306,-6.586827281437126e306,-6.686627679640719e306,-6.786428077844312e306,-6.886228476047904e306,-6.986028874251497e306,-7.08582927245509e306,-7.185629670658683e306,-7.285430068862276e306,-7.385230467065869e306,-7.485030865269461e306,-7.584831263473054e306,-7.684631661676647e306,-7.78443205988024e306,-7.884232458083833e306,-7.984032856287425e306,-8.083833254491018e306,-8.183633652694611e306,-8.283434050898204e306,-8.383234449101797e306,-8.48303484730539e306,-8.582835245508982e306,-8.682635643712575e306,-8.782436041916168e306,-8.882236440119761e306,-8.982036838323354e306,-9.081837236526946e306,-9.181637634730539e306,-9.281438032934132e306,-9.381238431137725e306,-9.481038829341318e306,-9.580839227544911e306,-9.680639625748503e306,-9.780440023952096e306,-9.880240422155689e306,-9.980040820359282e306,-1.0079841218562875e307,-1.0179641616766467e307,-1.027944201497006e307,-1.0379242413173653e307,-1.0479042811377246e307,-1.0578843209580839e307,-1.0678643607784432e307,-1.0778444005988024e307,-1.0878244404191617e307,-1.097804480239521e307,-1.1077845200598803e307,-1.1177645598802396e307,-1.1277445997005988e307,-1.1377246395209582e307,-1.1477046793413174e307,-1.1576847191616765e307,-1.167664758982036e307,-1.1776447988023952e307,-1.1876248386227546e307,-1.1976048784431138e307,-1.2075849182634732e307,-1.2175649580838324e307,-1.2275449979041915e307,-1.237525037724551e307,-1.2475050775449102e307,-1.2574851173652696e307,-1.2674651571856288e307,-1.277445197005988e307,-1.2874252368263474e307,-1.2974052766467066e307,-1.307385316467066e307,-1.3173653562874252e307,-1.3273453961077843e307,-1.3373254359281438e307,-1.347305475748503e307,-1.3572855155688624e307,-1.3672655553892216e307,-1.3772455952095807e307,-1.3872256350299402e307,-1.3972056748502993e307,-1.4071857146706588e307,-1.417165754491018e307,-1.4271457943113774e307,-1.4371258341317366e307,-1.4471058739520957e307,-1.4570859137724552e307,-1.4670659535928143e307,-1.4770459934131738e307,-1.487026033233533e307,-1.4970060730538921e307,-1.5069861128742516e307,-1.5169661526946107e307,-1.5269461925149702e307,-1.5369262323353294e307,-1.5469062721556885e307,-1.556886311976048e307,-1.5668663517964071e307,-1.5768463916167666e307,-1.5868264314371258e307,-1.596806471257485e307,-1.6067865110778444e307,-1.6167665508982035e307,-1.626746590718563e307,-1.6367266305389221e307,-1.6467066703592816e307,-1.6566867101796408e307,-1.66666675e307,-1.6766467898203594e307,-1.6866268296407185e307,-1.696606869461078e307,-1.7065869092814372e307,-1.7165669491017963e307,-1.7265469889221558e307,-1.736527028742515e307,-1.7465070685628744e307,-1.7564871083832335e307,-1.7664671482035927e307,-1.7764471880239522e307,-1.7864272278443113e307,-1.7964072676646708e307,-1.80638730748503e307,-1.816367347305389e307,-1.8263473871257486e307,-1.8363274269461077e307,-1.8463074667664672e307,-1.8562875065868263e307,-1.8662675464071858e307,-1.876247586227545e307,-1.8862276260479041e307,-1.8962076658682636e307,-1.9061877056886227e307,-1.9161677455089822e307,-1.9261477853293413e307,-1.9361278251497005e307,-1.94610786497006e307,-1.9560879047904191e307,-1.9660679446107786e307,-1.9760479844311377e307,-1.986028024251497e307,-1.9960080640718563e307,-2.0059881038922155e307,-2.015968143712575e307,-2.0259481835329341e307,-2.0359282233532933e307,-2.0459082631736527e307,-2.055888302994012e307,-2.0658683428143714e307,-2.0758483826347305e307,-2.08582842245509e307,-2.0958084622754491e307,-2.1057885020958083e307,-2.1157685419161678e307,-2.125748581736527e307,-2.1357286215568864e307,-2.1457086613772455e307,-2.1556887011976047e307,-2.1656687410179641e307,-2.1756487808383233e307,-2.1856288206586828e307,-2.195608860479042e307,-2.205588900299401e307,-2.2155689401197605e307,-2.2255489799401197e307,-2.2355290197604792e307,-2.2455090595808383e307,-2.2554890994011975e307,-2.265469139221557e307,-2.2754491790419164e307,-2.2854292188622753e307,-2.2954092586826347e307,-2.305389298502994e307,-2.315369338323353e307,-2.3253493781437125e307,-2.335329417964072e307,-2.3453094577844314e307,-2.3552894976047903e307,-2.3652695374251497e307,-2.375249577245509e307,-2.385229617065868e307,-2.3952096568862275e307,-2.405189696706587e307,-2.4151697365269464e307,-2.4251497763473053e307,-2.4351298161676647e307,-2.445109855988024e307,-2.455089895808383e307,-2.4650699356287425e307,-2.475049975449102e307,-2.485030015269461e307,-2.4950100550898203e307,-2.5049900949101797e307,-2.514970134730539e307,-2.524950174550898e307,-2.5349302143712575e307,-2.544910254191617e307,-2.554890294011976e307,-2.5648703338323353e307,-2.5748503736526947e307,-2.5848304134730537e307,-2.594810453293413e307,-2.6047904931137725e307,-2.614770532934132e307,-2.624750572754491e307,-2.6347306125748503e307,-2.64471065239521e307,-2.6546906922155687e307,-2.664670732035928e307,-2.6746507718562875e307,-2.684630811676647e307,-2.694610851497006e307,-2.7045908913173653e307,-2.714570931137725e307,-2.7245509709580837e307,-2.734531010778443e307,-2.7445110505988025e307,-2.7544910904191615e307,-2.764471130239521e307,-2.7744511700598803e307,-2.78443120988024e307,-2.7944112497005987e307,-2.804391289520958e307,-2.8143713293413175e307,-2.8243513691616765e307,-2.834331408982036e307,-2.8443114488023953e307,-2.854291488622755e307,-2.8642715284431137e307,-2.874251568263473e307,-2.8842316080838326e307,-2.8942116479041915e307,-2.904191687724551e307,-2.9141717275449103e307,-2.9241517673652693e307,-2.9341318071856287e307,-2.944111847005988e307,-2.9540918868263476e307,-2.9640719266467065e307,-2.974051966467066e307,-2.9840320062874253e307,-2.9940120461077843e307,-3.0039920859281437e307,-3.013972125748503e307,-3.023952165568862e307,-3.0339322053892215e307,-3.043912245209581e307,-3.0538922850299404e307,-3.0638723248502993e307,-3.0738523646706587e307,-3.083832404491018e307,-3.093812444311377e307,-3.1037924841317365e307,-3.113772523952096e307,-3.1237525637724554e307,-3.1337326035928143e307,-3.1437126434131737e307,-3.153692683233533e307,-3.163672723053892e307,-3.1736527628742515e307,-3.183632802694611e307,-3.19361284251497e307,-3.2035928823353293e307,-3.2135729221556887e307,-3.223552961976048e307,-3.233533001796407e307,-3.2435130416167665e307,-3.253493081437126e307,-3.263473121257485e307,-3.2734531610778443e307,-3.2834332008982037e307,-3.293413240718563e307,-3.303393280538922e307,-3.3133733203592815e307,-3.323353360179641e307,-3.3333334e307,-3.3433134398203593e307,-3.3532934796407187e307,-3.3632735194610777e307,-3.373253559281437e307,-3.3832335991017965e307,-3.393213638922156e307,-3.403193678742515e307,-3.4131737185628743e307,-3.4231537583832337e307,-3.4331337982035927e307,-3.443113838023952e307,-3.4530938778443115e307,-3.4630739176646705e307,-3.47305395748503e307,-3.4830339973053893e307,-3.4930140371257487e307,-3.5029940769461077e307,-3.512974116766467e307,-3.5229541565868265e307,-3.5329341964071855e307,-3.542914236227545e307,-3.5528942760479043e307,-3.5628743158682637e307,-3.5728543556886227e307,-3.582834395508982e307,-3.5928144353293415e307,-3.6027944751497005e307,-3.61277451497006e307,-3.6227545547904193e307,-3.632734594610778e307,-3.6427146344311377e307,-3.652694674251497e307,-3.6626747140718565e307,-3.6726547538922155e307,-3.682634793712575e307,-3.6926148335329343e307,-3.7025948733532933e307,-3.7125749131736527e307,-3.722554952994012e307,-3.7325349928143715e307,-3.7425150326347305e307,-3.75249507245509e307,-3.7624751122754493e307,-3.7724551520958083e307,-3.7824351919161677e307,-3.792415231736527e307,-3.802395271556886e307,-3.8123753113772455e307,-3.822355351197605e307,-3.8323353910179643e307,-3.8423154308383233e307,-3.8522954706586827e307,-3.862275510479042e307,-3.872255550299401e307,-3.8822355901197605e307,-3.89221562994012e307,-3.902195669760479e307,-3.9121757095808383e307,-3.9221557494011977e307,-3.932135789221557e307,-3.942115829041916e307,-3.9520958688622755e307,-3.962075908682635e307,-3.972055948502994e307,-3.9820359883233533e307,-3.9920160281437127e307,-4.001996067964072e307,-4.011976107784431e307,-4.0219561476047905e307,-4.03193618742515e307,-4.041916227245509e307,-4.0518962670658683e307,-4.0618763068862277e307,-4.0718563467065866e307,-4.081836386526946e307,-4.0918164263473055e307,-4.101796466167665e307,-4.111776505988024e307,-4.1217565458083833e307,-4.1317365856287427e307,-4.1417166254491016e307,-4.151696665269461e307,-4.1616767050898205e307,-4.17165674491018e307,-4.181636784730539e307,-4.1916168245508983e307,-4.2015968643712577e307,-4.2115769041916166e307,-4.221556944011976e307,-4.2315369838323355e307,-4.2415170236526944e307,-4.251497063473054e307,-4.2614771032934133e307,-4.2714571431137727e307,-4.2814371829341316e307,-4.291417222754491e307,-4.3013972625748505e307,-4.3113773023952094e307,-4.321357342215569e307,-4.3313373820359283e307,-4.341317421856287e307,-4.3512974616766467e307,-4.361277501497006e307,-4.3712575413173655e307,-4.3812375811377244e307,-4.391217620958084e307,-4.4011976607784433e307,-4.411177700598802e307,-4.4211577404191617e307,-4.431137780239521e307,-4.4411178200598805e307,-4.4510978598802394e307,-4.461077899700599e307,-4.4710579395209583e307,-4.481037979341317e307,-4.4910180191616767e307,-4.500998058982036e307,-4.510978098802395e307,-4.520958138622754e307,-4.530938178443114e307,-4.540918218263473e307,-4.550898258083833e307,-4.560878297904191e307,-4.570858337724551e307,-4.58083837754491e307,-4.590818417365269e307,-4.600798457185629e307,-4.610778497005988e307,-4.620758536826348e307,-4.630738576646706e307,-4.640718616467066e307,-4.650698656287425e307,-4.660678696107784e307,-4.670658735928144e307,-4.680638775748503e307,-4.690618815568863e307,-4.700598855389221e307,-4.710578895209581e307,-4.72055893502994e307,-4.730538974850299e307,-4.740519014670659e307,-4.750499054491018e307,-4.760479094311378e307,-4.770459134131736e307,-4.780439173952096e307,-4.790419213772455e307,-4.800399253592814e307,-4.810379293413174e307,-4.820359333233533e307,-4.830339373053893e307,-4.840319412874251e307,-4.850299452694611e307,-4.86027949251497e307,-4.870259532335329e307,-4.880239572155689e307,-4.890219611976048e307,-4.900199651796407e307,-4.910179691616766e307,-4.920159731437126e307,-4.930139771257485e307,-4.940119811077844e307,-4.950099850898204e307,-4.960079890718563e307,-4.970059930538922e307,-4.980039970359281e307,-4.990020010179641e307,-5.00000005e307,-5.009980089820359e307,-5.019960129640719e307,-5.029940169461078e307,-5.039920209281437e307,-5.049900249101796e307,-5.059880288922156e307,-5.069860328742515e307,-5.079840368562874e307,-5.089820408383234e307,-5.099800448203593e307,-5.109780488023952e307,-5.119760527844311e307,-5.129740567664671e307,-5.13972060748503e307,-5.149700647305389e307,-5.159680687125749e307,-5.169660726946107e307,-5.179640766766467e307,-5.189620806586826e307,-5.199600846407186e307,-5.209580886227545e307,-5.219560926047904e307,-5.229540965868264e307,-5.239521005688622e307,-5.249501045508982e307,-5.259481085329341e307,-5.269461125149701e307,-5.27944116497006e307,-5.28942120479042e307,-5.299401244610779e307,-5.309381284431137e307,-5.319361324251497e307,-5.329341364071856e307,-5.339321403892216e307,-5.349301443712575e307,-5.359281483532935e307,-5.369261523353294e307,-5.379241563173652e307,-5.389221602994012e307,-5.399201642814371e307,-5.409181682634731e307,-5.41916172245509e307,-5.42914176227545e307,-5.439121802095809e307,-5.449101841916167e307,-5.459081881736527e307,-5.469061921556886e307,-5.479041961377246e307,-5.489022001197605e307,-5.499002041017965e307,-5.508982080838323e307,-5.518962120658682e307,-5.528942160479042e307,-5.538922200299401e307,-5.548902240119761e307,-5.55888227994012e307,-5.56886231976048e307,-5.578842359580838e307,-5.588822399401197e307,-5.598802439221557e307,-5.608782479041916e307,-5.618762518862276e307,-5.628742558682635e307,-5.638722598502995e307,-5.648702638323353e307,-5.658682678143712e307,-5.668662717964072e307,-5.678642757784431e307,-5.688622797604791e307,-5.69860283742515e307,-5.70858287724551e307,-5.718562917065868e307,-5.728542956886227e307,-5.738522996706587e307,-5.748503036526946e307,-5.758483076347306e307,-5.768463116167665e307,-5.778443155988024e307,-5.788423195808383e307,-5.798403235628742e307,-5.808383275449102e307,-5.818363315269461e307,-5.828343355089821e307,-5.83832339491018e307,-5.848303434730539e307,-5.858283474550898e307,-5.868263514371257e307,-5.878243554191617e307,-5.888223594011976e307,-5.898203633832336e307,-5.908183673652695e307,-5.918163713473054e307,-5.928143753293413e307,-5.938123793113772e307,-5.948103832934132e307,-5.958083872754491e307,-5.968063912574851e307,-5.97804395239521e307,-5.988023992215569e307,-5.998004032035928e307,-6.007984071856287e307,-6.017964111676647e307,-6.027944151497006e307,-6.037924191317366e307,-6.047904231137724e307,-6.057884270958084e307,-6.067864310778443e307,-6.077844350598802e307,-6.087824390419162e307,-6.097804430239521e307,-6.107784470059881e307,-6.117764509880239e307,-6.127744549700599e307,-6.137724589520958e307,-6.147704629341317e307,-6.157684669161677e307,-6.167664708982036e307,-6.177644748802396e307,-6.187624788622754e307,-6.197604828443114e307,-6.207584868263473e307,-6.217564908083832e307,-6.227544947904192e307,-6.237524987724551e307,-6.247505027544911e307,-6.257485067365269e307,-6.267465107185629e307,-6.277445147005988e307,-6.287425186826347e307,-6.297405226646707e307,-6.307385266467066e307,-6.317365306287426e307,-6.327345346107784e307,-6.337325385928144e307,-6.347305425748503e307,-6.357285465568862e307,-6.367265505389222e307,-6.377245545209581e307,-6.38722558502994e307,-6.397205624850299e307,-6.407185664670659e307,-6.417165704491018e307,-6.427145744311377e307,-6.437125784131737e307,-6.447105823952096e307,-6.457085863772455e307,-6.467065903592814e307,-6.477045943413174e307,-6.487025983233533e307,-6.497006023053892e307,-6.506986062874252e307,-6.516966102694611e307,-6.52694614251497e307,-6.536926182335329e307,-6.546906222155689e307,-6.556886261976048e307,-6.566866301796407e307,-6.576846341616767e307,-6.586826381437126e307,-6.596806421257485e307,-6.606786461077844e307,-6.616766500898204e307,-6.626746540718563e307,-6.636726580538922e307,-6.646706620359282e307,-6.65668666017964e307,-6.6666667e307,-6.676646739820359e307,-6.686626779640719e307,-6.696606819461078e307,-6.706586859281437e307,-6.716566899101797e307,-6.726546938922155e307,-6.736526978742515e307,-6.746507018562874e307,-6.756487058383234e307,-6.766467098203593e307,-6.776447138023952e307,-6.786427177844312e307,-6.79640721766467e307,-6.80638725748503e307,-6.816367297305389e307,-6.826347337125749e307,-6.836327376946108e307,-6.846307416766467e307,-6.856287456586827e307,-6.866267496407185e307,-6.876247536227545e307,-6.886227576047904e307,-6.896207615868264e307,-6.906187655688623e307,-6.916167695508982e307,-6.926147735329341e307,-6.9361277751497e307,-6.94610781497006e307,-6.956087854790419e307,-6.966067894610779e307,-6.976047934431138e307,-6.986027974251497e307,-6.996008014071856e307,-7.005988053892215e307,-7.015968093712575e307,-7.025948133532934e307,-7.035928173353294e307,-7.045908213173653e307,-7.055888252994012e307,-7.065868292814371e307,-7.07584833263473e307,-7.08582837245509e307,-7.095808412275449e307,-7.105788452095809e307,-7.115768491916168e307,-7.125748531736527e307,-7.135728571556886e307,-7.145708611377245e307,-7.155688651197605e307,-7.165668691017964e307,-7.175648730838324e307,-7.185628770658683e307,-7.195608810479042e307,-7.205588850299401e307,-7.21556889011976e307,-7.22554892994012e307,-7.235528969760479e307,-7.245509009580839e307,-7.255489049401198e307,-7.265469089221556e307,-7.275449129041916e307,-7.285429168862275e307,-7.295409208682635e307,-7.305389248502994e307,-7.315369288323354e307,-7.325349328143713e307,-7.3353293679640715e307,-7.345309407784431e307,-7.35528944760479e307,-7.36526948742515e307,-7.375249527245509e307,-7.385229567065869e307,-7.395209606886228e307,-7.405189646706587e307,-7.415169686526946e307,-7.425149726347305e307,-7.435129766167665e307,-7.445109805988024e307,-7.455089845808384e307,-7.465069885628743e307,-7.475049925449102e307,-7.485029965269461e307,-7.49501000508982e307,-7.50499004491018e307,-7.514970084730539e307,-7.524950124550899e307,-7.534930164371257e307,-7.544910204191617e307,-7.554890244011976e307,-7.564870283832335e307,-7.574850323652695e307,-7.584830363473054e307,-7.594810403293414e307,-7.604790443113772e307,-7.614770482934132e307,-7.624750522754491e307,-7.63473056257485e307,-7.64471060239521e307,-7.654690642215569e307,-7.664670682035929e307,-7.674650721856287e307,-7.684630761676647e307,-7.694610801497006e307,-7.704590841317365e307,-7.714570881137725e307,-7.724550920958084e307,-7.734530960778444e307,-7.744511000598802e307,-7.754491040419162e307,-7.764471080239521e307,-7.77445112005988e307,-7.78443115988024e307,-7.794411199700599e307,-7.804391239520958e307,-7.814371279341317e307,-7.824351319161677e307,-7.834331358982036e307,-7.844311398802395e307,-7.854291438622755e307,-7.864271478443114e307,-7.874251518263473e307,-7.884231558083832e307,-7.894211597904192e307,-7.904191637724551e307,-7.91417167754491e307,-7.92415171736527e307,-7.934131757185629e307,-7.944111797005988e307,-7.954091836826347e307,-7.964071876646707e307,-7.974051916467066e307,-7.984031956287425e307,-7.994011996107785e307,-8.003992035928144e307,-8.013972075748503e307,-8.023952115568862e307,-8.033932155389222e307,-8.043912195209581e307,-8.05389223502994e307,-8.0638722748503e307,-8.073852314670659e307,-8.083832354491018e307,-8.093812394311377e307,-8.103792434131737e307,-8.113772473952096e307,-8.123752513772455e307,-8.133732553592815e307,-8.143712593413173e307,-8.153692633233533e307,-8.163672673053892e307,-8.173652712874252e307,-8.183632752694611e307,-8.19361279251497e307,-8.20359283233533e307,-8.213572872155688e307,-8.223552911976048e307,-8.233532951796407e307,-8.243512991616767e307,-8.253493031437126e307,-8.263473071257485e307,-8.273453111077845e307,-8.283433150898203e307,-8.293413190718563e307,-8.303393230538922e307,-8.313373270359282e307,-8.323353310179641e307,-8.33333335e307,-8.34331338982036e307,-8.353293429640718e307,-8.363273469461078e307,-8.373253509281437e307,-8.383233549101797e307,-8.393213588922156e307,-8.403193628742515e307,-8.413173668562874e307,-8.423153708383233e307,-8.433133748203593e307,-8.443113788023952e307,-8.453093827844312e307,-8.463073867664671e307,-8.47305390748503e307,-8.483033947305389e307,-8.493013987125748e307,-8.502994026946108e307,-8.512974066766467e307,-8.522954106586827e307,-8.532934146407186e307,-8.542914186227545e307,-8.552894226047904e307,-8.562874265868263e307,-8.572854305688623e307,-8.582834345508982e307,-8.592814385329342e307,-8.602794425149701e307,-8.61277446497006e307,-8.622754504790419e307,-8.632734544610778e307,-8.642714584431138e307,-8.652694624251497e307,-8.662674664071857e307,-8.672654703892216e307,-8.682634743712574e307,-8.692614783532934e307,-8.702594823353293e307,-8.712574863173653e307,-8.722554902994012e307,-8.732534942814372e307,-8.742514982634731e307,-8.752495022455089e307,-8.762475062275449e307,-8.772455102095808e307,-8.782435141916168e307,-8.792415181736527e307,-8.802395221556887e307,-8.812375261377246e307,-8.822355301197604e307,-8.832335341017964e307,-8.842315380838323e307,-8.852295420658683e307,-8.862275460479042e307,-8.872255500299402e307,-8.882235540119761e307,-8.892215579940119e307,-8.902195619760479e307,-8.912175659580838e307,-8.922155699401198e307,-8.932135739221557e307,-8.942115779041917e307,-8.952095818862276e307,-8.962075858682634e307,-8.972055898502994e307,-8.982035938323353e307,-8.992015978143713e307,-9.001996017964071e307,-9.011976057784432e307,-9.02195609760479e307,-9.03193613742515e307,-9.041916177245509e307,-9.05189621706587e307,-9.061876256886228e307,-9.071856296706586e307,-9.081836336526947e307,-9.091816376347305e307,-9.101796416167665e307,-9.111776455988024e307,-9.121756495808382e307,-9.131736535628743e307,-9.141716575449101e307,-9.151696615269462e307,-9.16167665508982e307,-9.17165669491018e307,-9.181636734730539e307,-9.191616774550897e307,-9.201596814371258e307,-9.211576854191616e307,-9.221556894011977e307,-9.231536933832335e307,-9.241516973652695e307,-9.251497013473054e307,-9.261477053293412e307,-9.271457093113773e307,-9.281437132934131e307,-9.291417172754492e307,-9.30139721257485e307,-9.31137725239521e307,-9.321357292215569e307,-9.331337332035927e307,-9.341317371856288e307,-9.351297411676646e307,-9.361277451497007e307,-9.371257491317365e307,-9.381237531137725e307,-9.391217570958084e307,-9.401197610778442e307,-9.411177650598803e307,-9.421157690419161e307,-9.431137730239522e307,-9.44111777005988e307,-9.45109780988024e307,-9.461077849700599e307,-9.471057889520957e307,-9.481037929341318e307,-9.491017969161676e307,-9.500998008982037e307,-9.510978048802395e307,-9.520958088622756e307,-9.530938128443114e307,-9.540918168263472e307,-9.550898208083833e307,-9.560878247904191e307,-9.570858287724552e307,-9.58083832754491e307,-9.59081836736527e307,-9.600798407185629e307,-9.610778447005987e307,-9.620758486826348e307,-9.630738526646706e307,-9.640718566467067e307,-9.650698606287425e307,-9.660678646107786e307,-9.670658685928144e307,-9.680638725748502e307,-9.690618765568863e307,-9.700598805389221e307,-9.710578845209582e307,-9.72055888502994e307,-9.730538924850299e307,-9.740518964670659e307,-9.750499004491017e307,-9.760479044311378e307,-9.770459084131736e307,-9.780439123952097e307,-9.790419163772455e307,-9.800399203592814e307,-9.810379243413174e307,-9.820359283233532e307,-9.830339323053893e307,-9.840319362874251e307,-9.850299402694612e307,-9.86027944251497e307,-9.870259482335329e307,-9.880239522155689e307,-9.890219561976047e307,-9.900199601796408e307,-9.910179641616766e307,-9.920159681437127e307,-9.930139721257485e307,-9.940119761077844e307,-9.950099800898204e307,-9.960079840718562e307,-9.970059880538923e307,-9.980039920359281e307,-9.990019960179642e307,-1.0e308]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_positive.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_positive.json index 23c8fef7c52b..63de6049ec3c 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/huge_positive.json @@ -1 +1 @@ -{"expected":[1.0e-300,1.0019899700803996e-305,5.00997495012525e-306,3.3399888778370363e-306,2.5049937500405933e-306,2.003996004031968e-306,1.6699972278046017e-306,1.4314265367579942e-306,1.2524984437706837e-306,1.113332104956911e-306,1.0019990060169862e-306,9.109082702635492e-307,8.349993111255683e-307,7.707686443921621e-307,7.157137806248462e-307,6.679995604562892e-307,6.2624961407367526e-307,5.894114231939694e-307,5.566663623557219e-307,5.2736814820900544e-307,5.009997540091208e-307,4.7714263424908375e-307,4.554543425703383e-307,4.3565198847682755e-307,4.174998298688193e-307,4.007998433674212e-307,3.853844707172141e-307,3.711109770988138e-307,3.578570183740229e-307,3.4551712545235752e-307,3.3399989178403507e-307,3.232257052089807e-307,3.1312490508401315e-307,3.0363627447771213e-307,2.947057984484668e-307,2.8628563518908304e-307,2.7833325864724224e-307,2.708107401804421e-307,2.6368414363381198e-307,2.5692301348285587e-307,2.504999397547645e-307,2.4439018661976355e-307,2.385713740408288e-307,2.330232038443599e-307,2.277272231448455e-307,2.2266661931289897e-307,2.1782604168658787e-307,2.131914460430147e-307,2.0874995851094575e-307,2.044897561471964e-307,2.0039996184384724e-307,1.964705515993148e-307,1.9269227248891176e-307,1.8905656992175756e-307,1.855555229802526e-307,1.8218178681342688e-307,1.7892854120242857e-307,1.7578944454017103e-307,1.7275859257170491e-307,1.698304813304841e-307,1.6699997378100412e-307,1.6426226974249252e-307,1.616128787232087e-307,1.5904759534195363e-307,1.5656247705381197e-307,1.5415382393197954e-307,1.5181816028760636e-307,1.4955221793562331e-307,1.473529209371135e-307,1.4521737166843367e-307,1.4314283808441068e-307,1.4112674205788777e-307,1.3916664869097454e-307,1.372602565048249e-307,1.3540538842483777e-307,1.3359998348704203e-307,1.3184208919924018e-307,1.301298544973876e-307,1.284615232437888e-307,1.2683542821910123e-307,1.2524998556493915e-307,1.2370368963813603e-307,1.2219510824152443e-307,1.207228781994789e-307,1.1928570124949122e-307,1.1788234022375224e-307,1.165116154971349e-307,1.1517240168014396e-307,1.1386362453734627e-307,1.1258425811354745e-307,1.113333220515567e-307,1.101098790868022e-307,1.0891303270534132e-307,1.077419249529667e-307,1.0659573438415672e-307,1.0547367414056605e-307,1.043749901496103e-307,1.0329895943447855e-307,1.0224488852761436e-307,1.0121211198034978e-307,1.0019999096196082e-307,9.920791194194766e-308,9.823528544982776e-308,9.72815449071739e-308,9.634614552703473e-308,9.542856327624561e-308,9.452829389647628e-308,9.36448519801736e-308,9.277777009784014e-308,9.192659797335304e-308,9.109090170426505e-308,9.027026302425184e-308,8.946427860507073e-308,8.867255939558361e-308,8.789472999556839e-308,8.713042806220088e-308,8.637930374723593e-308,8.564101916305111e-308,8.491524787584075e-308,8.420167442436314e-308,8.349999386275046e-308,8.280991132598911e-308,8.213114161677011e-308,8.146340881249297e-308,8.080644589128552e-308,8.015999437597481e-308,7.952380399501172e-308,7.889763235941509e-308,7.828124465485877e-308,7.76744133480804e-308,7.707691790684059e-308,7.648854453270821e-308,7.590908590599206e-308,7.533834094217909e-308,7.477611455927855e-308,7.422221745550648e-308,7.367646589677798e-308,7.31386815135066e-308,7.260869110623848e-308,7.208632645967626e-308,7.157142416467375e-308,7.106382544780471e-308,7.056337600813356e-308,7.006992586083451e-308,6.958332918732664e-308,6.910344419161023e-308,6.863013296250727e-308,6.816326134152458e-308,6.7702698796074e-308,6.724831829779762e-308,6.679999620576021e-308,6.635761215428291e-308,6.59210489452045e-308,6.549019244436774e-308,6.506493148213884e-308,6.464515775777751e-308,6.423076574748541e-308,6.382165261596838e-308,6.341771813135733e-308,6.301886458333944e-308,6.262499670435954e-308,6.223602159375813e-308,6.185184864471896e-308,6.147238947390584e-308,6.109755785367356e-308,6.072726964674396e-308,6.0361442743243e-308,5.999999700000014e-308,5.964285418201545e-308,5.928993790600483e-308,5.894117358593786e-308,5.859648838048644e-308,5.825581114230679e-308,5.79190723690803e-308,5.758620415624269e-308,5.7257140151334e-308,5.693181550990457e-308,5.661016685291594e-308,5.629213222557771e-308,5.597765105756387e-308,5.566666412455567e-308,5.535911351105899e-308,5.5054942574447635e-308,5.475409591018554e-308,5.445651931818299e-308,5.416215977024408e-308,5.38709653785641e-308,5.358288536523788e-308,5.329787003274116e-308,5.301587073534906e-308,5.273683985145715e-308,5.24607307567721e-308,5.218749779833993e-308,5.191709626938183e-308,5.164948238490815e-308,5.138461325808293e-308,5.112244687731162e-308,5.086294208402699e-308,5.060605855114792e-308,5.03517567621879e-308,5.009999799099008e-308,4.985074428206736e-308,4.960395843152641e-308,4.935960396855549e-308,4.911764513745683e-308,4.887804688020471e-308,4.86407748195118e-308,4.840579524238613e-308,4.817307508416242e-308,4.794258191299199e-308,4.771428391477558e-308,4.748814987852481e-308,4.726414918213783e-308,4.704225177857575e-308,4.682242818242647e-308,4.660464945684376e-308,4.638888720084883e-308,4.617511353698322e-308,4.596330109930147e-308,4.575342302169268e-308,4.554545292652072e-308,4.533936491357268e-308,4.513513354930611e-308,4.493273385638567e-308,4.473214130349974e-308,4.453333179544894e-308,4.433628166349759e-308,4.414096765598018e-308,4.3947366929155173e-308,4.375545703829833e-308,4.3565215929028397e-308,4.33766219288582e-308,4.318965373896408e-308,4.30042904261674e-308,4.2820511415121674e-308,4.263829648069901e-308,4.245762574057028e-308,4.2278479647973124e-308,4.2100838984662143e-308,4.1924684854036216e-308,4.1749998674437533e-308,4.157676217261759e-308,4.140495737736498e-308,4.1234566613290697e-308,4.106557249476624e-308,4.089795792001003e-308,4.0731706065318306e-308,4.056680037943586e-308,4.040322457806325e-308,4.024096263849619e-308,4.0079998794393636e-308,3.992031753067098e-308,3.976190357851477e-308,3.9604741910515745e-308,3.9448817735916697e-308,3.929411649597236e-308,3.9140623859417754e-308,3.8988325718042696e-308,3.8837208182368887e-308,3.8687257577427317e-308,3.8538460438633175e-308,3.839080350775535e-308,3.8244273728978524e-308,3.8098858245054897e-308,3.795454439354342e-308,3.781131970313424e-308,3.7669171890056e-308,3.7528088854563846e-308,3.7388058677506147e-308,3.7249069616967734e-308,3.7111110104987674e-308,3.6974168744349913e-308,3.6838234305444453e-308,3.6703295723197703e-308,3.656934209407004e-308,3.64363626731187e-308,3.6304346871124793e-308,3.617328425178227e-308,3.60431645289478e-308,3.591397756394961e-308,3.578571336295411e-308,3.5658362074388647e-308,3.5531913986419215e-308,3.5406359524481537e-308,3.528168924886433e-308,3.515789385234351e-308,3.503496415786593e-308,3.4912891116281635e-308,3.479166580412329e-308,3.4671279421431755e-308,3.4551723289626655e-308,3.4432988849420786e-308,3.4315067658777466e-308,3.419795139090964e-308,3.408163183231989e-308,3.396610088088023e-308,3.3851350543950894e-308,3.373737293653711e-308,3.3624160279482924e-308,3.351170489770138e-308,3.339999921844001e-308,3.328903576958093e-308,3.3178807177974665e-308,3.30693061678071e-308,3.296052555899846e-308,3.285245826563398e-308,3.274509729442524e-308,3.263843574320153e-308,3.2532466799430788e-308,3.2427183738768986e-308,3.232257992363789e-308,3.221864880183003e-308,3.2115383905140545e-308,3.201277884802541e-308,3.191082732628506e-308,3.1809523115773256e-308,3.1708860071130436e-308,3.160883212454101e-308,3.150943328451408e-308,3.141065763468717e-308,3.131249933265236e-308,3.1214952608804274e-308,3.111801176520969e-308,3.1021671174497994e-308,3.0925925278772306e-308,3.083076858854061e-308,3.0736195681666615e-308,3.0642201202339883e-308,3.054877986006471e-308,3.0455926428667523e-308,3.0363635745322323e-308,3.0271902709593756e-308,3.018072228249747e-308,3.009008948557748e-308,2.999999940000001e-308,2.9910447165663635e-308,2.9821427980325266e-308,2.9732937098741745e-308,2.964496983182663e-308,2.955752154582192e-308,2.9470587661484442e-308,2.9384163653286446e-308,2.929824504863036e-308,2.921282742707717e-308,2.91279064195883e-308,2.904347770778073e-308,2.8959537023194904e-308,2.887608014657543e-308,2.87931029071641e-308,2.871060118200508e-308,2.862857089526205e-308,2.8547008017546946e-308,2.846590856526021e-308,2.8385268599942223e-308,2.8305084227635747e-308,2.8225351598259085e-308,2.814606690498991e-308,2.8067226383659357e-308,2.7988826312156305e-308,2.791086300984165e-308,2.783333283697223e-308,2.775623219413449e-308,2.767955752168738e-308,2.760330529921454e-308,2.7527472044985515e-308,2.7452054315425793e-308,2.7377048704595547e-308,2.730245184367692e-308,2.7228260400469645e-308,2.715447107889484e-308,2.708108061850695e-308,2.700808579401342e-308,2.69354834148023e-308,2.6863270324477296e-308,2.679144340040036e-308,2.6719999553241606e-308,2.6648935726536335e-308,2.657824889624919e-308,2.6507936070345184e-308,2.6437994288367534e-308,2.6368420621022165e-308,2.629921216976874e-308,2.6230366066418144e-308,2.6161879472736203e-308,2.6093749580053715e-308,2.602597360888245e-308,2.595854880853715e-308,2.5891472456763426e-308,2.5824741859371356e-308,2.5758354349874777e-308,2.56923072891361e-308,2.562659806501659e-308,2.5561224092031967e-308,2.549618281101335e-308,2.543147168877323e-308,2.5367088217776644e-308,2.5303029915817267e-308,2.523929432569841e-308,2.517587901491882e-308,2.511278157536323e-308,2.5049999622997503e-308,2.4987530797568427e-308,2.492537276230787e-308,2.486352320364143e-308,2.480197983090139e-308,2.47407403760439e-308,2.4679802593370384e-308,2.4619164259253005e-308,2.4558823171864193e-308,2.4498777150910146e-308,2.443902403736824e-308,2.4379561693228197e-308,2.432038800123716e-308,2.426150086464833e-308,2.420289820697333e-308,2.414457797173814e-308,2.408653812224252e-308,2.4028776641322914e-308,2.39712915311188e-308,2.3914080812842266e-308,2.3857142526551025e-308,2.380047473092457e-308,2.374407550304351e-308,2.368794293817213e-308,2.363207514954388e-308,2.3576470268150036e-308,2.352112644253125e-308,2.3466041838572035e-308,2.3411214639298196e-308,2.3356643044677006e-308,2.330232527142023e-308,2.324825955278988e-308,2.3194444138406636e-308,2.314087729406099e-308,2.30875573015269e-308,2.303448245837813e-308,2.2981651077807007e-308,2.2929061488445773e-308,2.2876712034190284e-308,2.2824601074026186e-308,2.277272698185744e-308,2.2721088146337177e-308,2.266968297070085e-308,2.2618509872601644e-308,2.256756728394814e-308,2.2516853650744104e-308,2.2466367432930486e-308,2.2416107104229543e-308,2.2366071151990995e-308,2.2316258077040293e-308,2.226666639352889e-308,2.221729462878649e-308,2.216814132317527e-308,2.2119205029946057e-308,2.207048431509636e-308,2.202197775723029e-308,2.197368394742036e-308,2.192560148907105e-308,2.1877728997784183e-308,2.183006510122603e-308,2.178260843899622e-308,2.1735357662498296e-308,2.1688311434811946e-308,2.164146843056692e-308,2.15948273358186e-308,2.154838684792508e-308,2.150214567542596e-308,2.1456102537922593e-308,2.14102561659599e-308,2.136460530090971e-308,2.131914869485559e-308,2.127388511047913e-308,2.1228813320947644e-308,2.118393210980338e-308,2.113924027085403e-308,2.109473660806471e-308,2.105041993545124e-308,2.1006289076974807e-308,2.0962342866437917e-308,2.091858014738168e-308,2.087499977298438e-308,2.083160060596125e-308,2.078838151846559e-308,2.0745341391991053e-308,2.070247911727512e-308,2.0659793594203845e-308,2.061728373171773e-308,2.0574948447718716e-308,2.0532786668978436e-308,2.0490797331047463e-308,2.044897937816577e-308,2.040733176317421e-308,2.036585344742713e-308,2.0324543400706034e-308,2.028340060113426e-308,2.0242424035092747e-308,2.0201612697136775e-308,2.0160965589913726e-308,2.0120481724081867e-308,2.008016011823005e-308,2.00399997987984e-308,1.99999998e-308,1.9960159163743435e-308,1.99204769395563e-308,1.9880952184509637e-308,1.9841583963143224e-308,1.9802371347391775e-308,1.976331341651203e-308,1.9724409257010665e-308,1.9685657962573096e-308,1.964705863399308e-308,1.9608610379103175e-308,1.957031231270599e-308,1.953216355650628e-308,1.949416323904374e-308,1.945631049562673e-308,1.9418604468266634e-308,1.9381044305613027e-308,1.934362916288964e-308,1.9306358201831005e-308,1.9269230590619823e-308,1.9232245503825136e-308,1.919540212234113e-308,1.9158699633326637e-308,1.9122137230145394e-308,1.908571411230694e-308,1.9049429485408204e-308,1.901328256107573e-308,1.8977272556908577e-308,1.89413986964219e-308,1.89056602089911e-308,1.887005632979667e-308,1.8834586299769636e-308,1.879924936553756e-308,1.876404477937129e-308,1.872897179913215e-308,1.8694029688219815e-308,1.8659217715520737e-308,1.862453515535717e-308,1.8589981287436713e-308,1.855555539680247e-308,1.8521256773783744e-308,1.8487084713947253e-308,1.84530385180489e-308,1.8419117491986103e-308,1.838532094675061e-308,1.8351648198381836e-308,1.831809856792075e-308,1.828467138136422e-308,1.825136596961987e-308,1.821818166846149e-308,1.818511781848479e-308,1.81521737650638e-308,1.8119348858307633e-308,1.8086642453017767e-308,1.8054053908645733e-308,1.8021582589251333e-308,1.7989227863461284e-308,1.795698910442826e-308,1.7924865689790417e-308,1.789285700163138e-308,1.7860962426440567e-308,1.7829181355074023e-308,1.779751318271566e-308,1.7765957308838843e-308,1.773451313716845e-308,1.7703180075643347e-308,1.767195753637916e-308,1.764084493563157e-308,1.7609841693759904e-308,1.757894723519114e-308,1.7548160988384283e-308,1.751748238579515e-308,1.7486910863841454e-308,1.7456445862868314e-308,1.74260868271141e-308,1.739583320467665e-308,1.7365684447479795e-308,1.733564001124029e-308,1.730569935543505e-308,1.7275861943268725e-308,1.724612724164166e-308,1.721649472111808e-308,1.718696385589472e-308,1.7157534123769707e-308,1.712820500611177e-308,1.7098975987829795e-308,1.7069846557342654e-308,1.7040816206549357e-308,1.7011884430799524e-308,1.698305072886412e-308,1.695431460290654e-308,1.692567555845394e-308,1.6897133104368846e-308,1.686868675282114e-308,1.6840336019260225e-308,1.681208042238751e-308,1.678391948412919e-308,1.675585272960929e-308,1.6727879687122944e-308,1.669999988811e-308,1.667221286712883e-308,1.6644518161830446e-308,1.6616915312932853e-308,1.6589403864195647e-308,1.6561983362394917e-308,1.653465335729831e-308,1.6507413401640394e-308,1.648026305109829e-308,1.6453201864267516e-308,1.6426229402638e-308,1.639934523057047e-308,1.6372548915272973e-308,1.634584002677762e-308,1.6319218137917645e-308,1.629268282430458e-308,1.6266233664305746e-308,1.6239870239021877e-308,1.621359213226506e-308,1.6187398930536773e-308,1.6161290223006247e-308,1.613526560148895e-308,1.610932466042535e-308,1.6083466996859807e-308,1.6057692210419746e-308,1.603199990329498e-308,1.6006389680217213e-308,1.5980861148439823e-308,1.595541391771776e-308,1.5930047600287637e-308,1.5904761810848073e-308,1.587955616654017e-308,1.5854430286928176e-308,1.582938379398037e-308,1.5804416312050074e-308,1.5779527467856905e-308,1.5754716890468137e-308,1.572998421128031e-308,1.5705329064000946e-308,1.5680751084630474e-308,1.5656249911444336e-308,1.5631825184975214e-308,1.5607476547995455e-308,1.5583203645499687e-308,1.5559006124687516e-308,1.5534883634946456e-308,1.551083582783502e-308,1.54868623570659e-308,1.546296287848937e-308,1.5439137050076805e-308,1.541538453190438e-308,1.539170498613689e-308,1.5368098077011743e-308,1.5344563470823083e-308,1.532110083590607e-308,1.529770984262129e-308,1.5274390163339346e-308,1.5251141472425513e-308,1.522796344622463e-308,1.5204855763046044e-308,1.5181818103148763e-308,1.5158850148726657e-308,1.51359515838939e-308,1.5113122094670463e-308,1.5090361368967734e-308,1.5067669096574366e-308,1.5045044969142117e-308,1.502248868017191e-308,1.4999999925e-308,1.497757840078425e-308,1.4955223806490533e-308,1.493293584287926e-308,1.491071421249203e-308,1.48885586196384e-308,1.486646877038276e-308,1.484444437253136e-308,1.4822485135619374e-308,1.4800590770898194e-308,1.4778760991322734e-308,1.475699551153889e-308,1.473529404787111e-308,1.471365631831008e-308,1.469208204250049e-308,1.467057094172896e-308,1.4649122738911973e-308,1.462773715858405e-308,1.4606413926885907e-308,1.4585152771552793e-308,1.456395342190289e-308,1.454281560882582e-308,1.4521739064771267e-308,1.4500723523737696e-308,1.4479768721261153e-308,1.4458874394404154e-308,1.443804028174472e-308,1.441726612336546e-308,1.4396551660842747e-308,1.4375896637236036e-308,1.43553007970772e-308,1.433476388636004e-308,1.4314285652529797e-308,1.4293865844472844e-308,1.427350421250639e-308,1.4253200508368324e-308,1.4232954485207094e-308,1.4212765897571753e-308,1.4192634501401986e-308,1.417256005401831e-308,1.4152542314112326e-308,1.4132581041737005e-308,1.411267599829716e-308,1.4092826946539907e-308,1.407303365054523e-308,1.4053295875716655e-308,1.403361338877198e-308,1.401398595773407e-308,1.3994413351921755e-308,1.3974895341940795e-308,1.39554316996749e-308,1.393602219827685e-308,1.391666661215972e-308,1.389736471698808e-308,1.3878116289669357e-308,1.385892110834524e-308,1.383977895238317e-308,1.3820689602367847e-308,1.380165284009289e-308,1.3782668448552495e-308,1.376373621193319e-308,1.374485591560568e-308,1.372602734611672e-308,1.370725029118106e-308,1.3688524539673474e-308,1.366984988162088e-308,1.3651226108194434e-308,1.363265301170179e-308,1.3614130385579365e-308,1.3595658024384674e-308,1.357723572378875e-308,1.3558863280568593e-308,1.354054049259971e-308,1.3522267158848695e-308,1.3504043079365886e-308,1.3485868055278063e-308,1.346774188878122e-308,1.344966438313337e-308,1.343163534264747e-308,1.341365457268431e-308,1.339572187964554e-308,1.337783707096672e-308,1.33599999551104e-308,1.334221034155932e-308,1.332446804080961e-308,1.330677286436406e-308,1.3289124624725427e-308,1.327152313538985e-308,1.325396821084026e-308,1.323645966653986e-308,1.3218997318925653e-308,1.3201580985402055e-308,1.3184210484334486e-308,1.316688563504311e-308,1.3149606257796515e-308,1.3132372173805543e-308,1.31151832052171e-308,1.3098039175108033e-308,1.308093990747909e-308,1.306388522724885e-308,1.3046874960247803e-308,1.302990893321237e-308,1.301298697377905e-308,1.2996108910478584e-308,1.297927457273014e-308,1.296248379083559e-308,1.2945736395973798e-308,1.292903222019496e-308,1.2912371096415e-308,1.289575285840998e-308,1.2879177340810594e-308,1.286264437909667e-308,1.2846153809591717e-308,1.2829705469457557e-308,1.281329919668893e-308,1.279693483010819e-308,1.278061220936003e-308,1.276433117490624e-308,1.274809156802051e-308,1.2731893230783266e-308,1.2715736006076554e-308,1.2699619737578974e-308,1.2683544269760615e-308,1.266750944787807e-308,1.265151511796947e-308,1.263556112684953e-308,1.26196473221047e-308,1.260377355208829e-308,1.2587939665915633e-308,1.257214551345935e-308,1.2556390945344565e-308,1.2540675812944217e-308,1.2524999968374376e-308,1.2509363264489614e-308,1.249376555487839e-308,1.247820669385849e-308,1.2462686536472487e-308,1.244720493848324e-308,1.243176175636941e-308,1.241635684732107e-308,1.2400990069235247e-308,1.238566128071159e-308,1.237037034104801e-308,1.235511711023641e-308,1.233990144895836e-308,1.23247232185809e-308,1.230958228115232e-308,1.2294478499397945e-308,1.2279411736716045e-308,1.2264381857173676e-308,1.22493887255026e-308,1.2234432207095225e-308,1.2219512168000596e-308,1.2204628474920366e-308,1.218978099520486e-308,1.2174969596849095e-308,1.21601941484889e-308,1.2145454519397024e-308,1.2130750579479274e-308,1.2116082199270683e-308,1.2101449249931734e-308,1.208685160324457e-308,1.2072289131609233e-308,1.2057761708039983e-308,1.204326920616159e-308,1.2028811500205655e-308,1.2014388465006987e-308,1.1999999976e-308,1.1985645909215105e-308,1.1971326141275163e-308,1.195704054939195e-308,1.194278901136264e-308,1.1928571405566327e-308,1.1914387610960567e-308,1.1900237507077936e-308,1.188612097402262e-308,1.1872037892467035e-308,1.185798814364847e-308,1.1843971609365726e-308,1.182998817197582e-308,1.1816037714390685e-308,1.1802120120073916e-308,1.178823527303751e-308,1.177438305783864e-308,1.1760563359576477e-308,1.174677606388898e-308,1.17330210569498e-308,1.1719298225465065e-308,1.1705607456670344e-308,1.169194863832751e-308,1.16783216587217e-308,1.1664726406658254e-308,1.165116277145971e-308,1.1637630642962766e-308,1.1624129911515335e-308,1.161066046797356e-308,1.159722220369888e-308,1.1583815010555113e-308,1.1570438780905543e-308,1.155709340761006e-308,1.1543778784022277e-308,1.15304948039867e-308,1.151724136183591e-308,1.1504018352387757e-308,1.1490825670942577e-308,1.147766321328043e-308,1.1464530875658355e-308,1.145142855480764e-308,1.143835614793113e-308,1.142531355270052e-308,1.14123006672537e-308,1.1399317390192083e-308,1.1386363620577996e-308,1.137343925793205e-308,1.136054420223055e-308,1.1347678353902903e-308,1.1334841613829056e-308,1.132203388333697e-308,1.130925506420007e-308,1.129650505863475e-308,1.1283783769297847e-308,1.1271091099284216e-308,1.125842695212423e-308,1.124579123178134e-308,1.1233183842649663e-308,1.122060468955156e-308,1.120805367773524e-308,1.1195530712872384e-308,1.1183035701055785e-308,1.117056854879699e-308,1.1158129163023993e-308,1.1145717451078875e-308,1.113333332071556e-308,1.1120976680097463e-308,1.1108647437795293e-308,1.1096345502784735e-308,1.108407078444426e-308,1.1071823192552853e-308,1.105960263728784e-308,1.1047409029222673e-308,1.103524227932475e-308,1.102310229895326e-308,1.1010988999857023e-308,1.0998902294172336e-308,1.098684209442088e-308,1.097480831350758e-308,1.0962800864718526e-308,1.0950819661718893e-308,1.093886461855085e-308,1.092693564963152e-308,1.091503266975095e-308,1.0903155594070055e-308,1.089130433811862e-308,1.087947881779329e-308,1.0867678949355593e-308,1.085590464942994e-308,1.0844155835001687e-308,1.083243242341516e-308,1.082073433237175e-308,1.080906147992794e-308,1.079741378449344e-308,1.0785791164829246e-308,1.0774193540045787e-308,1.076262082960101e-308,1.075107295329855e-308,1.073954983128586e-308,1.0728051384052385e-308,1.071657753242769e-308,1.0705128197579715e-308,1.0693703301012906e-308,1.0682302764566444e-308,1.0670926510412475e-308,1.065957446105432e-308,1.0648246539324727e-308,1.0636942668384114e-308,1.062566277171883e-308,1.0614406773139453e-308,1.060317459677904e-308,1.0591966167091437e-308,1.0580781408849597e-308,1.0569620247143887e-308,1.0558482607380404e-308,1.054736841527934e-308,1.053627759687329e-308,1.052521007850567e-308,1.051416578682902e-308,1.050314464880345e-308,1.0492146591694965e-308,1.0481171543073914e-308,1.047021943081338e-308,1.045929018308759e-308,1.0448383728370384e-308,1.0437499995433595e-308,1.0426638913345555e-308,1.041580041146952e-308,1.040498441946216e-308,1.0394190867272e-308,1.0383419685137966e-308,1.0372670803587824e-308,1.0361944153436733e-308,1.035123966578572e-308,1.0340557272020247e-308,1.0329896903808694e-308,1.0319258493100955e-308,1.030864197212696e-308,1.0298047273395236e-308,1.028747432969149e-308,1.027692307407716e-308,1.0266393439888054e-308,1.0255885360732884e-308,1.024539877049193e-308,1.0234933603315593e-308,1.022448979362307e-308,1.0214067276100966e-308,1.0203665985701904e-308,1.019328585764321e-308,1.018292682740556e-308,1.0172588830731634e-308,1.0162271803624785e-308,1.0151975682347726e-308,1.014170040342122e-308,1.0131445903622763e-308,1.0121212119985305e-308,1.011099898979595e-308,1.010080645059468e-308,1.0090634440173054e-308,1.0080482896573e-308,1.0070351758085504e-308,1.006024096324938e-308,1.005015045085004e-308,1.0040080159918234e-308,1.0030030029728826e-308,1.00199999997996e-308,1.000999000989001e-308,1.0e-308],"x":[1.0e300,9.98013982035928e304,1.996017964071856e305,2.9940219461077846e305,3.992025928143713e305,4.99002991017964e305,5.988033892215569e305,6.986037874251497e305,7.984041856287425e305,8.982045838323353e305,9.98004982035928e305,1.097805380239521e306,1.1976057784431138e306,1.2974061766467066e306,1.3972065748502995e306,1.4970069730538922e306,1.5968073712574852e306,1.696607769461078e306,1.7964081676646707e306,1.8962085658682634e306,1.9960089640718562e306,2.095809362275449e306,2.195609760479042e306,2.2954101586826347e306,2.3952105568862274e306,2.4950109550898204e306,2.5948113532934132e306,2.694611751497006e306,2.794412149700599e306,2.894212547904192e306,2.9940129461077844e306,3.0938133443113774e306,3.19361374251497e306,3.293414140718563e306,3.3932145389221553e306,3.493014937125749e306,3.5928153353293414e306,3.6926157335329344e306,3.792416131736527e306,3.89221652994012e306,3.9920169281437123e306,4.091817326347306e306,4.1916177245508984e306,4.291418122754491e306,4.391218520958084e306,4.491018919161676e306,4.5908193173652693e306,4.6906197155688624e306,4.7904201137724554e306,4.890220511976048e306,4.990020910179641e306,5.089821308383233e306,5.1896217065868263e306,5.2894221047904194e306,5.3892225029940124e306,5.489022901197605e306,5.588823299401198e306,5.688623697604791e306,5.788424095808384e306,5.888224494011976e306,5.988024892215569e306,6.08782529041916e306,6.187625688622755e306,6.287426086826348e306,6.38722648502994e306,6.487026883233533e306,6.586827281437126e306,6.686627679640719e306,6.786428077844312e306,6.886228476047904e306,6.986028874251498e306,7.08582927245509e306,7.185629670658683e306,7.285430068862275e306,7.385230467065869e306,7.485030865269462e306,7.584831263473054e306,7.684631661676647e306,7.784432059880239e306,7.884232458083833e306,7.984032856287426e306,8.083833254491018e306,8.183633652694611e306,8.283434050898204e306,8.383234449101797e306,8.483034847305389e306,8.582835245508982e306,8.682635643712576e306,8.782436041916168e306,8.882236440119761e306,8.982036838323353e306,9.081837236526947e306,9.18163763473054e306,9.28143803293413e306,9.381238431137725e306,9.481038829341318e306,9.580839227544911e306,9.680639625748501e306,9.780440023952096e306,9.88024042215569e306,9.980040820359282e306,1.0079841218562874e307,1.0179641616766467e307,1.0279442014970061e307,1.0379242413173654e307,1.0479042811377244e307,1.0578843209580839e307,1.0678643607784432e307,1.0778444005988024e307,1.0878244404191615e307,1.097804480239521e307,1.1077845200598804e307,1.1177645598802395e307,1.1277445997005988e307,1.1377246395209582e307,1.1477046793413176e307,1.1576847191616768e307,1.167664758982036e307,1.1776447988023952e307,1.1876248386227546e307,1.1976048784431138e307,1.207584918263473e307,1.2175649580838324e307,1.2275449979041918e307,1.237525037724551e307,1.24750507754491e307,1.2574851173652696e307,1.2674651571856288e307,1.277445197005988e307,1.2874252368263474e307,1.2974052766467066e307,1.307385316467066e307,1.3173653562874252e307,1.3273453961077843e307,1.3373254359281438e307,1.347305475748503e307,1.3572855155688624e307,1.3672655553892216e307,1.3772455952095807e307,1.3872256350299404e307,1.3972056748502993e307,1.4071857146706585e307,1.417165754491018e307,1.4271457943113774e307,1.4371258341317366e307,1.4471058739520957e307,1.4570859137724552e307,1.4670659535928146e307,1.4770459934131735e307,1.4870260332335327e307,1.4970060730538924e307,1.5069861128742516e307,1.5169661526946107e307,1.5269461925149702e307,1.5369262323353294e307,1.5469062721556885e307,1.5568863119760477e307,1.5668663517964071e307,1.5768463916167666e307,1.5868264314371258e307,1.5968064712574852e307,1.6067865110778444e307,1.6167665508982035e307,1.626746590718563e307,1.6367266305389221e307,1.6467066703592813e307,1.6566867101796408e307,1.6666667500000002e307,1.6766467898203594e307,1.6866268296407185e307,1.696606869461078e307,1.7065869092814372e307,1.7165669491017963e307,1.7265469889221555e307,1.7365270287425152e307,1.7465070685628744e307,1.7564871083832335e307,1.766467148203593e307,1.776447188023952e307,1.7864272278443113e307,1.7964072676646705e307,1.80638730748503e307,1.8163673473053894e307,1.8263473871257486e307,1.836327426946108e307,1.8463074667664672e307,1.856287506586826e307,1.8662675464071858e307,1.876247586227545e307,1.8862276260479041e307,1.8962076658682636e307,1.906187705688623e307,1.9161677455089822e307,1.926147785329341e307,1.9361278251497005e307,1.94610786497006e307,1.9560879047904191e307,1.9660679446107783e307,1.976047984431138e307,1.9860280242514972e307,1.9960080640718563e307,2.0059881038922155e307,2.0159681437125747e307,2.0259481835329341e307,2.0359282233532933e307,2.0459082631736527e307,2.0558883029940122e307,2.0658683428143714e307,2.0758483826347305e307,2.0858284224550897e307,2.095808462275449e307,2.1057885020958086e307,2.1157685419161678e307,2.125748581736527e307,2.1357286215568864e307,2.1457086613772458e307,2.1556887011976047e307,2.165668741017964e307,2.1756487808383233e307,2.1856288206586828e307,2.195608860479042e307,2.205588900299401e307,2.2155689401197608e307,2.2255489799401197e307,2.235529019760479e307,2.2455090595808383e307,2.2554890994011975e307,2.265469139221557e307,2.2754491790419164e307,2.2854292188622753e307,2.295409258682635e307,2.305389298502994e307,2.315369338323353e307,2.325349378143713e307,2.335329417964072e307,2.345309457784431e307,2.355289497604791e307,2.3652695374251497e307,2.375249577245509e307,2.385229617065868e307,2.395209656886228e307,2.405189696706587e307,2.415169736526946e307,2.4251497763473053e307,2.435129816167664e307,2.445109855988024e307,2.455089895808383e307,2.4650699356287425e307,2.475049975449102e307,2.4850300152694614e307,2.4950100550898203e307,2.5049900949101797e307,2.514970134730539e307,2.524950174550898e307,2.534930214371258e307,2.5449102541916165e307,2.5548902940119764e307,2.5648703338323353e307,2.574850373652694e307,2.584830413473054e307,2.5948104532934126e307,2.6047904931137725e307,2.614770532934132e307,2.624750572754491e307,2.6347306125748503e307,2.64471065239521e307,2.6546906922155687e307,2.664670732035928e307,2.674650771856288e307,2.6846308116766465e307,2.6946108514970064e307,2.7045908913173653e307,2.7145709311377243e307,2.724550970958084e307,2.7345310107784426e307,2.7445110505988025e307,2.7544910904191615e307,2.764471130239521e307,2.7744511700598803e307,2.78443120988024e307,2.7944112497005987e307,2.804391289520958e307,2.8143713293413175e307,2.8243513691616765e307,2.8343314089820364e307,2.8443114488023953e307,2.854291488622755e307,2.8642715284431137e307,2.8742515682634726e307,2.8842316080838326e307,2.8942116479041915e307,2.904191687724551e307,2.91417172754491e307,2.92415176736527e307,2.9341318071856287e307,2.9441118470059876e307,2.9540918868263476e307,2.9640719266467065e307,2.974051966467066e307,2.9840320062874253e307,2.994012046107785e307,3.0039920859281437e307,3.013972125748503e307,3.023952165568862e307,3.0339322053892215e307,3.0439122452095814e307,3.05389228502994e307,3.0638723248503e307,3.073852364670658e307,3.083832404491018e307,3.0938124443113776e307,3.103792484131736e307,3.113772523952096e307,3.1237525637724554e307,3.1337326035928143e307,3.1437126434131737e307,3.1536926832335336e307,3.163672723053892e307,3.1736527628742515e307,3.183632802694611e307,3.19361284251497e307,3.20359288233533e307,3.213572922155688e307,3.223552961976048e307,3.233533001796407e307,3.243513041616766e307,3.253493081437126e307,3.263473121257485e307,3.2734531610778443e307,3.2834332008982037e307,3.293413240718563e307,3.303393280538922e307,3.3133733203592815e307,3.323353360179641e307,3.3333334e307,3.3433134398203593e307,3.3532934796407187e307,3.363273519461078e307,3.373253559281437e307,3.3832335991017965e307,3.3932136389221554e307,3.403193678742515e307,3.4131737185628743e307,3.423153758383233e307,3.433133798203593e307,3.443113838023952e307,3.4530938778443115e307,3.463073917664671e307,3.47305395748503e307,3.4830339973053893e307,3.4930140371257487e307,3.5029940769461077e307,3.512974116766467e307,3.522954156586827e307,3.5329341964071855e307,3.542914236227545e307,3.552894276047904e307,3.562874315868263e307,3.572854355688623e307,3.5828343955089816e307,3.5928144353293415e307,3.602794475149701e307,3.61277451497006e307,3.6227545547904193e307,3.6327345946107787e307,3.6427146344311377e307,3.652694674251497e307,3.6626747140718565e307,3.6726547538922155e307,3.6826347937125754e307,3.692614833532934e307,3.7025948733532933e307,3.7125749131736527e307,3.7225549529940116e307,3.7325349928143715e307,3.7425150326347305e307,3.75249507245509e307,3.7624751122754493e307,3.7724551520958083e307,3.7824351919161677e307,3.792415231736527e307,3.8023952715568865e307,3.8123753113772455e307,3.822355351197605e307,3.8323353910179643e307,3.8423154308383233e307,3.8522954706586827e307,3.8622755104790416e307,3.872255550299401e307,3.8822355901197605e307,3.89221562994012e307,3.902195669760479e307,3.912175709580839e307,3.9221557494011977e307,3.9321357892215566e307,3.9421158290419166e307,3.9520958688622755e307,3.962075908682635e307,3.9720559485029943e307,3.9820359883233533e307,3.9920160281437127e307,4.001996067964072e307,4.011976107784431e307,4.0219561476047905e307,4.0319361874251494e307,4.041916227245509e307,4.051896267065869e307,4.061876306886227e307,4.0718563467065866e307,4.0818363865269466e307,4.091816426347305e307,4.101796466167665e307,4.1117765059880244e307,4.1217565458083833e307,4.1317365856287427e307,4.1417166254491016e307,4.151696665269461e307,4.1616767050898205e307,4.1716567449101794e307,4.181636784730539e307,4.1916168245508983e307,4.201596864371257e307,4.211576904191617e307,4.221556944011976e307,4.231536983832335e307,4.241517023652695e307,4.251497063473054e307,4.2614771032934133e307,4.2714571431137727e307,4.281437182934132e307,4.291417222754491e307,4.30139726257485e307,4.31137730239521e307,4.321357342215569e307,4.3313373820359283e307,4.341317421856287e307,4.3512974616766467e307,4.361277501497006e307,4.371257541317365e307,4.3812375811377244e307,4.391217620958084e307,4.4011976607784433e307,4.411177700598802e307,4.421157740419162e307,4.431137780239521e307,4.44111782005988e307,4.45109785988024e307,4.4610778997005984e307,4.4710579395209583e307,4.4810379793413177e307,4.4910180191616767e307,4.500998058982036e307,4.510978098802395e307,4.520958138622754e307,4.530938178443114e307,4.540918218263473e307,4.550898258083833e307,4.560878297904192e307,4.570858337724551e307,4.58083837754491e307,4.590818417365269e307,4.600798457185629e307,4.610778497005987e307,4.620758536826348e307,4.630738576646706e307,4.640718616467066e307,4.650698656287426e307,4.660678696107784e307,4.670658735928143e307,4.680638775748503e307,4.690618815568863e307,4.700598855389221e307,4.710578895209582e307,4.72055893502994e307,4.730538974850299e307,4.740519014670659e307,4.750499054491018e307,4.760479094311377e307,4.770459134131736e307,4.780439173952097e307,4.790419213772455e307,4.800399253592814e307,4.810379293413174e307,4.820359333233532e307,4.830339373053893e307,4.840319412874252e307,4.850299452694611e307,4.86027949251497e307,4.870259532335329e307,4.880239572155689e307,4.890219611976047e307,4.900199651796407e307,4.910179691616766e307,4.920159731437126e307,4.930139771257485e307,4.940119811077844e307,4.950099850898203e307,4.960079890718563e307,4.970059930538923e307,4.980039970359281e307,4.990020010179641e307,5.00000005e307,5.009980089820359e307,5.019960129640719e307,5.029940169461078e307,5.039920209281437e307,5.049900249101796e307,5.059880288922156e307,5.069860328742515e307,5.079840368562874e307,5.089820408383233e307,5.099800448203593e307,5.109780488023953e307,5.119760527844311e307,5.129740567664671e307,5.13972060748503e307,5.149700647305389e307,5.159680687125749e307,5.169660726946108e307,5.179640766766467e307,5.189620806586826e307,5.199600846407187e307,5.209580886227545e307,5.2195609260479035e307,5.229540965868263e307,5.239521005688623e307,5.249501045508982e307,5.259481085329341e307,5.269461125149701e307,5.279441164970059e307,5.28942120479042e307,5.299401244610779e307,5.309381284431137e307,5.319361324251497e307,5.329341364071857e307,5.339321403892216e307,5.349301443712575e307,5.359281483532935e307,5.369261523353293e307,5.379241563173652e307,5.389221602994013e307,5.399201642814371e307,5.40918168263473e307,5.41916172245509e307,5.42914176227545e307,5.439121802095808e307,5.449101841916168e307,5.459081881736527e307,5.469061921556886e307,5.479041961377247e307,5.489022001197605e307,5.499002041017964e307,5.508982080838323e307,5.518962120658683e307,5.528942160479042e307,5.5389222002994e307,5.548902240119761e307,5.55888227994012e307,5.568862319760479e307,5.578842359580839e307,5.588822399401197e307,5.598802439221556e307,5.608782479041917e307,5.618762518862276e307,5.628742558682634e307,5.638722598502995e307,5.648702638323353e307,5.658682678143712e307,5.668662717964073e307,5.678642757784431e307,5.68862279760479e307,5.69860283742515e307,5.70858287724551e307,5.718562917065868e307,5.728542956886227e307,5.738522996706587e307,5.748503036526946e307,5.758483076347306e307,5.768463116167665e307,5.778443155988024e307,5.788423195808384e307,5.798403235628743e307,5.808383275449102e307,5.818363315269461e307,5.82834335508982e307,5.83832339491018e307,5.84830343473054e307,5.858283474550898e307,5.868263514371257e307,5.878243554191616e307,5.888223594011976e307,5.898203633832336e307,5.908183673652694e307,5.918163713473054e307,5.928143753293414e307,5.938123793113772e307,5.948103832934132e307,5.958083872754491e307,5.96806391257485e307,5.97804395239521e307,5.98802399221557e307,5.998004032035928e307,6.007984071856287e307,6.017964111676646e307,6.027944151497006e307,6.037924191317366e307,6.047904231137724e307,6.057884270958084e307,6.067864310778444e307,6.077844350598802e307,6.087824390419162e307,6.097804430239521e307,6.10778447005988e307,6.11776450988024e307,6.1277445497006e307,6.137724589520958e307,6.147704629341316e307,6.157684669161678e307,6.167664708982036e307,6.177644748802395e307,6.187624788622754e307,6.197604828443114e307,6.207584868263473e307,6.217564908083832e307,6.227544947904192e307,6.23752498772455e307,6.24750502754491e307,6.25748506736527e307,6.267465107185629e307,6.277445147005988e307,6.287425186826347e307,6.297405226646707e307,6.307385266467066e307,6.317365306287426e307,6.327345346107784e307,6.337325385928143e307,6.347305425748504e307,6.357285465568862e307,6.367265505389221e307,6.377245545209581e307,6.387225585029941e307,6.397205624850299e307,6.40718566467066e307,6.417165704491018e307,6.427145744311376e307,6.437125784131738e307,6.447105823952096e307,6.457085863772455e307,6.467065903592814e307,6.477045943413174e307,6.487025983233533e307,6.497006023053891e307,6.506986062874252e307,6.51696610269461e307,6.52694614251497e307,6.53692618233533e307,6.546906222155689e307,6.556886261976047e307,6.566866301796407e307,6.576846341616767e307,6.586826381437125e307,6.596806421257486e307,6.606786461077844e307,6.616766500898204e307,6.626746540718564e307,6.636726580538922e307,6.646706620359281e307,6.65668666017964e307,6.666666700000001e307,6.676646739820359e307,6.686626779640719e307,6.696606819461078e307,6.706586859281436e307,6.716566899101797e307,6.726546938922156e307,6.736526978742515e307,6.746507018562874e307,6.756487058383235e307,6.766467098203593e307,6.776447138023952e307,6.786427177844311e307,6.79640721766467e307,6.806387257485031e307,6.816367297305389e307,6.826347337125749e307,6.836327376946107e307,6.846307416766466e307,6.856287456586827e307,6.866267496407185e307,6.876247536227545e307,6.886227576047904e307,6.896207615868264e307,6.906187655688623e307,6.916167695508982e307,6.926147735329341e307,6.9361277751497e307,6.946107814970061e307,6.956087854790419e307,6.966067894610779e307,6.976047934431137e307,6.986027974251497e307,6.996008014071857e307,7.005988053892215e307,7.015968093712575e307,7.025948133532934e307,7.035928173353294e307,7.045908213173653e307,7.055888252994012e307,7.065868292814371e307,7.07584833263473e307,7.085828372455091e307,7.095808412275449e307,7.105788452095808e307,7.115768491916168e307,7.125748531736527e307,7.135728571556886e307,7.145708611377246e307,7.155688651197605e307,7.165668691017963e307,7.175648730838324e307,7.185628770658683e307,7.195608810479041e307,7.205588850299401e307,7.215568890119761e307,7.22554892994012e307,7.235528969760479e307,7.245509009580839e307,7.255489049401197e307,7.265469089221557e307,7.275449129041917e307,7.285429168862275e307,7.295409208682634e307,7.305389248502994e307,7.315369288323354e307,7.325349328143712e307,7.335329367964072e307,7.345309407784431e307,7.35528944760479e307,7.365269487425151e307,7.375249527245509e307,7.385229567065868e307,7.395209606886228e307,7.405189646706588e307,7.415169686526946e307,7.425149726347305e307,7.435129766167665e307,7.445109805988024e307,7.455089845808384e307,7.465069885628743e307,7.475049925449102e307,7.48502996526946e307,7.495010005089821e307,7.50499004491018e307,7.514970084730538e307,7.524950124550899e307,7.534930164371257e307,7.544910204191617e307,7.554890244011977e307,7.564870283832335e307,7.574850323652694e307,7.584830363473055e307,7.594810403293414e307,7.604790443113772e307,7.614770482934132e307,7.624750522754491e307,7.63473056257485e307,7.64471060239521e307,7.654690642215569e307,7.664670682035928e307,7.674650721856287e307,7.684630761676648e307,7.694610801497006e307,7.704590841317365e307,7.714570881137725e307,7.724550920958084e307,7.734530960778444e307,7.744511000598802e307,7.754491040419162e307,7.764471080239521e307,7.77445112005988e307,7.78443115988024e307,7.794411199700598e307,7.804391239520958e307,7.814371279341318e307,7.824351319161677e307,7.834331358982036e307,7.844311398802395e307,7.854291438622754e307,7.864271478443114e307,7.874251518263474e307,7.884231558083832e307,7.894211597904192e307,7.904191637724551e307,7.91417167754491e307,7.92415171736527e307,7.934131757185628e307,7.944111797005988e307,7.954091836826348e307,7.964071876646707e307,7.974051916467066e307,7.984031956287425e307,7.994011996107784e307,8.003992035928144e307,8.013972075748504e307,8.023952115568862e307,8.033932155389222e307,8.043912195209582e307,8.05389223502994e307,8.063872274850299e307,8.073852314670659e307,8.083832354491018e307,8.093812394311377e307,8.103792434131738e307,8.113772473952096e307,8.123752513772454e307,8.133732553592814e307,8.143712593413174e307,8.153692633233533e307,8.163672673053892e307,8.173652712874252e307,8.183632752694611e307,8.19361279251497e307,8.20359283233533e307,8.213572872155688e307,8.223552911976048e307,8.233532951796408e307,8.243512991616767e307,8.253493031437125e307,8.263473071257485e307,8.273453111077844e307,8.283433150898203e307,8.293413190718564e307,8.303393230538922e307,8.313373270359281e307,8.323353310179642e307,8.33333335e307,8.343313389820359e307,8.353293429640719e307,8.363273469461078e307,8.373253509281437e307,8.383233549101797e307,8.393213588922156e307,8.403193628742514e307,8.413173668562875e307,8.423153708383234e307,8.433133748203593e307,8.443113788023951e307,8.453093827844312e307,8.463073867664671e307,8.473053907485029e307,8.48303394730539e307,8.493013987125748e307,8.502994026946107e307,8.512974066766468e307,8.522954106586827e307,8.532934146407185e307,8.542914186227545e307,8.552894226047905e307,8.562874265868263e307,8.572854305688623e307,8.582834345508982e307,8.592814385329341e307,8.602794425149701e307,8.61277446497006e307,8.622754504790419e307,8.632734544610778e307,8.642714584431139e307,8.652694624251497e307,8.662674664071857e307,8.672654703892216e307,8.682634743712574e307,8.692614783532935e307,8.702594823353293e307,8.712574863173653e307,8.722554902994012e307,8.732534942814371e307,8.742514982634731e307,8.75249502245509e307,8.762475062275449e307,8.772455102095808e307,8.782435141916168e307,8.792415181736527e307,8.802395221556887e307,8.812375261377245e307,8.822355301197604e307,8.832335341017965e307,8.842315380838323e307,8.852295420658683e307,8.862275460479042e307,8.872255500299402e307,8.882235540119761e307,8.892215579940119e307,8.902195619760479e307,8.912175659580838e307,8.922155699401198e307,8.932135739221557e307,8.942115779041917e307,8.952095818862275e307,8.962075858682634e307,8.972055898502995e307,8.982035938323353e307,8.992015978143713e307,9.001996017964071e307,9.011976057784432e307,9.02195609760479e307,9.03193613742515e307,9.041916177245509e307,9.051896217065867e307,9.061876256886228e307,9.071856296706586e307,9.081836336526947e307,9.091816376347305e307,9.101796416167663e307,9.111776455988024e307,9.121756495808384e307,9.131736535628743e307,9.141716575449101e307,9.151696615269462e307,9.16167665508982e307,9.17165669491018e307,9.181636734730539e307,9.191616774550897e307,9.201596814371258e307,9.211576854191616e307,9.221556894011977e307,9.231536933832337e307,9.241516973652695e307,9.251497013473054e307,9.261477053293412e307,9.271457093113773e307,9.281437132934131e307,9.29141717275449e307,9.30139721257485e307,9.31137725239521e307,9.321357292215569e307,9.33133733203593e307,9.341317371856288e307,9.351297411676646e307,9.361277451497007e307,9.371257491317365e307,9.381237531137723e307,9.391217570958084e307,9.401197610778442e307,9.411177650598803e307,9.421157690419163e307,9.431137730239522e307,9.44111777005988e307,9.45109780988024e307,9.461077849700599e307,9.471057889520957e307,9.481037929341316e307,9.491017969161676e307,9.500998008982037e307,9.510978048802397e307,9.520958088622756e307,9.530938128443114e307,9.540918168263472e307,9.550898208083833e307,9.560878247904191e307,9.57085828772455e307,9.58083832754491e307,9.59081836736527e307,9.600798407185629e307,9.610778447005987e307,9.620758486826348e307,9.630738526646706e307,9.640718566467067e307,9.650698606287425e307,9.660678646107784e307,9.670658685928142e307,9.680638725748504e307,9.690618765568863e307,9.700598805389223e307,9.710578845209582e307,9.72055888502994e307,9.730538924850299e307,9.740518964670657e307,9.750499004491017e307,9.760479044311378e307,9.770459084131738e307,9.780439123952097e307,9.790419163772455e307,9.800399203592814e307,9.810379243413174e307,9.820359283233534e307,9.830339323053893e307,9.840319362874251e307,9.85029940269461e307,9.860279442514968e307,9.87025948233533e307,9.88023952215569e307,9.89021956197605e307,9.900199601796408e307,9.910179641616766e307,9.920159681437125e307,9.930139721257483e307,9.940119761077844e307,9.950099800898204e307,9.960079840718564e307,9.970059880538923e307,9.980039920359281e307,9.99001996017964e307,1.0e308]} \ No newline at end of file +{"expected":[1.0e-300,1.0019899700803994e-305,5.00997495012525e-306,3.3399888778370363e-306,2.504993750040594e-306,2.0039960040319678e-306,1.6699972278046017e-306,1.4314265367579942e-306,1.2524984437706837e-306,1.113332104956911e-306,1.0019990060169862e-306,9.109082702635492e-307,8.349993111255683e-307,7.707686443921621e-307,7.157137806248462e-307,6.679995604562892e-307,6.262496140736753e-307,5.894114231939694e-307,5.566663623557219e-307,5.2736814820900544e-307,5.009997540091208e-307,4.771426342490837e-307,4.554543425703383e-307,4.3565198847682755e-307,4.174998298688193e-307,4.007998433674212e-307,3.853844707172141e-307,3.711109770988138e-307,3.578570183740229e-307,3.455171254523576e-307,3.3399989178403507e-307,3.232257052089807e-307,3.1312490508401315e-307,3.0363627447771213e-307,2.9470579844846677e-307,2.8628563518908308e-307,2.7833325864724224e-307,2.708107401804421e-307,2.6368414363381198e-307,2.5692301348285587e-307,2.504999397547645e-307,2.443901866197636e-307,2.385713740408288e-307,2.330232038443599e-307,2.277272231448455e-307,2.2266661931289893e-307,2.1782604168658787e-307,2.131914460430147e-307,2.0874995851094575e-307,2.044897561471964e-307,2.0039996184384724e-307,1.964705515993148e-307,1.9269227248891176e-307,1.8905656992175756e-307,1.8555552298025264e-307,1.8218178681342688e-307,1.7892854120242857e-307,1.7578944454017103e-307,1.7275859257170495e-307,1.698304813304841e-307,1.6699997378100412e-307,1.6426226974249248e-307,1.616128787232087e-307,1.5904759534195363e-307,1.5656247705381197e-307,1.5415382393197954e-307,1.5181816028760636e-307,1.4955221793562331e-307,1.473529209371135e-307,1.4521737166843367e-307,1.431428380844107e-307,1.4112674205788777e-307,1.3916664869097454e-307,1.3726025650482488e-307,1.3540538842483777e-307,1.3359998348704205e-307,1.3184208919924018e-307,1.301298544973876e-307,1.2846152324378878e-307,1.2683542821910123e-307,1.2524998556493917e-307,1.2370368963813603e-307,1.2219510824152443e-307,1.207228781994789e-307,1.1928570124949122e-307,1.1788234022375222e-307,1.165116154971349e-307,1.1517240168014396e-307,1.1386362453734627e-307,1.1258425811354745e-307,1.1133332205155669e-307,1.1010987908680223e-307,1.0891303270534134e-307,1.077419249529667e-307,1.0659573438415672e-307,1.0547367414056605e-307,1.043749901496103e-307,1.0329895943447853e-307,1.0224488852761436e-307,1.0121211198034978e-307,1.0019999096196082e-307,9.920791194194766e-308,9.823528544982776e-308,9.72815449071739e-308,9.634614552703473e-308,9.54285632762456e-308,9.452829389647628e-308,9.36448519801736e-308,9.277777009784014e-308,9.192659797335304e-308,9.109090170426505e-308,9.027026302425186e-308,8.946427860507071e-308,8.867255939558361e-308,8.789472999556839e-308,8.71304280622009e-308,8.637930374723595e-308,8.564101916305111e-308,8.491524787584075e-308,8.420167442436314e-308,8.349999386275046e-308,8.280991132598909e-308,8.213114161677011e-308,8.146340881249299e-308,8.080644589128552e-308,8.01599943759748e-308,7.952380399501172e-308,7.889763235941509e-308,7.828124465485877e-308,7.76744133480804e-308,7.707691790684059e-308,7.648854453270821e-308,7.590908590599206e-308,7.533834094217909e-308,7.477611455927855e-308,7.422221745550648e-308,7.367646589677798e-308,7.31386815135066e-308,7.260869110623848e-308,7.208632645967628e-308,7.157142416467375e-308,7.106382544780469e-308,7.056337600813356e-308,7.006992586083451e-308,6.958332918732664e-308,6.910344419161023e-308,6.863013296250727e-308,6.816326134152459e-308,6.770269879607399e-308,6.724831829779761e-308,6.679999620576022e-308,6.635761215428291e-308,6.59210489452045e-308,6.549019244436774e-308,6.506493148213884e-308,6.464515775777751e-308,6.42307657474854e-308,6.382165261596838e-308,6.341771813135733e-308,6.301886458333944e-308,6.262499670435955e-308,6.223602159375813e-308,6.185184864471896e-308,6.147238947390584e-308,6.109755785367356e-308,6.072726964674395e-308,6.0361442743243e-308,5.999999700000015e-308,5.964285418201545e-308,5.928993790600483e-308,5.894117358593786e-308,5.859648838048644e-308,5.825581114230679e-308,5.791907236908029e-308,5.75862041562427e-308,5.7257140151334e-308,5.693181550990457e-308,5.661016685291595e-308,5.62921322255777e-308,5.597765105756387e-308,5.566666412455566e-308,5.535911351105899e-308,5.505494257444764e-308,5.475409591018554e-308,5.4456519318183e-308,5.416215977024408e-308,5.38709653785641e-308,5.358288536523788e-308,5.329787003274116e-308,5.301587073534906e-308,5.273683985145715e-308,5.246073075677211e-308,5.218749779833993e-308,5.191709626938182e-308,5.164948238490815e-308,5.138461325808293e-308,5.112244687731162e-308,5.086294208402698e-308,5.060605855114792e-308,5.035175676218791e-308,5.009999799099008e-308,4.985074428206736e-308,4.96039584315264e-308,4.935960396855549e-308,4.911764513745683e-308,4.887804688020471e-308,4.864077481951181e-308,4.840579524238613e-308,4.817307508416242e-308,4.794258191299198e-308,4.771428391477557e-308,4.748814987852481e-308,4.726414918213783e-308,4.704225177857575e-308,4.682242818242647e-308,4.660464945684377e-308,4.638888720084883e-308,4.617511353698321e-308,4.596330109930147e-308,4.575342302169268e-308,4.554545292652072e-308,4.533936491357268e-308,4.513513354930611e-308,4.493273385638567e-308,4.473214130349973e-308,4.453333179544894e-308,4.433628166349759e-308,4.414096765598018e-308,4.3947366929155173e-308,4.375545703829833e-308,4.3565215929028406e-308,4.33766219288582e-308,4.318965373896408e-308,4.300429042616741e-308,4.2820511415121674e-308,4.2638296480699e-308,4.2457625740570283e-308,4.2278479647973124e-308,4.2100838984662143e-308,4.1924684854036216e-308,4.174999867443754e-308,4.157676217261759e-308,4.140495737736497e-308,4.1234566613290697e-308,4.106557249476623e-308,4.089795792001003e-308,4.0731706065318306e-308,4.056680037943586e-308,4.040322457806325e-308,4.0240962638496192e-308,4.0079998794393636e-308,3.992031753067098e-308,3.976190357851477e-308,3.9604741910515745e-308,3.9448817735916707e-308,3.929411649597235e-308,3.914062385941776e-308,3.8988325718042696e-308,3.8837208182368877e-308,3.868725757742732e-308,3.853846043863317e-308,3.839080350775535e-308,3.8244273728978524e-308,3.8098858245054897e-308,3.795454439354342e-308,3.781131970313424e-308,3.7669171890056e-308,3.7528088854563846e-308,3.738805867750615e-308,3.724906961696773e-308,3.7111110104987684e-308,3.6974168744349913e-308,3.6838234305444443e-308,3.670329572319771e-308,3.6569342094070034e-308,3.64363626731187e-308,3.6304346871124793e-308,3.617328425178227e-308,3.60431645289478e-308,3.591397756394961e-308,3.578571336295411e-308,3.5658362074388647e-308,3.5531913986419215e-308,3.5406359524481537e-308,3.5281689248864336e-308,3.515789385234351e-308,3.503496415786593e-308,3.4912891116281635e-308,3.4791665804123285e-308,3.4671279421431755e-308,3.4551723289626655e-308,3.4432988849420786e-308,3.431506765877746e-308,3.4197951390909643e-308,3.408163183231989e-308,3.3966100880880227e-308,3.3851350543950894e-308,3.373737293653711e-308,3.3624160279482924e-308,3.351170489770138e-308,3.339999921844002e-308,3.328903576958093e-308,3.3178807177974665e-308,3.30693061678071e-308,3.296052555899846e-308,3.2852458265633984e-308,3.2745097294425235e-308,3.2638435743201535e-308,3.2532466799430783e-308,3.2427183738768986e-308,3.2322579923637895e-308,3.2218648801830023e-308,3.2115383905140545e-308,3.201277884802541e-308,3.191082732628506e-308,3.1809523115773256e-308,3.170886007113044e-308,3.160883212454101e-308,3.150943328451408e-308,3.141065763468717e-308,3.131249933265236e-308,3.121495260880428e-308,3.1118011765209686e-308,3.1021671174497994e-308,3.0925925278772306e-308,3.0830768588540605e-308,3.0736195681666615e-308,3.0642201202339883e-308,3.054877986006471e-308,3.0455926428667523e-308,3.0363635745322323e-308,3.0271902709593756e-308,3.018072228249747e-308,3.009008948557748e-308,2.999999940000001e-308,2.9910447165663635e-308,2.9821427980325266e-308,2.9732937098741745e-308,2.964496983182663e-308,2.955752154582192e-308,2.947058766148444e-308,2.9384163653286446e-308,2.929824504863036e-308,2.9212827427077163e-308,2.9127906419588304e-308,2.904347770778073e-308,2.8959537023194904e-308,2.8876080146575433e-308,2.87931029071641e-308,2.871060118200508e-308,2.862857089526205e-308,2.8547008017546946e-308,2.846590856526021e-308,2.838526859994223e-308,2.8305084227635747e-308,2.8225351598259085e-308,2.814606690498991e-308,2.806722638365935e-308,2.798882631215631e-308,2.7910863009841647e-308,2.783333283697223e-308,2.7756232194134495e-308,2.767955752168738e-308,2.760330529921454e-308,2.752747204498552e-308,2.7452054315425793e-308,2.7377048704595547e-308,2.730245184367692e-308,2.7228260400469645e-308,2.7154471078894847e-308,2.7081080618506946e-308,2.700808579401342e-308,2.69354834148023e-308,2.686327032447729e-308,2.679144340040036e-308,2.6719999553241606e-308,2.6648935726536335e-308,2.657824889624919e-308,2.6507936070345184e-308,2.6437994288367534e-308,2.6368420621022165e-308,2.6299212169768747e-308,2.6230366066418144e-308,2.6161879472736203e-308,2.6093749580053715e-308,2.602597360888245e-308,2.595854880853715e-308,2.589147245676342e-308,2.5824741859371356e-308,2.5758354349874777e-308,2.56923072891361e-308,2.562659806501659e-308,2.556122409203197e-308,2.549618281101335e-308,2.5431471688773226e-308,2.5367088217776644e-308,2.5303029915817267e-308,2.523929432569841e-308,2.517587901491882e-308,2.511278157536323e-308,2.5049999622997503e-308,2.4987530797568427e-308,2.492537276230787e-308,2.486352320364143e-308,2.4801979830901384e-308,2.47407403760439e-308,2.4679802593370384e-308,2.4619164259253005e-308,2.4558823171864193e-308,2.449877715091015e-308,2.4439024037368237e-308,2.4379561693228197e-308,2.4320388001237163e-308,2.426150086464833e-308,2.420289820697333e-308,2.414457797173814e-308,2.408653812224252e-308,2.4028776641322914e-308,2.3971291531118794e-308,2.3914080812842266e-308,2.3857142526551025e-308,2.3800474730924563e-308,2.3744075503043513e-308,2.368794293817213e-308,2.363207514954388e-308,2.357647026815004e-308,2.352112644253125e-308,2.3466041838572035e-308,2.3411214639298196e-308,2.3356643044677006e-308,2.330232527142023e-308,2.324825955278988e-308,2.319444413840664e-308,2.314087729406099e-308,2.30875573015269e-308,2.303448245837813e-308,2.2981651077807007e-308,2.2929061488445773e-308,2.2876712034190284e-308,2.2824601074026186e-308,2.277272698185744e-308,2.2721088146337177e-308,2.266968297070085e-308,2.261850987260165e-308,2.256756728394814e-308,2.25168536507441e-308,2.2466367432930486e-308,2.2416107104229543e-308,2.2366071151990995e-308,2.23162580770403e-308,2.226666639352889e-308,2.221729462878649e-308,2.216814132317527e-308,2.2119205029946057e-308,2.207048431509636e-308,2.202197775723029e-308,2.197368394742036e-308,2.1925601489071057e-308,2.1877728997784183e-308,2.183006510122603e-308,2.178260843899622e-308,2.1735357662498296e-308,2.168831143481194e-308,2.164146843056692e-308,2.15948273358186e-308,2.154838684792508e-308,2.1502145675425966e-308,2.1456102537922593e-308,2.1410256165959896e-308,2.136460530090971e-308,2.131914869485559e-308,2.127388511047913e-308,2.122881332094765e-308,2.118393210980338e-308,2.113924027085403e-308,2.109473660806471e-308,2.105041993545124e-308,2.10062890769748e-308,2.0962342866437917e-308,2.0918580147381686e-308,2.087499977298438e-308,2.083160060596125e-308,2.078838151846559e-308,2.074534139199105e-308,2.070247911727512e-308,2.065979359420385e-308,2.061728373171773e-308,2.0574948447718716e-308,2.0532786668978436e-308,2.0490797331047463e-308,2.0448979378165763e-308,2.040733176317421e-308,2.036585344742713e-308,2.0324543400706034e-308,2.028340060113426e-308,2.0242424035092747e-308,2.020161269713677e-308,2.0160965589913726e-308,2.012048172408187e-308,2.008016011823005e-308,2.00399997987984e-308,1.99999998e-308,1.9960159163743435e-308,1.99204769395563e-308,1.9880952184509637e-308,1.9841583963143224e-308,1.9802371347391775e-308,1.976331341651203e-308,1.9724409257010665e-308,1.9685657962573096e-308,1.964705863399308e-308,1.9608610379103175e-308,1.9570312312705997e-308,1.953216355650628e-308,1.949416323904374e-308,1.945631049562673e-308,1.9418604468266634e-308,1.9381044305613027e-308,1.9343629162889646e-308,1.9306358201831005e-308,1.9269230590619823e-308,1.923224550382514e-308,1.919540212234113e-308,1.915869963332663e-308,1.912213723014539e-308,1.9085714112306944e-308,1.9049429485408204e-308,1.901328256107573e-308,1.8977272556908577e-308,1.8941398696421897e-308,1.89056602089911e-308,1.887005632979667e-308,1.8834586299769636e-308,1.879924936553756e-308,1.8764044779371294e-308,1.872897179913215e-308,1.8694029688219815e-308,1.8659217715520737e-308,1.8624535155357167e-308,1.8589981287436713e-308,1.855555539680247e-308,1.8521256773783744e-308,1.8487084713947253e-308,1.84530385180489e-308,1.8419117491986103e-308,1.838532094675061e-308,1.835164819838184e-308,1.831809856792075e-308,1.828467138136422e-308,1.8251365969619876e-308,1.821818166846149e-308,1.818511781848479e-308,1.81521737650638e-308,1.811934885830764e-308,1.8086642453017767e-308,1.805405390864573e-308,1.8021582589251333e-308,1.7989227863461284e-308,1.7956989104428257e-308,1.792486568979042e-308,1.789285700163138e-308,1.786096242644056e-308,1.7829181355074023e-308,1.779751318271566e-308,1.7765957308838843e-308,1.773451313716845e-308,1.7703180075643347e-308,1.767195753637916e-308,1.764084493563157e-308,1.7609841693759904e-308,1.7578947235191136e-308,1.7548160988384283e-308,1.751748238579515e-308,1.7486910863841454e-308,1.7456445862868314e-308,1.74260868271141e-308,1.739583320467665e-308,1.7365684447479795e-308,1.733564001124029e-308,1.730569935543505e-308,1.727586194326873e-308,1.724612724164166e-308,1.721649472111808e-308,1.718696385589472e-308,1.71575341237697e-308,1.712820500611177e-308,1.7098975987829795e-308,1.7069846557342654e-308,1.7040816206549357e-308,1.701188443079952e-308,1.698305072886412e-308,1.695431460290654e-308,1.6925675558453933e-308,1.6897133104368846e-308,1.6868686752821143e-308,1.6840336019260225e-308,1.681208042238751e-308,1.678391948412919e-308,1.6755852729609287e-308,1.6727879687122944e-308,1.6699999888110004e-308,1.667221286712883e-308,1.6644518161830446e-308,1.661691531293285e-308,1.6589403864195647e-308,1.6561983362394917e-308,1.653465335729831e-308,1.6507413401640394e-308,1.6480263051098296e-308,1.6453201864267516e-308,1.6426229402638e-308,1.639934523057047e-308,1.6372548915272973e-308,1.634584002677762e-308,1.6319218137917645e-308,1.629268282430458e-308,1.626623366430574e-308,1.6239870239021877e-308,1.621359213226506e-308,1.6187398930536773e-308,1.6161290223006247e-308,1.613526560148895e-308,1.610932466042535e-308,1.6083466996859807e-308,1.6057692210419746e-308,1.6031999903294976e-308,1.6006389680217213e-308,1.598086114843983e-308,1.595541391771776e-308,1.5930047600287637e-308,1.5904761810848073e-308,1.587955616654017e-308,1.5854430286928176e-308,1.582938379398037e-308,1.5804416312050074e-308,1.5779527467856905e-308,1.5754716890468137e-308,1.572998421128031e-308,1.570532906400094e-308,1.5680751084630474e-308,1.5656249911444336e-308,1.5631825184975214e-308,1.560747654799546e-308,1.5583203645499687e-308,1.555900612468751e-308,1.5534883634946456e-308,1.551083582783502e-308,1.54868623570659e-308,1.546296287848937e-308,1.5439137050076805e-308,1.541538453190438e-308,1.539170498613689e-308,1.5368098077011743e-308,1.5344563470823083e-308,1.532110083590607e-308,1.5297709842621294e-308,1.5274390163339346e-308,1.5251141472425513e-308,1.522796344622463e-308,1.5204855763046044e-308,1.518181810314876e-308,1.5158850148726657e-308,1.51359515838939e-308,1.5113122094670463e-308,1.509036136896774e-308,1.5067669096574366e-308,1.5045044969142117e-308,1.502248868017191e-308,1.4999999925e-308,1.497757840078425e-308,1.4955223806490533e-308,1.493293584287926e-308,1.491071421249203e-308,1.48885586196384e-308,1.4866468770382765e-308,1.484444437253136e-308,1.4822485135619374e-308,1.48005907708982e-308,1.4778760991322734e-308,1.475699551153889e-308,1.4735294047871106e-308,1.471365631831008e-308,1.4692082042500496e-308,1.467057094172896e-308,1.4649122738911973e-308,1.462773715858405e-308,1.4606413926885907e-308,1.4585152771552793e-308,1.456395342190289e-308,1.454281560882582e-308,1.4521739064771267e-308,1.4500723523737696e-308,1.4479768721261153e-308,1.4458874394404154e-308,1.443804028174472e-308,1.441726612336546e-308,1.4396551660842747e-308,1.4375896637236036e-308,1.43553007970772e-308,1.4334763886360034e-308,1.4314285652529797e-308,1.4293865844472844e-308,1.427350421250639e-308,1.4253200508368324e-308,1.4232954485207094e-308,1.4212765897571753e-308,1.4192634501401986e-308,1.417256005401831e-308,1.4152542314112326e-308,1.4132581041737005e-308,1.411267599829716e-308,1.4092826946539907e-308,1.4073033650545226e-308,1.4053295875716655e-308,1.403361338877198e-308,1.401398595773407e-308,1.3994413351921755e-308,1.3974895341940795e-308,1.3955431699674893e-308,1.393602219827685e-308,1.391666661215972e-308,1.3897364716988077e-308,1.3878116289669357e-308,1.3858921108345243e-308,1.383977895238317e-308,1.3820689602367847e-308,1.380165284009289e-308,1.378266844855249e-308,1.3763736211933193e-308,1.374485591560568e-308,1.372602734611672e-308,1.3707250291181054e-308,1.3688524539673474e-308,1.366984988162088e-308,1.3651226108194434e-308,1.363265301170179e-308,1.3614130385579365e-308,1.3595658024384674e-308,1.357723572378875e-308,1.3558863280568593e-308,1.3540540492599705e-308,1.3522267158848695e-308,1.3504043079365886e-308,1.3485868055278063e-308,1.346774188878122e-308,1.344966438313337e-308,1.343163534264747e-308,1.341365457268431e-308,1.339572187964554e-308,1.337783707096672e-308,1.33599999551104e-308,1.3342210341559326e-308,1.332446804080961e-308,1.3306772864364056e-308,1.3289124624725427e-308,1.327152313538985e-308,1.325396821084026e-308,1.323645966653986e-308,1.3218997318925653e-308,1.3201580985402055e-308,1.3184210484334486e-308,1.316688563504311e-308,1.3149606257796515e-308,1.3132372173805543e-308,1.31151832052171e-308,1.3098039175108033e-308,1.308093990747909e-308,1.306388522724885e-308,1.3046874960247803e-308,1.302990893321237e-308,1.301298697377905e-308,1.2996108910478584e-308,1.297927457273014e-308,1.296248379083559e-308,1.2945736395973798e-308,1.292903222019496e-308,1.2912371096415e-308,1.289575285840998e-308,1.2879177340810594e-308,1.286264437909667e-308,1.2846153809591717e-308,1.2829705469457557e-308,1.281329919668893e-308,1.279693483010819e-308,1.278061220936003e-308,1.276433117490624e-308,1.274809156802051e-308,1.2731893230783266e-308,1.2715736006076554e-308,1.2699619737578974e-308,1.2683544269760615e-308,1.266750944787807e-308,1.265151511796947e-308,1.263556112684953e-308,1.26196473221047e-308,1.260377355208829e-308,1.2587939665915633e-308,1.257214551345935e-308,1.2556390945344565e-308,1.2540675812944217e-308,1.2524999968374376e-308,1.2509363264489614e-308,1.249376555487839e-308,1.247820669385849e-308,1.2462686536472487e-308,1.244720493848324e-308,1.2431761756369415e-308,1.241635684732107e-308,1.2400990069235247e-308,1.238566128071159e-308,1.237037034104801e-308,1.235511711023641e-308,1.233990144895836e-308,1.23247232185809e-308,1.2309582281152313e-308,1.2294478499397945e-308,1.2279411736716045e-308,1.2264381857173676e-308,1.22493887255026e-308,1.2234432207095225e-308,1.2219512168000596e-308,1.2204628474920366e-308,1.218978099520486e-308,1.2174969596849095e-308,1.21601941484889e-308,1.2145454519397024e-308,1.2130750579479274e-308,1.2116082199270683e-308,1.2101449249931734e-308,1.2086851603244565e-308,1.2072289131609233e-308,1.2057761708039983e-308,1.204326920616159e-308,1.202881150020565e-308,1.2014388465006987e-308,1.1999999976e-308,1.1985645909215105e-308,1.1971326141275163e-308,1.195704054939195e-308,1.194278901136264e-308,1.1928571405566327e-308,1.1914387610960567e-308,1.190023750707793e-308,1.188612097402262e-308,1.187203789246704e-308,1.185798814364847e-308,1.1843971609365726e-308,1.182998817197582e-308,1.1816037714390685e-308,1.1802120120073916e-308,1.178823527303751e-308,1.177438305783864e-308,1.176056335957647e-308,1.174677606388898e-308,1.17330210569498e-308,1.1719298225465065e-308,1.1705607456670344e-308,1.169194863832751e-308,1.16783216587217e-308,1.1664726406658254e-308,1.165116277145971e-308,1.1637630642962766e-308,1.1624129911515335e-308,1.161066046797356e-308,1.159722220369888e-308,1.1583815010555113e-308,1.157043878090555e-308,1.155709340761006e-308,1.1543778784022277e-308,1.15304948039867e-308,1.151724136183591e-308,1.1504018352387757e-308,1.1490825670942577e-308,1.147766321328043e-308,1.1464530875658355e-308,1.145142855480764e-308,1.143835614793113e-308,1.142531355270052e-308,1.14123006672537e-308,1.1399317390192083e-308,1.1386363620577996e-308,1.137343925793205e-308,1.136054420223055e-308,1.1347678353902903e-308,1.1334841613829056e-308,1.1322033883336974e-308,1.130925506420007e-308,1.129650505863475e-308,1.1283783769297847e-308,1.1271091099284216e-308,1.125842695212423e-308,1.124579123178134e-308,1.1233183842649663e-308,1.122060468955156e-308,1.120805367773524e-308,1.1195530712872384e-308,1.1183035701055785e-308,1.117056854879699e-308,1.1158129163023993e-308,1.1145717451078875e-308,1.113333332071556e-308,1.1120976680097463e-308,1.1108647437795293e-308,1.1096345502784735e-308,1.108407078444426e-308,1.1071823192552853e-308,1.105960263728784e-308,1.104740902922267e-308,1.103524227932475e-308,1.102310229895326e-308,1.1010988999857023e-308,1.0998902294172336e-308,1.098684209442088e-308,1.097480831350758e-308,1.096280086471853e-308,1.0950819661718893e-308,1.093886461855085e-308,1.092693564963152e-308,1.091503266975095e-308,1.0903155594070055e-308,1.089130433811862e-308,1.087947881779329e-308,1.0867678949355593e-308,1.085590464942994e-308,1.0844155835001687e-308,1.0832432423415166e-308,1.082073433237175e-308,1.080906147992794e-308,1.079741378449344e-308,1.0785791164829246e-308,1.0774193540045787e-308,1.076262082960101e-308,1.075107295329855e-308,1.073954983128586e-308,1.0728051384052385e-308,1.0716577532427695e-308,1.0705128197579715e-308,1.0693703301012906e-308,1.0682302764566444e-308,1.0670926510412475e-308,1.065957446105432e-308,1.0648246539324727e-308,1.0636942668384114e-308,1.062566277171883e-308,1.0614406773139453e-308,1.060317459677904e-308,1.0591966167091437e-308,1.0580781408849597e-308,1.0569620247143887e-308,1.0558482607380404e-308,1.0547368415279333e-308,1.053627759687329e-308,1.052521007850567e-308,1.0514165786829024e-308,1.050314464880345e-308,1.0492146591694965e-308,1.0481171543073914e-308,1.047021943081338e-308,1.045929018308759e-308,1.044838372837038e-308,1.0437499995433595e-308,1.0426638913345555e-308,1.041580041146952e-308,1.040498441946216e-308,1.0394190867272e-308,1.0383419685137966e-308,1.0372670803587824e-308,1.0361944153436733e-308,1.035123966578572e-308,1.0340557272020243e-308,1.0329896903808694e-308,1.0319258493100955e-308,1.0308641972126965e-308,1.0298047273395236e-308,1.028747432969149e-308,1.027692307407716e-308,1.026639343988805e-308,1.0255885360732884e-308,1.024539877049193e-308,1.0234933603315593e-308,1.022448979362307e-308,1.0214067276100966e-308,1.0203665985701904e-308,1.019328585764321e-308,1.0182926827405565e-308,1.0172588830731634e-308,1.0162271803624785e-308,1.015197568234772e-308,1.0141700403421215e-308,1.0131445903622763e-308,1.0121212119985305e-308,1.011099898979595e-308,1.010080645059468e-308,1.0090634440173054e-308,1.0080482896572997e-308,1.0070351758085504e-308,1.006024096324938e-308,1.005015045085004e-308,1.0040080159918234e-308,1.0030030029728826e-308,1.00199999997996e-308,1.0009990009890007e-308,1.0e-308],"x":[1.0e300,9.980139820359282e304,1.996017964071856e305,2.9940219461077846e305,3.992025928143712e305,4.990029910179641e305,5.988033892215569e305,6.986037874251497e305,7.984041856287425e305,8.982045838323353e305,9.98004982035928e305,1.097805380239521e306,1.1976057784431138e306,1.2974061766467066e306,1.3972065748502995e306,1.4970069730538922e306,1.596807371257485e306,1.696607769461078e306,1.7964081676646707e306,1.8962085658682634e306,1.9960089640718562e306,2.0958093622754492e306,2.195609760479042e306,2.2954101586826347e306,2.3952105568862277e306,2.4950109550898204e306,2.5948113532934132e306,2.694611751497006e306,2.794412149700599e306,2.8942125479041914e306,2.9940129461077844e306,3.0938133443113774e306,3.19361374251497e306,3.293414140718563e306,3.393214538922156e306,3.4930149371257484e306,3.5928153353293414e306,3.6926157335329344e306,3.792416131736527e306,3.89221652994012e306,3.9920169281437123e306,4.0918173263473054e306,4.1916177245508984e306,4.291418122754491e306,4.391218520958084e306,4.491018919161677e306,4.5908193173652693e306,4.6906197155688624e306,4.7904201137724554e306,4.890220511976048e306,4.990020910179641e306,5.089821308383233e306,5.1896217065868263e306,5.2894221047904194e306,5.389222502994012e306,5.489022901197605e306,5.588823299401198e306,5.688623697604791e306,5.788424095808383e306,5.888224494011976e306,5.988024892215569e306,6.087825290419162e306,6.187625688622755e306,6.287426086826348e306,6.38722648502994e306,6.487026883233533e306,6.586827281437126e306,6.686627679640719e306,6.786428077844312e306,6.886228476047904e306,6.986028874251497e306,7.08582927245509e306,7.185629670658683e306,7.285430068862276e306,7.385230467065869e306,7.485030865269461e306,7.584831263473054e306,7.684631661676647e306,7.78443205988024e306,7.884232458083833e306,7.984032856287425e306,8.083833254491018e306,8.183633652694611e306,8.283434050898204e306,8.383234449101797e306,8.48303484730539e306,8.582835245508982e306,8.682635643712575e306,8.782436041916168e306,8.882236440119761e306,8.982036838323354e306,9.081837236526946e306,9.181637634730539e306,9.281438032934132e306,9.381238431137725e306,9.481038829341318e306,9.580839227544911e306,9.680639625748503e306,9.780440023952096e306,9.880240422155689e306,9.980040820359282e306,1.0079841218562875e307,1.0179641616766467e307,1.027944201497006e307,1.0379242413173653e307,1.0479042811377246e307,1.0578843209580839e307,1.0678643607784432e307,1.0778444005988024e307,1.0878244404191617e307,1.097804480239521e307,1.1077845200598803e307,1.1177645598802396e307,1.1277445997005988e307,1.1377246395209582e307,1.1477046793413174e307,1.1576847191616765e307,1.167664758982036e307,1.1776447988023952e307,1.1876248386227546e307,1.1976048784431138e307,1.2075849182634732e307,1.2175649580838324e307,1.2275449979041915e307,1.237525037724551e307,1.2475050775449102e307,1.2574851173652696e307,1.2674651571856288e307,1.277445197005988e307,1.2874252368263474e307,1.2974052766467066e307,1.307385316467066e307,1.3173653562874252e307,1.3273453961077843e307,1.3373254359281438e307,1.347305475748503e307,1.3572855155688624e307,1.3672655553892216e307,1.3772455952095807e307,1.3872256350299402e307,1.3972056748502993e307,1.4071857146706588e307,1.417165754491018e307,1.4271457943113774e307,1.4371258341317366e307,1.4471058739520957e307,1.4570859137724552e307,1.4670659535928143e307,1.4770459934131738e307,1.487026033233533e307,1.4970060730538921e307,1.5069861128742516e307,1.5169661526946107e307,1.5269461925149702e307,1.5369262323353294e307,1.5469062721556885e307,1.556886311976048e307,1.5668663517964071e307,1.5768463916167666e307,1.5868264314371258e307,1.596806471257485e307,1.6067865110778444e307,1.6167665508982035e307,1.626746590718563e307,1.6367266305389221e307,1.6467066703592816e307,1.6566867101796408e307,1.66666675e307,1.6766467898203594e307,1.6866268296407185e307,1.696606869461078e307,1.7065869092814372e307,1.7165669491017963e307,1.7265469889221558e307,1.736527028742515e307,1.7465070685628744e307,1.7564871083832335e307,1.7664671482035927e307,1.7764471880239522e307,1.7864272278443113e307,1.7964072676646708e307,1.80638730748503e307,1.816367347305389e307,1.8263473871257486e307,1.8363274269461077e307,1.8463074667664672e307,1.8562875065868263e307,1.8662675464071858e307,1.876247586227545e307,1.8862276260479041e307,1.8962076658682636e307,1.9061877056886227e307,1.9161677455089822e307,1.9261477853293413e307,1.9361278251497005e307,1.94610786497006e307,1.9560879047904191e307,1.9660679446107786e307,1.9760479844311377e307,1.986028024251497e307,1.9960080640718563e307,2.0059881038922155e307,2.015968143712575e307,2.0259481835329341e307,2.0359282233532933e307,2.0459082631736527e307,2.055888302994012e307,2.0658683428143714e307,2.0758483826347305e307,2.08582842245509e307,2.0958084622754491e307,2.1057885020958083e307,2.1157685419161678e307,2.125748581736527e307,2.1357286215568864e307,2.1457086613772455e307,2.1556887011976047e307,2.1656687410179641e307,2.1756487808383233e307,2.1856288206586828e307,2.195608860479042e307,2.205588900299401e307,2.2155689401197605e307,2.2255489799401197e307,2.2355290197604792e307,2.2455090595808383e307,2.2554890994011975e307,2.265469139221557e307,2.2754491790419164e307,2.2854292188622753e307,2.2954092586826347e307,2.305389298502994e307,2.315369338323353e307,2.3253493781437125e307,2.335329417964072e307,2.3453094577844314e307,2.3552894976047903e307,2.3652695374251497e307,2.375249577245509e307,2.385229617065868e307,2.3952096568862275e307,2.405189696706587e307,2.4151697365269464e307,2.4251497763473053e307,2.4351298161676647e307,2.445109855988024e307,2.455089895808383e307,2.4650699356287425e307,2.475049975449102e307,2.485030015269461e307,2.4950100550898203e307,2.5049900949101797e307,2.514970134730539e307,2.524950174550898e307,2.5349302143712575e307,2.544910254191617e307,2.554890294011976e307,2.5648703338323353e307,2.5748503736526947e307,2.5848304134730537e307,2.594810453293413e307,2.6047904931137725e307,2.614770532934132e307,2.624750572754491e307,2.6347306125748503e307,2.64471065239521e307,2.6546906922155687e307,2.664670732035928e307,2.6746507718562875e307,2.684630811676647e307,2.694610851497006e307,2.7045908913173653e307,2.714570931137725e307,2.7245509709580837e307,2.734531010778443e307,2.7445110505988025e307,2.7544910904191615e307,2.764471130239521e307,2.7744511700598803e307,2.78443120988024e307,2.7944112497005987e307,2.804391289520958e307,2.8143713293413175e307,2.8243513691616765e307,2.834331408982036e307,2.8443114488023953e307,2.854291488622755e307,2.8642715284431137e307,2.874251568263473e307,2.8842316080838326e307,2.8942116479041915e307,2.904191687724551e307,2.9141717275449103e307,2.9241517673652693e307,2.9341318071856287e307,2.944111847005988e307,2.9540918868263476e307,2.9640719266467065e307,2.974051966467066e307,2.9840320062874253e307,2.9940120461077843e307,3.0039920859281437e307,3.013972125748503e307,3.023952165568862e307,3.0339322053892215e307,3.043912245209581e307,3.0538922850299404e307,3.0638723248502993e307,3.0738523646706587e307,3.083832404491018e307,3.093812444311377e307,3.1037924841317365e307,3.113772523952096e307,3.1237525637724554e307,3.1337326035928143e307,3.1437126434131737e307,3.153692683233533e307,3.163672723053892e307,3.1736527628742515e307,3.183632802694611e307,3.19361284251497e307,3.2035928823353293e307,3.2135729221556887e307,3.223552961976048e307,3.233533001796407e307,3.2435130416167665e307,3.253493081437126e307,3.263473121257485e307,3.2734531610778443e307,3.2834332008982037e307,3.293413240718563e307,3.303393280538922e307,3.3133733203592815e307,3.323353360179641e307,3.3333334e307,3.3433134398203593e307,3.3532934796407187e307,3.3632735194610777e307,3.373253559281437e307,3.3832335991017965e307,3.393213638922156e307,3.403193678742515e307,3.4131737185628743e307,3.4231537583832337e307,3.4331337982035927e307,3.443113838023952e307,3.4530938778443115e307,3.4630739176646705e307,3.47305395748503e307,3.4830339973053893e307,3.4930140371257487e307,3.5029940769461077e307,3.512974116766467e307,3.5229541565868265e307,3.5329341964071855e307,3.542914236227545e307,3.5528942760479043e307,3.5628743158682637e307,3.5728543556886227e307,3.582834395508982e307,3.5928144353293415e307,3.6027944751497005e307,3.61277451497006e307,3.6227545547904193e307,3.632734594610778e307,3.6427146344311377e307,3.652694674251497e307,3.6626747140718565e307,3.6726547538922155e307,3.682634793712575e307,3.6926148335329343e307,3.7025948733532933e307,3.7125749131736527e307,3.722554952994012e307,3.7325349928143715e307,3.7425150326347305e307,3.75249507245509e307,3.7624751122754493e307,3.7724551520958083e307,3.7824351919161677e307,3.792415231736527e307,3.802395271556886e307,3.8123753113772455e307,3.822355351197605e307,3.8323353910179643e307,3.8423154308383233e307,3.8522954706586827e307,3.862275510479042e307,3.872255550299401e307,3.8822355901197605e307,3.89221562994012e307,3.902195669760479e307,3.9121757095808383e307,3.9221557494011977e307,3.932135789221557e307,3.942115829041916e307,3.9520958688622755e307,3.962075908682635e307,3.972055948502994e307,3.9820359883233533e307,3.9920160281437127e307,4.001996067964072e307,4.011976107784431e307,4.0219561476047905e307,4.03193618742515e307,4.041916227245509e307,4.0518962670658683e307,4.0618763068862277e307,4.0718563467065866e307,4.081836386526946e307,4.0918164263473055e307,4.101796466167665e307,4.111776505988024e307,4.1217565458083833e307,4.1317365856287427e307,4.1417166254491016e307,4.151696665269461e307,4.1616767050898205e307,4.17165674491018e307,4.181636784730539e307,4.1916168245508983e307,4.2015968643712577e307,4.2115769041916166e307,4.221556944011976e307,4.2315369838323355e307,4.2415170236526944e307,4.251497063473054e307,4.2614771032934133e307,4.2714571431137727e307,4.2814371829341316e307,4.291417222754491e307,4.3013972625748505e307,4.3113773023952094e307,4.321357342215569e307,4.3313373820359283e307,4.341317421856287e307,4.3512974616766467e307,4.361277501497006e307,4.3712575413173655e307,4.3812375811377244e307,4.391217620958084e307,4.4011976607784433e307,4.411177700598802e307,4.4211577404191617e307,4.431137780239521e307,4.4411178200598805e307,4.4510978598802394e307,4.461077899700599e307,4.4710579395209583e307,4.481037979341317e307,4.4910180191616767e307,4.500998058982036e307,4.510978098802395e307,4.520958138622754e307,4.530938178443114e307,4.540918218263473e307,4.550898258083833e307,4.560878297904191e307,4.570858337724551e307,4.58083837754491e307,4.590818417365269e307,4.600798457185629e307,4.610778497005988e307,4.620758536826348e307,4.630738576646706e307,4.640718616467066e307,4.650698656287425e307,4.660678696107784e307,4.670658735928144e307,4.680638775748503e307,4.690618815568863e307,4.700598855389221e307,4.710578895209581e307,4.72055893502994e307,4.730538974850299e307,4.740519014670659e307,4.750499054491018e307,4.760479094311378e307,4.770459134131736e307,4.780439173952096e307,4.790419213772455e307,4.800399253592814e307,4.810379293413174e307,4.820359333233533e307,4.830339373053893e307,4.840319412874251e307,4.850299452694611e307,4.86027949251497e307,4.870259532335329e307,4.880239572155689e307,4.890219611976048e307,4.900199651796407e307,4.910179691616766e307,4.920159731437126e307,4.930139771257485e307,4.940119811077844e307,4.950099850898204e307,4.960079890718563e307,4.970059930538922e307,4.980039970359281e307,4.990020010179641e307,5.00000005e307,5.009980089820359e307,5.019960129640719e307,5.029940169461078e307,5.039920209281437e307,5.049900249101796e307,5.059880288922156e307,5.069860328742515e307,5.079840368562874e307,5.089820408383234e307,5.099800448203593e307,5.109780488023952e307,5.119760527844311e307,5.129740567664671e307,5.13972060748503e307,5.149700647305389e307,5.159680687125749e307,5.169660726946107e307,5.179640766766467e307,5.189620806586826e307,5.199600846407186e307,5.209580886227545e307,5.219560926047904e307,5.229540965868264e307,5.239521005688622e307,5.249501045508982e307,5.259481085329341e307,5.269461125149701e307,5.27944116497006e307,5.28942120479042e307,5.299401244610779e307,5.309381284431137e307,5.319361324251497e307,5.329341364071856e307,5.339321403892216e307,5.349301443712575e307,5.359281483532935e307,5.369261523353294e307,5.379241563173652e307,5.389221602994012e307,5.399201642814371e307,5.409181682634731e307,5.41916172245509e307,5.42914176227545e307,5.439121802095809e307,5.449101841916167e307,5.459081881736527e307,5.469061921556886e307,5.479041961377246e307,5.489022001197605e307,5.499002041017965e307,5.508982080838323e307,5.518962120658682e307,5.528942160479042e307,5.538922200299401e307,5.548902240119761e307,5.55888227994012e307,5.56886231976048e307,5.578842359580838e307,5.588822399401197e307,5.598802439221557e307,5.608782479041916e307,5.618762518862276e307,5.628742558682635e307,5.638722598502995e307,5.648702638323353e307,5.658682678143712e307,5.668662717964072e307,5.678642757784431e307,5.688622797604791e307,5.69860283742515e307,5.70858287724551e307,5.718562917065868e307,5.728542956886227e307,5.738522996706587e307,5.748503036526946e307,5.758483076347306e307,5.768463116167665e307,5.778443155988024e307,5.788423195808383e307,5.798403235628742e307,5.808383275449102e307,5.818363315269461e307,5.828343355089821e307,5.83832339491018e307,5.848303434730539e307,5.858283474550898e307,5.868263514371257e307,5.878243554191617e307,5.888223594011976e307,5.898203633832336e307,5.908183673652695e307,5.918163713473054e307,5.928143753293413e307,5.938123793113772e307,5.948103832934132e307,5.958083872754491e307,5.968063912574851e307,5.97804395239521e307,5.988023992215569e307,5.998004032035928e307,6.007984071856287e307,6.017964111676647e307,6.027944151497006e307,6.037924191317366e307,6.047904231137724e307,6.057884270958084e307,6.067864310778443e307,6.077844350598802e307,6.087824390419162e307,6.097804430239521e307,6.107784470059881e307,6.117764509880239e307,6.127744549700599e307,6.137724589520958e307,6.147704629341317e307,6.157684669161677e307,6.167664708982036e307,6.177644748802396e307,6.187624788622754e307,6.197604828443114e307,6.207584868263473e307,6.217564908083832e307,6.227544947904192e307,6.237524987724551e307,6.247505027544911e307,6.257485067365269e307,6.267465107185629e307,6.277445147005988e307,6.287425186826347e307,6.297405226646707e307,6.307385266467066e307,6.317365306287426e307,6.327345346107784e307,6.337325385928144e307,6.347305425748503e307,6.357285465568862e307,6.367265505389222e307,6.377245545209581e307,6.38722558502994e307,6.397205624850299e307,6.407185664670659e307,6.417165704491018e307,6.427145744311377e307,6.437125784131737e307,6.447105823952096e307,6.457085863772455e307,6.467065903592814e307,6.477045943413174e307,6.487025983233533e307,6.497006023053892e307,6.506986062874252e307,6.516966102694611e307,6.52694614251497e307,6.536926182335329e307,6.546906222155689e307,6.556886261976048e307,6.566866301796407e307,6.576846341616767e307,6.586826381437126e307,6.596806421257485e307,6.606786461077844e307,6.616766500898204e307,6.626746540718563e307,6.636726580538922e307,6.646706620359282e307,6.65668666017964e307,6.6666667e307,6.676646739820359e307,6.686626779640719e307,6.696606819461078e307,6.706586859281437e307,6.716566899101797e307,6.726546938922155e307,6.736526978742515e307,6.746507018562874e307,6.756487058383234e307,6.766467098203593e307,6.776447138023952e307,6.786427177844312e307,6.79640721766467e307,6.80638725748503e307,6.816367297305389e307,6.826347337125749e307,6.836327376946108e307,6.846307416766467e307,6.856287456586827e307,6.866267496407185e307,6.876247536227545e307,6.886227576047904e307,6.896207615868264e307,6.906187655688623e307,6.916167695508982e307,6.926147735329341e307,6.9361277751497e307,6.94610781497006e307,6.956087854790419e307,6.966067894610779e307,6.976047934431138e307,6.986027974251497e307,6.996008014071856e307,7.005988053892215e307,7.015968093712575e307,7.025948133532934e307,7.035928173353294e307,7.045908213173653e307,7.055888252994012e307,7.065868292814371e307,7.07584833263473e307,7.08582837245509e307,7.095808412275449e307,7.105788452095809e307,7.115768491916168e307,7.125748531736527e307,7.135728571556886e307,7.145708611377245e307,7.155688651197605e307,7.165668691017964e307,7.175648730838324e307,7.185628770658683e307,7.195608810479042e307,7.205588850299401e307,7.21556889011976e307,7.22554892994012e307,7.235528969760479e307,7.245509009580839e307,7.255489049401198e307,7.265469089221556e307,7.275449129041916e307,7.285429168862275e307,7.295409208682635e307,7.305389248502994e307,7.315369288323354e307,7.325349328143713e307,7.3353293679640715e307,7.345309407784431e307,7.35528944760479e307,7.36526948742515e307,7.375249527245509e307,7.385229567065869e307,7.395209606886228e307,7.405189646706587e307,7.415169686526946e307,7.425149726347305e307,7.435129766167665e307,7.445109805988024e307,7.455089845808384e307,7.465069885628743e307,7.475049925449102e307,7.485029965269461e307,7.49501000508982e307,7.50499004491018e307,7.514970084730539e307,7.524950124550899e307,7.534930164371257e307,7.544910204191617e307,7.554890244011976e307,7.564870283832335e307,7.574850323652695e307,7.584830363473054e307,7.594810403293414e307,7.604790443113772e307,7.614770482934132e307,7.624750522754491e307,7.63473056257485e307,7.64471060239521e307,7.654690642215569e307,7.664670682035929e307,7.674650721856287e307,7.684630761676647e307,7.694610801497006e307,7.704590841317365e307,7.714570881137725e307,7.724550920958084e307,7.734530960778444e307,7.744511000598802e307,7.754491040419162e307,7.764471080239521e307,7.77445112005988e307,7.78443115988024e307,7.794411199700599e307,7.804391239520958e307,7.814371279341317e307,7.824351319161677e307,7.834331358982036e307,7.844311398802395e307,7.854291438622755e307,7.864271478443114e307,7.874251518263473e307,7.884231558083832e307,7.894211597904192e307,7.904191637724551e307,7.91417167754491e307,7.92415171736527e307,7.934131757185629e307,7.944111797005988e307,7.954091836826347e307,7.964071876646707e307,7.974051916467066e307,7.984031956287425e307,7.994011996107785e307,8.003992035928144e307,8.013972075748503e307,8.023952115568862e307,8.033932155389222e307,8.043912195209581e307,8.05389223502994e307,8.0638722748503e307,8.073852314670659e307,8.083832354491018e307,8.093812394311377e307,8.103792434131737e307,8.113772473952096e307,8.123752513772455e307,8.133732553592815e307,8.143712593413173e307,8.153692633233533e307,8.163672673053892e307,8.173652712874252e307,8.183632752694611e307,8.19361279251497e307,8.20359283233533e307,8.213572872155688e307,8.223552911976048e307,8.233532951796407e307,8.243512991616767e307,8.253493031437126e307,8.263473071257485e307,8.273453111077845e307,8.283433150898203e307,8.293413190718563e307,8.303393230538922e307,8.313373270359282e307,8.323353310179641e307,8.33333335e307,8.34331338982036e307,8.353293429640718e307,8.363273469461078e307,8.373253509281437e307,8.383233549101797e307,8.393213588922156e307,8.403193628742515e307,8.413173668562874e307,8.423153708383233e307,8.433133748203593e307,8.443113788023952e307,8.453093827844312e307,8.463073867664671e307,8.47305390748503e307,8.483033947305389e307,8.493013987125748e307,8.502994026946108e307,8.512974066766467e307,8.522954106586827e307,8.532934146407186e307,8.542914186227545e307,8.552894226047904e307,8.562874265868263e307,8.572854305688623e307,8.582834345508982e307,8.592814385329342e307,8.602794425149701e307,8.61277446497006e307,8.622754504790419e307,8.632734544610778e307,8.642714584431138e307,8.652694624251497e307,8.662674664071857e307,8.672654703892216e307,8.682634743712574e307,8.692614783532934e307,8.702594823353293e307,8.712574863173653e307,8.722554902994012e307,8.732534942814372e307,8.742514982634731e307,8.752495022455089e307,8.762475062275449e307,8.772455102095808e307,8.782435141916168e307,8.792415181736527e307,8.802395221556887e307,8.812375261377246e307,8.822355301197604e307,8.832335341017964e307,8.842315380838323e307,8.852295420658683e307,8.862275460479042e307,8.872255500299402e307,8.882235540119761e307,8.892215579940119e307,8.902195619760479e307,8.912175659580838e307,8.922155699401198e307,8.932135739221557e307,8.942115779041917e307,8.952095818862276e307,8.962075858682634e307,8.972055898502994e307,8.982035938323353e307,8.992015978143713e307,9.001996017964071e307,9.011976057784432e307,9.02195609760479e307,9.03193613742515e307,9.041916177245509e307,9.05189621706587e307,9.061876256886228e307,9.071856296706586e307,9.081836336526947e307,9.091816376347305e307,9.101796416167665e307,9.111776455988024e307,9.121756495808382e307,9.131736535628743e307,9.141716575449101e307,9.151696615269462e307,9.16167665508982e307,9.17165669491018e307,9.181636734730539e307,9.191616774550897e307,9.201596814371258e307,9.211576854191616e307,9.221556894011977e307,9.231536933832335e307,9.241516973652695e307,9.251497013473054e307,9.261477053293412e307,9.271457093113773e307,9.281437132934131e307,9.291417172754492e307,9.30139721257485e307,9.31137725239521e307,9.321357292215569e307,9.331337332035927e307,9.341317371856288e307,9.351297411676646e307,9.361277451497007e307,9.371257491317365e307,9.381237531137725e307,9.391217570958084e307,9.401197610778442e307,9.411177650598803e307,9.421157690419161e307,9.431137730239522e307,9.44111777005988e307,9.45109780988024e307,9.461077849700599e307,9.471057889520957e307,9.481037929341318e307,9.491017969161676e307,9.500998008982037e307,9.510978048802395e307,9.520958088622756e307,9.530938128443114e307,9.540918168263472e307,9.550898208083833e307,9.560878247904191e307,9.570858287724552e307,9.58083832754491e307,9.59081836736527e307,9.600798407185629e307,9.610778447005987e307,9.620758486826348e307,9.630738526646706e307,9.640718566467067e307,9.650698606287425e307,9.660678646107786e307,9.670658685928144e307,9.680638725748502e307,9.690618765568863e307,9.700598805389221e307,9.710578845209582e307,9.72055888502994e307,9.730538924850299e307,9.740518964670659e307,9.750499004491017e307,9.760479044311378e307,9.770459084131736e307,9.780439123952097e307,9.790419163772455e307,9.800399203592814e307,9.810379243413174e307,9.820359283233532e307,9.830339323053893e307,9.840319362874251e307,9.850299402694612e307,9.86027944251497e307,9.870259482335329e307,9.880239522155689e307,9.890219561976047e307,9.900199601796408e307,9.910179641616766e307,9.920159681437127e307,9.930139721257485e307,9.940119761077844e307,9.950099800898204e307,9.960079840718562e307,9.970059880538923e307,9.980039920359281e307,9.990019960179642e307,1.0e308]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_negative.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_negative.json index 94b04ac20ee7..d2e26dd8f46c 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_negative.json @@ -1 +1 @@ -{"expected":[-0.34657359027997264,-0.3404625388971485,-0.33457109364634363,-0.32888723800141867,-0.32339984141210615,-0.3180985771608443,-0.3129738493750175,-0.3080167280062865,-0.3032188907641098,-0.29857257113706154,-0.2940705117583707,-0.28970592247547644,-0.285472442570696,-0.28136410665409234,-0.27737531381254793,-0.27350079965272023,-0.2697356109214776,-0.26607508242682765,-0.2625148160162577,-0.2590506613986834,-0.2556786986215131,-0.2523952220363065,-0.2491967256055976,-0.2460798894200992,-0.2430415673100419,-0.24007877544713213,-0.23718868184477704,-0.23436859667404164,-0.2316159633214523,-0.22892835012238874,-0.2263034427105594,-0.2237390369300278,-0.22123303226156635,-0.21878342571982545,-0.2163883061820061,-0.21404584911246846,-0.2117543116510497,-0.209512028035861,-0.20731740533400853,-0.2051689194560914,-0.2030651114324875,-0.20100458393138315,-0.19898599800025205,-0.1970080700140687,-0.19506956881496879,-0.1931693130293561,-0.1913061685496268,-0.18947904616873648,-0.1876868993568,-0.1859287221697821,-0.18420354728113442,-0.1825104441279542,-0.18084851716390002,-0.17921690421169933,-0.17761477490863203,-0.17604132923887542,-0.17449579614705407,-0.17297743222775977,-0.17148552048618954,-0.17001936916540536,-0.16857831063604226,-0.16716170034459002,-0.16576891581664793,-0.1643993557118045,-0.1630524389270272,-0.16172760374566036,-0.1604243070293291,-0.15914202345022826,-0.15788024476144552,-0.1566384791031227,-0.15541625034240525,-0.15421309744526276,-0.15302857387838759,-0.15186224703949394,-0.15071369771444632,-0.14958251955974575,-0.14846831860899332,-0.14737071280203803,-0.14628933153559295,-0.145223815234181,-0.14417381494033768,-0.14313899192306542,-0.14211901730359117,-0.1411135716975377,-0.14012234487266978,-0.1391450354214251,-0.13818135044748728,-0.13723100526569784,-0.13629372311464796,-0.13536923488132424,-0.13445727883722083,-0.13355760038536138,-0.13266995181770525,-0.13179409208244222,-0.13092978656070547,-0.13007680685225964,-0.12923493056974283,-0.1284039411410666,-0.1275836276195951,-0.12677378450174875,-0.12597421155169242,-0.1251847136327896,-0.12440510054551648,-0.12363518687154913,-0.12287479182374932,-0.12212373910178903,-0.12138185675316715,-0.12064897703938371,-0.11992493630704866,-0.1192095748637136,-0.11850273685822443,-0.11780427016540394,-0.11711402627488128,-0.11643186018389479,-0.11575763029390307,-0.11509119831084653,-0.11443242914890948,-0.11378119083763925,-0.11313735443228681,-0.11250079392723795,-0.11187138617241163,-0.11124901079250638,-0.11063355010898254,-0.11002488906467202,-0.10942291515091222,-0.10882751833710647,-0.10823859100261622,-0.10765602787089558,-0.10707972594578172,-0.10650958444985963,-0.105945504764822,-0.1053873903737495,-0.10483514680523891,-0.10428868157931083,-0.10374790415503064,-0.10321272587977946,-0.10268305994011473,-0.10215882131416243,-0.10163992672548543,-0.10112629459837419,-0.1006178450145096,-0.10011449967094793,-0.09961618183938206,-0.0991228163266325,-0.09863432943632637,-0.09815064893172172,-0.09767170399963773,-0.09719742521545262,-0.09672774450913209,-0.09626259513225348,-0.09580191162599098,-0.09534562979003001,-0.09489368665237892,-0.09444602044004786,-0.09400257055056606,-0.09356327752430939,-0.09312808301761154,-0.09269692977663274,-0.09226976161196136,-0.09184652337392453,-0.09142716092858447,-0.0910116211343985,-0.09059985181952153,-0.09019180175973017,-0.08978742065694863,-0.08938665911835764,-0.08898946863606766,-0.08859580156733862,-0.08820561111532939,-0.08781885131036,-0.08743547699167115,-0.08705544378966538,-0.08667870810861529,-0.08630522710982402,-0.08593495869522509,-0.08556786149140737,-0.08520389483405284,-0.08484301875277463,-0.08448519395634334,-0.08413038181828997,-0.08377854436287441,-0.0834296442514087,-0.08308364476892435,-0.08274050981117419,-0.08240020387195818,-0.08206269203076469,-0.0817279399407173,-0.08139591381681881,-0.0810665804244838,-0.08073990706835155,-0.08041586158137103,-0.08009441231415076,-0.0797755281245658,-0.07945917836761426,-0.07914533288551726,-0.07883396199805462,-0.0785250364931304,-0.07821852761756136,-0.07791440706808284,-0.07761264698256543,-0.0773132199314374,-0.07701609890930634,-0.0767212573267757,-0.07642866900245006,-0.07613830815512451,-0.0758501493961532,-0.075564167721992,-0.07528033850691103,-0.07499863749587221,-0.07471904079756761,-0.07444152487761452,-0.07416606655190286,-0.07389264298009116,-0.07362123165924707,-0.07335181041762912,-0.07308435740860512,-0.072818851104705,-0.07255527029180339,-0.07229359406342949,-0.07203380181520064,-0.07177587323937647,-0.07151978831953061,-0.0712655273253372,-0.07101307080746883,-0.0707623995926038,-0.07051349477853941,-0.07026633772940889,-0.07002091007099948,-0.06977719368616903,-0.06953517071035871,-0.06929482352719973,-0.06905613476421127,-0.06881908728858802,-0.06858366420307464,-0.06834984884192546,-0.06811762476694706,-0.06788697576362183,-0.06765788583731083,-0.06743033920953362,-0.06720432031432362,-0.06697981379465702,-0.0667568044989536,-0.06653527747764763,-0.06631521797982756,-0.06609661144994233,-0.06587944352457338,-0.06566370002927034,-0.06544936697544936,-0.06523643055735204,-0.06502487714906445,-0.06481469330159394,-0.0646058657400031,-0.06439838136059926,-0.0641922272281783,-0.0639873905733217,-0.06378385878974537,-0.06358161943169947,-0.06338066021141767,-0.06318096899661509,-0.06298253380803359,-0.0627853428170336,-0.06258938434323127,-0.062394646852179984,-0.06220111895309541,-0.062008789396622944,-0.06181764707264666,-0.06162768100813914,-0.06143888036505081,-0.06125123443823829,-0.061064732653430966,-0.06087936456523462,-0.06069511985517166,-0.06051198832975703,-0.060329959918609025,-0.06014902467259428,-0.05996917276200644,-0.05979039447477725,-0.05961268021472009,-0.059436020499804725,-0.059260405960462836,-0.05908582733792381,-0.05891227548257977,-0.058739741352379846,-0.058568216011252484,-0.05839769062755546,-0.058228156472553305,-0.05805960491892103,-0.057892027439274046,-0.05772541560472367,-0.05755976108345749,-0.057395055639344356,-0.05723129113056335,-0.05706845950825623,-0.056906552815203106,-0.05674556318452049,-0.05658548283838161,-0.056426304086758555,-0.05626801932618552,-0.05611062103854294,-0.0559541017898622,-0.05579845422915034,-0.05564367108723433,-0.055489745175624786,-0.05533666938539848,-0.055184436686099396,-0.05503304012465806,-0.05488247282432856,-0.054732727983643155,-0.054583798875384074,-0.05443567884557193,-0.05428836131247092,-0.054141839765610045,-0.053996107764820174,-0.053851158939286874,-0.053706986986618376,-0.053563585671928544,-0.05342094882693471,-0.053279070349069764,-0.05313794420060859,-0.0529975644078083,-0.0528579250600621,-0.05271902030906679,-0.05258084436800308,-0.05244339151072908,-0.05230665607098634,-0.052170632441618396,-0.052035315073801464,-0.051900698476287234,-0.05176677721465731,-0.05163354591058935,-0.05150099924113444,-0.05136913193800565,-0.05123793878687766,-0.05110741462669694,-0.05097755434900263,-0.05084835289725772,-0.05071980526619054,-0.05059190650114603,-0.05046465169744713,-0.050338035999765524,-0.05021205460150216,-0.050086702744176856,-0.049961975716827194,-0.049837868855416384,-0.04971437754224996,-0.049591497205401104,-0.04946922331814467,-0.049347551398399414,-0.04922647700817853,-0.04910599575304837,-0.048986103281594987,-0.048866795284898616,-0.0487480674960158,-0.04862991568946905,-0.048512335680744,-0.04839532332579385,-0.0482788745205509,-0.04816298520044534,-0.048047651339930775,-0.04793286895201668,-0.047818634087807614,-0.04770494283604889,-0.04759179132267887,-0.04747917571038757,-0.04736709219818156,-0.04725553702095505,-0.047144506449067,-0.04703399678792425,-0.04692400437757045,-0.046814525592280935,-0.046705556840163004,-0.04659709456276206,-0.04648913523467305,-0.04638167536315749,-0.046274711487765595,-0.04616824017996383,-0.04606225804276751,-0.04595676171037852,-0.04585174784782798,-0.04574721315062382,-0.045643154344403206,-0.04553956818458969,-0.04543645145605506,-0.04533380097278575,-0.045231613577553814,-0.04512988614159236,-0.04502861556427532,-0.04492779877280159,-0.044827432721883394,-0.04472751439343879,-0.044628040796288425,-0.04452900896585615,-0.04443041596387377,-0.044332258878089705,-0.04423453482198143,-0.044137240934471834,-0.044040374379649236,-0.043943932346491105,-0.04384791204859154,-0.04375231072389211,-0.043657125634416365,-0.04356235406600783,-0.04346799332807131,-0.04337404075331765,-0.04328049369751176,-0.04318734953922395,-0.04309460567958439,-0.04300225954204087,-0.04291030857211955,-0.042818750237188855,-0.04272758202622638,-0.04263680144958878,-0.04254640603878454,-0.04245639334624976,-0.04236676094512666,-0.04227750642904497,-0.04218862741190607,-0.04210012152766981,-0.042011986430144116,-0.04192421979277712,-0.04183681930845199,-0.04174978268928431,-0.04166310766642194,-0.041576791989847435,-0.04149083342818287,-0.04140522976849712,-0.041319978816115585,-0.04123507839443208,-0.041150526344723264,-0.04106632052596525,-0.040982458814652435,-0.040898939104618615,-0.040815759306860294,-0.040732917349362074,-0.04065041117692427,-0.04056823875099255,-0.040486398049489676,-0.04040488706664924,-0.04032370381285154,-0.04024284631446121,-0.04016231261366705,-0.040082100768323595,-0.04000220885179469,-0.03992263495279888,-0.03984337717525668,-0.03976443363813967,-0.03968580247532133,-0.03960748183542972,-0.03952946988170184,-0.039451764791839775,-0.03937436475786849,-0.03929726798599531,-0.03922047269647107,-0.03914397712345285,-0.039067779514868416,-0.03899187813228209,-0.03891627125076236,-0.038840957158750855,-0.03876593415793302,-0.03869120056311012,-0.038616754702072896,-0.03854259491547647,-0.038468719556716935,-0.0383951269918092,-0.038321815599266236,-0.03824878376997981,-0.038176029907102484,-0.03810355242593107,-0.038031349753791244,-0.03795942032992367,-0.037887762605371245,-0.03781637504286778,-0.03774525611672775,-0.03767440431273751,-0.03760381812804754,-0.037533496071066035,-0.03746343666135362,-0.03739363842951923,-0.0373240999171173,-0.037254819676545835,-0.037185796270945905,-0.03711702827410207,-0.03704851427034397,-0.03698025285444896,-0.03691224263154597,-0.036844482217020226,-0.03677697023641911,-0.03670970532535915,-0.03664268612943383,-0.03657591130412261,-0.036509379514700804,-0.036443089436150475,-0.036377039753072375,-0.03631122915959875,-0.036245656359307106,-0.03618032006513496,-0.03611521899929549,-0.03605035189319406,-0.03598571748734567,-0.035921314531293345,-0.035857141783527315,-0.0357931980114051,-0.035729481991072475],"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]} \ No newline at end of file +{"expected":[-0.3217505543966422,-0.3168438224307561,-0.3120796760164739,-0.3074521961785023,-0.3029557752740939,-0.2985850976279289,-0.294335121522996,-0.29020106244517896,-0.2861783774871366,-0.2822627508243861,-0.2784500801832789,-0.27473646422683834,-0.2711181907902249,-0.26759172590294206,-0.2641537035398278,-0.26080091604741634,-0.2575303051964318,-0.25433895381502275,-0.2512240779608777,-0.24818301959361388,-0.24521323971181797,-0.2423123119218614,-0.23947791640813942,-0.23670783427669775,-0.23399994224634696,-0.2313522076633219,-0.2287626838173471,-0.22622950553862597,-0.22375088505679852,-0.221325108104313,-0.21895053024795272,-0.21662557343344555,-0.21434872272918318,-0.21211852325608463,-0.20993357729157186,-0.20779254153648433,-0.2056941245345502,-0.20363708423476667,-0.20162022568771457,-0.19964239886745958,-0.19770249661126707,-0.19579945266989365,-0.1939322398617105,-0.19209986832437126,-0.19030138385816184,-0.1885358663555586,-0.1868024283118889,-0.18510021341232094,-0.1834283951907268,-0.18178617575624872,-0.1801727845836721,-0.17858747736395603,-0.17702953491150733,-0.17549826212499942,-0.1739929869987386,-0.17251305968176917,-0.17105785158208164,-0.16962675451345283,-0.16821917988259638,-0.16683455791444554,-0.16547233691352042,-0.16413198255945596,-0.1628129772348817,-0.1615148193839508,-0.1602370228999188,-0.15897911654026242,-0.1577406433679205,-0.15652116021731857,-0.15532023718391677,-0.15413745713609217,-0.15297241524823457,-0.15182471855399748,-0.15069398551870608,-0.14957984562997848,-0.1484819390056697,-0.1473999160182968,-0.1463334369351488,-0.14528217157332893,-0.14424579896901743,-0.14322400706028066,-0.14221649238278922,-0.14122295977784072,-0.14024312211211482,-0.13927670000861866,-0.1383234215883087,-0.1373830222219009,-0.13645524429140785,-0.13553983696096322,-0.1346365559565182,-0.13374516335401304,-0.13286542737565035,-0.13199712219391097,-0.1311400277429755,-0.13029392953722826,-0.1294586184965368,-0.12863389077801696,-0.12781954761400413,-0.12701539515596902,-0.12622124432412438,-0.1254369106624854,-0.12466221419915427,-0.12389697931161303,-0.12314103459681663,-0.12239421274588971,-0.12165635042323845,-0.12092728814989843,-0.1202068701909467,-0.11949494444681533,-0.11879136234835003,-0.1180959787554651,-0.1174086518592522,-0.1167292430874075,-0.11605761701284707,-0.11539364126538648,-0.11473718644636594,-0.11408812604610775,-0.11344633636409746,-0.11281169643178458,-0.11218408793790431,-0.11156339515622443,-0.11094950487562696,-0.11034230633243693,-0.10974169114491525,-0.10914755324983556,-0.10855978884106827,-0.1079782963100986,-0.10740297618840829,-0.10683373109165328,-0.10627046566557269,-0.10571308653356719,-0.10516150224588712,-0.10461562323037311,-0.10407536174469444,-0.10354063183003247,-0.10301134926615876,-0.10248743152785894,-0.10196879774265588,-0.10145536864978763,-0.10094706656039662,-0.10044381531888888,-0.09994554026542377,-0.09945216819949548,-0.09896362734457015,-0.0984798473137424,-0.09800075907637808,-0.09752629492571005,-0.09705638844735534,-0.09659097448872389,-0.09612998912928897,-0.0956733696516919,-0.0952210545136534,-0.09477298332066567,-0.09432909679944043,-0.09388933677208806,-0.09345364613100508,-0.09302196881444712,-0.09259424978276605,-0.09217043499528997,-0.09175047138782619,-0.09133430685076777,-0.09092189020778464,-0.0905131711950815,-0.09010810044120479,-0.08970662944738217,-0.08930871056837796,-0.08891429699384897,-0.08852334273018574,-0.08813580258282425,-0.08775163213901416,-0.08737078775102995,-0.08699322651981156,-0.08661890627902225,-0.08624778557951066,-0.08587982367416588,-0.08551498050315373,-0.08515321667952284,-0.0847944934751704,-0.08443877280715664,-0.08408601722435828,-0.08373618989445111,-0.08338925459121231,-0.08304517568213349,-0.08270391811633541,-0.08236544741277624,-0.0820297296487446,-0.08169673144862993,-0.08136641997296205,-0.0810387629077126,-0.08071372845385098,-0.08039128531714819,-0.0800714026982209,-0.07975405028281021,-0.07943919823228791,-0.07912681717438436,-0.07881687819413205,-0.07850935282501888,-0.07820421304034575,-0.07790143124478244,-0.0776009802661174,-0.07730283334719538,-0.07700696413803856,-0.07671334668814596,-0.07642195543896678,-0.07613276521654276,-0.0758457512243155,-0.07556088903609405,-0.07527815458917919,-0.07499752417763976,-0.07471897444573744,-0.07444248238149626,-0.07416802531041289,-0.07389558088930438,-0.07362512710028961,-0.07335664224490136,-0.07309010493832555,-0.0728254941037643,-0.07256278896692021,-0.07230196905059831,-0.07204301416942299,-0.07178590442466723,-0.07153062019919101,-0.0712771421524865,-0.07102545121582732,-0.07077552858751936,-0.07052735572825057,-0.0702809143565376,-0.07003618644426657,-0.06979315421232604,-0.06955180012632987,-0.06931210689242774,-0.06907405745320128,-0.06883763498364383,-0.06860282288722185,-0.06836960479201598,-0.06813796454693997,-0.06790788621803555,-0.06767935408484162,-0.06745235263683581,-0.06722686656994706,-0.06700288078313721,-0.06678038037505021,-0.06655935064072749,-0.06633977706838769,-0.0661216453362696,-0.06590494130953665,-0.06568965103724159,-0.06547576074935008,-0.06526325685382192,-0.0650521259337483,-0.06484235474454426,-0.0646339302111948,-0.06442683942555355,-0.06422106964369292,-0.06401660828330447,-0.0638134429211484,-0.0636115612905512,-0.06341095127895029,-0.0632116009254846,-0.0630134984186303,-0.0628166320938804,-0.06262099043146749,-0.06242656205412864,-0.06223333572491147,-0.062041300345020665,-0.06185044495170392,-0.061660758716176475,-0.061472230941583696,-0.06128485106100041,-0.06109860863546665,-0.06091349335205888,-0.060729495021995906,-0.06054660357877881,-0.06036480907636422,-0.06018410168737014,-0.06000447170131376,-0.059825909522880534,-0.05964840567022382,-0.05947195077329462,-0.059296535572200645,-0.05912215091559412,-0.058948787759087934,-0.058776437163699215,-0.05860509029432016,-0.05843473841821525,-0.05826537290354444,-0.058096985217911984,-0.05792956692694,-0.05776310969286652,-0.057597605273167735,-0.057433045519203384,-0.057269422374885394,-0.057106727875369086,-0.05694495414576634,-0.05678409339988067,-0.05662413793896339,-0.056465080150490676,-0.05630691250696115,-0.05614962756471343,-0.05599321796276329,-0.055837676421660265,-0.055682995742363,-0.0555291688051332,-0.05537618856844781,-0.055224048067928966,-0.05507274041529147,-0.05492225879730748,-0.05477259647478793,-0.05462374678158063,-0.05447570312358444,-0.054328458977779395,-0.05418200789127246,-0.05403634348035865,-0.05389145942959698,-0.05374734949090144,-0.05360400748264625,-0.0534614272887854,-0.053319602857986106,-0.053178528202776014,-0.053038197398703774,-0.052898604583512844,-0.05275974395632822,-0.052621609776855954,-0.05248419636459504,-0.05234749809806164,-0.05221150941402536,-0.05207622480675726,-0.051941638827289555,-0.051807746082686665,-0.051674541235327505,-0.0515420190021987,-0.051410174154198685,-0.051279001515452304,-0.051148495962635966,-0.051018652424312916,-0.05088946588027859,-0.0507609313609159,-0.05063304394656016,-0.05050579876687357,-0.05037919100022911,-0.05025321587310353,-0.05012786865947949,-0.05000314468025659,-0.04987903930267099,-0.04975554793972383,-0.04963266604961792,-0.049510389135202774,-0.049388712743427814,-0.04926763246480357,-0.04914714393287071,-0.049027242823676924,-0.04890792485526126,-0.048789185787146104,-0.04867102141983637,-0.04855342759432601,-0.04843640019161161,-0.04831993513221298,-0.048204028375700564,-0.04808867592022973,-0.04797387380208156,-0.04785961809521027,-0.04774590491079706,-0.047632730396810194,-0.047520090737571435,-0.04740798215332847,-0.047296400899833405,-0.04718534326792721,-0.04707480558312992,-0.04696478420523653,-0.046855275527918704,-0.04674627597833179,-0.04663778201672742,-0.04652979013607151,-0.046422296861667364,-0.04631529875078418,-0.04620879239229052,-0.04610277440629283,-0.04599724144377898,-0.0458921901862666,-0.04578761734545618,-0.04568351966288902,-0.045579893909609655,-0.04547673688583295,-0.045374045420615704,-0.04527181637153256,-0.045170046624356405,-0.04506873309274299,-0.044967872717919764,-0.04486746246837891,-0.0447674993395744,-0.04466798035362317,-0.04456890255901013,-0.044470263030297254,-0.0443720588678363,-0.044274287197485516,-0.04417694517032996,-0.04408002996240546,-0.043983538774426324,-0.04388746883151644,-0.04379181738294403,-0.043696581701859735,-0.04360175908503818,-0.043507346852622863,-0.043413342347874306,-0.04331974293692149,-0.04322654600851653,-0.04313374897379236,-0.04304134926602367,-0.042949344340390855,-0.04285773167374694,-0.04276650876438749,-0.04267567313182347,-0.04258522231655694,-0.04249515387985963,-0.042405465403554304,-0.04231615448979881,-0.04222721876087299,-0.042138655858968095,-0.04205046344597895,-0.041962639203298714,-0.04187518083161609,-0.04178808605071521,-0.041701352599277895,-0.04161497823468839,-0.04152896073284058,-0.04144329788794745,-0.04135798751235301,-0.04127302743634656,-0.04118841550797901,-0.04110414959288175,-0.04102022757408752,-0.040936647351853525,-0.040853406843486734,-0.04077050398317126,-0.040687936721797845,-0.040605703026795406,-0.040523800881964625,-0.04044222828731352,-0.04036098325889499,-0.0402800638286464,-0.0401994680442309,-0.04011919396888084,-0.040039239681242914,-0.03995960327522523,-0.039880282859846156,-0.03980127655908492,-0.03972258251173409,-0.03964419887125369,-0.039566123805627094,-0.03948835549721856,-0.039410892142632506,-0.03933373195257439,-0.03925687315171323,-0.03918031397854571,-0.03910405268526191,-0.03902808753761254,-0.038952416814777784,-0.03887703880923758,-0.0388019518266435,-0.03872715418569199,-0.03865264421799918,-0.03857842026797708,-0.03850448069271117,-0.03843082386183942,-0.0383574481574328,-0.038284351973876876,-0.03821153371775507,-0.03813899180773301,-0.03806672467444436,-0.03799473076037781,-0.0379230085197654,-0.03785155641847215,-0.03778037293388685,-0.0377094565548141,-0.03763880578136761,-0.03756841912486462,-0.03749829510772156,-0.037428432263350866,-0.03735882913605887,-0.03728948428094495,-0.0372203962638017,-0.03715156366101622,-0.037082985059472565,-0.03701465905645517,-0.036946584259553404,-0.03687875928656716,-0.03681118276541351,-0.03674385333403423,-0.03667676964030463,-0.03660993034194304,-0.03654333410642158,-0.03647697961087763,-0.03641086554202652,-0.03634499059607497,-0.03627935347863554,-0.03621395290464202,-0.03614878759826571,-0.03608385629283262,-0.03601915773074147,-0.03595469066338271,-0.03589045385105832,-0.03582644606290247,-0.035762666076803035,-0.03569911267932397],"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]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_positive.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_positive.json index 5e9452e579ca..63e3fa584c2e 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/large_positive.json @@ -1 +1 @@ -{"expected":[0.34657359027997264,0.3404625388971485,0.33457109364634363,0.32888723800141867,0.32339984141210615,0.3180985771608443,0.3129738493750175,0.3080167280062865,0.3032188907641098,0.29857257113706154,0.2940705117583707,0.28970592247547644,0.285472442570696,0.28136410665409234,0.27737531381254793,0.27350079965272023,0.2697356109214776,0.26607508242682765,0.2625148160162577,0.2590506613986834,0.2556786986215131,0.2523952220363065,0.2491967256055976,0.2460798894200992,0.2430415673100419,0.24007877544713213,0.23718868184477704,0.23436859667404164,0.2316159633214523,0.22892835012238874,0.2263034427105594,0.2237390369300278,0.22123303226156635,0.21878342571982545,0.2163883061820061,0.21404584911246846,0.2117543116510497,0.209512028035861,0.20731740533400853,0.2051689194560914,0.2030651114324875,0.20100458393138315,0.19898599800025205,0.1970080700140687,0.19506956881496879,0.1931693130293561,0.1913061685496268,0.18947904616873648,0.1876868993568,0.1859287221697821,0.18420354728113442,0.1825104441279542,0.18084851716390002,0.17921690421169933,0.17761477490863203,0.17604132923887542,0.17449579614705407,0.17297743222775977,0.17148552048618954,0.17001936916540536,0.16857831063604226,0.16716170034459002,0.16576891581664793,0.1643993557118045,0.1630524389270272,0.16172760374566036,0.1604243070293291,0.15914202345022826,0.15788024476144552,0.1566384791031227,0.15541625034240525,0.15421309744526276,0.15302857387838759,0.15186224703949394,0.15071369771444632,0.14958251955974575,0.14846831860899332,0.14737071280203803,0.14628933153559295,0.145223815234181,0.14417381494033768,0.14313899192306542,0.14211901730359117,0.1411135716975377,0.14012234487266978,0.1391450354214251,0.13818135044748728,0.13723100526569784,0.13629372311464796,0.13536923488132424,0.13445727883722083,0.13355760038536138,0.13266995181770525,0.13179409208244222,0.13092978656070547,0.13007680685225964,0.12923493056974283,0.1284039411410666,0.1275836276195951,0.12677378450174875,0.12597421155169242,0.1251847136327896,0.12440510054551648,0.12363518687154913,0.12287479182374932,0.12212373910178903,0.12138185675316715,0.12064897703938371,0.11992493630704866,0.1192095748637136,0.11850273685822443,0.11780427016540394,0.11711402627488128,0.11643186018389479,0.11575763029390307,0.11509119831084653,0.11443242914890948,0.11378119083763925,0.11313735443228681,0.11250079392723795,0.11187138617241163,0.11124901079250638,0.11063355010898254,0.11002488906467202,0.10942291515091222,0.10882751833710647,0.10823859100261622,0.10765602787089558,0.10707972594578172,0.10650958444985963,0.105945504764822,0.1053873903737495,0.10483514680523891,0.10428868157931083,0.10374790415503064,0.10321272587977946,0.10268305994011473,0.10215882131416243,0.10163992672548543,0.10112629459837419,0.1006178450145096,0.10011449967094793,0.09961618183938206,0.0991228163266325,0.09863432943632637,0.09815064893172172,0.09767170399963773,0.09719742521545262,0.09672774450913209,0.09626259513225348,0.09580191162599098,0.09534562979003001,0.09489368665237892,0.09444602044004786,0.09400257055056606,0.09356327752430939,0.09312808301761154,0.09269692977663274,0.09226976161196136,0.09184652337392453,0.09142716092858447,0.0910116211343985,0.09059985181952153,0.09019180175973017,0.08978742065694863,0.08938665911835764,0.08898946863606766,0.08859580156733862,0.08820561111532939,0.08781885131036,0.08743547699167115,0.08705544378966538,0.08667870810861529,0.08630522710982402,0.08593495869522509,0.08556786149140737,0.08520389483405284,0.08484301875277463,0.08448519395634334,0.08413038181828997,0.08377854436287441,0.0834296442514087,0.08308364476892435,0.08274050981117419,0.08240020387195818,0.08206269203076469,0.0817279399407173,0.08139591381681881,0.0810665804244838,0.08073990706835155,0.08041586158137103,0.08009441231415076,0.0797755281245658,0.07945917836761426,0.07914533288551726,0.07883396199805462,0.0785250364931304,0.07821852761756136,0.07791440706808284,0.07761264698256543,0.0773132199314374,0.07701609890930634,0.0767212573267757,0.07642866900245006,0.07613830815512451,0.0758501493961532,0.075564167721992,0.07528033850691103,0.07499863749587221,0.07471904079756761,0.07444152487761452,0.07416606655190286,0.07389264298009116,0.07362123165924707,0.07335181041762912,0.07308435740860512,0.072818851104705,0.07255527029180339,0.07229359406342949,0.07203380181520064,0.07177587323937647,0.07151978831953061,0.0712655273253372,0.07101307080746883,0.0707623995926038,0.07051349477853941,0.07026633772940889,0.07002091007099948,0.06977719368616903,0.06953517071035871,0.06929482352719973,0.06905613476421127,0.06881908728858802,0.06858366420307464,0.06834984884192546,0.06811762476694706,0.06788697576362183,0.06765788583731083,0.06743033920953362,0.06720432031432362,0.06697981379465702,0.0667568044989536,0.06653527747764763,0.06631521797982756,0.06609661144994233,0.06587944352457338,0.06566370002927034,0.06544936697544936,0.06523643055735204,0.06502487714906445,0.06481469330159394,0.0646058657400031,0.06439838136059926,0.0641922272281783,0.0639873905733217,0.06378385878974537,0.06358161943169947,0.06338066021141767,0.06318096899661509,0.06298253380803359,0.0627853428170336,0.06258938434323127,0.062394646852179984,0.06220111895309541,0.062008789396622944,0.06181764707264666,0.06162768100813914,0.06143888036505081,0.06125123443823829,0.061064732653430966,0.06087936456523462,0.06069511985517166,0.06051198832975703,0.060329959918609025,0.06014902467259428,0.05996917276200644,0.05979039447477725,0.05961268021472009,0.059436020499804725,0.059260405960462836,0.05908582733792381,0.05891227548257977,0.058739741352379846,0.058568216011252484,0.05839769062755546,0.058228156472553305,0.05805960491892103,0.057892027439274046,0.05772541560472367,0.05755976108345749,0.057395055639344356,0.05723129113056335,0.05706845950825623,0.056906552815203106,0.05674556318452049,0.05658548283838161,0.056426304086758555,0.05626801932618552,0.05611062103854294,0.0559541017898622,0.05579845422915034,0.05564367108723433,0.055489745175624786,0.05533666938539848,0.055184436686099396,0.05503304012465806,0.05488247282432856,0.054732727983643155,0.054583798875384074,0.05443567884557193,0.05428836131247092,0.054141839765610045,0.053996107764820174,0.053851158939286874,0.053706986986618376,0.053563585671928544,0.05342094882693471,0.053279070349069764,0.05313794420060859,0.0529975644078083,0.0528579250600621,0.05271902030906679,0.05258084436800308,0.05244339151072908,0.05230665607098634,0.052170632441618396,0.052035315073801464,0.051900698476287234,0.05176677721465731,0.05163354591058935,0.05150099924113444,0.05136913193800565,0.05123793878687766,0.05110741462669694,0.05097755434900263,0.05084835289725772,0.05071980526619054,0.05059190650114603,0.05046465169744713,0.050338035999765524,0.05021205460150216,0.050086702744176856,0.049961975716827194,0.049837868855416384,0.04971437754224996,0.049591497205401104,0.04946922331814467,0.049347551398399414,0.04922647700817853,0.04910599575304837,0.048986103281594987,0.048866795284898616,0.0487480674960158,0.04862991568946905,0.048512335680744,0.04839532332579385,0.0482788745205509,0.04816298520044534,0.048047651339930775,0.04793286895201668,0.047818634087807614,0.04770494283604889,0.04759179132267887,0.04747917571038757,0.04736709219818156,0.04725553702095505,0.047144506449067,0.04703399678792425,0.04692400437757045,0.046814525592280935,0.046705556840163004,0.04659709456276206,0.04648913523467305,0.04638167536315749,0.046274711487765595,0.04616824017996383,0.04606225804276751,0.04595676171037852,0.04585174784782798,0.04574721315062382,0.045643154344403206,0.04553956818458969,0.04543645145605506,0.04533380097278575,0.045231613577553814,0.04512988614159236,0.04502861556427532,0.04492779877280159,0.044827432721883394,0.04472751439343879,0.044628040796288425,0.04452900896585615,0.04443041596387377,0.044332258878089705,0.04423453482198143,0.044137240934471834,0.044040374379649236,0.043943932346491105,0.04384791204859154,0.04375231072389211,0.043657125634416365,0.04356235406600783,0.04346799332807131,0.04337404075331765,0.04328049369751176,0.04318734953922395,0.04309460567958439,0.04300225954204087,0.04291030857211955,0.042818750237188855,0.04272758202622638,0.04263680144958878,0.04254640603878454,0.04245639334624976,0.04236676094512666,0.04227750642904497,0.04218862741190607,0.04210012152766981,0.042011986430144116,0.04192421979277712,0.04183681930845199,0.04174978268928431,0.04166310766642194,0.041576791989847435,0.04149083342818287,0.04140522976849712,0.041319978816115585,0.04123507839443208,0.041150526344723264,0.04106632052596525,0.040982458814652435,0.040898939104618615,0.040815759306860294,0.040732917349362074,0.04065041117692427,0.04056823875099255,0.040486398049489676,0.04040488706664924,0.04032370381285154,0.04024284631446121,0.04016231261366705,0.040082100768323595,0.04000220885179469,0.03992263495279888,0.03984337717525668,0.03976443363813967,0.03968580247532133,0.03960748183542972,0.03952946988170184,0.039451764791839775,0.03937436475786849,0.03929726798599531,0.03922047269647107,0.03914397712345285,0.039067779514868416,0.03899187813228209,0.03891627125076236,0.038840957158750855,0.03876593415793302,0.03869120056311012,0.038616754702072896,0.03854259491547647,0.038468719556716935,0.0383951269918092,0.038321815599266236,0.03824878376997981,0.038176029907102484,0.03810355242593107,0.038031349753791244,0.03795942032992367,0.037887762605371245,0.03781637504286778,0.03774525611672775,0.03767440431273751,0.03760381812804754,0.037533496071066035,0.03746343666135362,0.03739363842951923,0.0373240999171173,0.037254819676545835,0.037185796270945905,0.03711702827410207,0.03704851427034397,0.03698025285444896,0.03691224263154597,0.036844482217020226,0.03677697023641911,0.03670970532535915,0.03664268612943383,0.03657591130412261,0.036509379514700804,0.036443089436150475,0.036377039753072375,0.03631122915959875,0.036245656359307106,0.03618032006513496,0.03611521899929549,0.03605035189319406,0.03598571748734567,0.035921314531293345,0.035857141783527315,0.0357931980114051,0.035729481991072475],"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]} \ No newline at end of file +{"expected":[0.3217505543966422,0.3168438224307561,0.3120796760164739,0.3074521961785023,0.3029557752740939,0.2985850976279289,0.294335121522996,0.29020106244517896,0.2861783774871366,0.2822627508243861,0.2784500801832789,0.27473646422683834,0.2711181907902249,0.26759172590294206,0.2641537035398278,0.26080091604741634,0.2575303051964318,0.25433895381502275,0.2512240779608777,0.24818301959361388,0.24521323971181797,0.2423123119218614,0.23947791640813942,0.23670783427669775,0.23399994224634696,0.2313522076633219,0.2287626838173471,0.22622950553862597,0.22375088505679852,0.221325108104313,0.21895053024795272,0.21662557343344555,0.21434872272918318,0.21211852325608463,0.20993357729157186,0.20779254153648433,0.2056941245345502,0.20363708423476667,0.20162022568771457,0.19964239886745958,0.19770249661126707,0.19579945266989365,0.1939322398617105,0.19209986832437126,0.19030138385816184,0.1885358663555586,0.1868024283118889,0.18510021341232094,0.1834283951907268,0.18178617575624872,0.1801727845836721,0.17858747736395603,0.17702953491150733,0.17549826212499942,0.1739929869987386,0.17251305968176917,0.17105785158208164,0.16962675451345283,0.16821917988259638,0.16683455791444554,0.16547233691352042,0.16413198255945596,0.1628129772348817,0.1615148193839508,0.1602370228999188,0.15897911654026242,0.1577406433679205,0.15652116021731857,0.15532023718391677,0.15413745713609217,0.15297241524823457,0.15182471855399748,0.15069398551870608,0.14957984562997848,0.1484819390056697,0.1473999160182968,0.1463334369351488,0.14528217157332893,0.14424579896901743,0.14322400706028066,0.14221649238278922,0.14122295977784072,0.14024312211211482,0.13927670000861866,0.1383234215883087,0.1373830222219009,0.13645524429140785,0.13553983696096322,0.1346365559565182,0.13374516335401304,0.13286542737565035,0.13199712219391097,0.1311400277429755,0.13029392953722826,0.1294586184965368,0.12863389077801696,0.12781954761400413,0.12701539515596902,0.12622124432412438,0.1254369106624854,0.12466221419915427,0.12389697931161303,0.12314103459681663,0.12239421274588971,0.12165635042323845,0.12092728814989843,0.1202068701909467,0.11949494444681533,0.11879136234835003,0.1180959787554651,0.1174086518592522,0.1167292430874075,0.11605761701284707,0.11539364126538648,0.11473718644636594,0.11408812604610775,0.11344633636409746,0.11281169643178458,0.11218408793790431,0.11156339515622443,0.11094950487562696,0.11034230633243693,0.10974169114491525,0.10914755324983556,0.10855978884106827,0.1079782963100986,0.10740297618840829,0.10683373109165328,0.10627046566557269,0.10571308653356719,0.10516150224588712,0.10461562323037311,0.10407536174469444,0.10354063183003247,0.10301134926615876,0.10248743152785894,0.10196879774265588,0.10145536864978763,0.10094706656039662,0.10044381531888888,0.09994554026542377,0.09945216819949548,0.09896362734457015,0.0984798473137424,0.09800075907637808,0.09752629492571005,0.09705638844735534,0.09659097448872389,0.09612998912928897,0.0956733696516919,0.0952210545136534,0.09477298332066567,0.09432909679944043,0.09388933677208806,0.09345364613100508,0.09302196881444712,0.09259424978276605,0.09217043499528997,0.09175047138782619,0.09133430685076777,0.09092189020778464,0.0905131711950815,0.09010810044120479,0.08970662944738217,0.08930871056837796,0.08891429699384897,0.08852334273018574,0.08813580258282425,0.08775163213901416,0.08737078775102995,0.08699322651981156,0.08661890627902225,0.08624778557951066,0.08587982367416588,0.08551498050315373,0.08515321667952284,0.0847944934751704,0.08443877280715664,0.08408601722435828,0.08373618989445111,0.08338925459121231,0.08304517568213349,0.08270391811633541,0.08236544741277624,0.0820297296487446,0.08169673144862993,0.08136641997296205,0.0810387629077126,0.08071372845385098,0.08039128531714819,0.0800714026982209,0.07975405028281021,0.07943919823228791,0.07912681717438436,0.07881687819413205,0.07850935282501888,0.07820421304034575,0.07790143124478244,0.0776009802661174,0.07730283334719538,0.07700696413803856,0.07671334668814596,0.07642195543896678,0.07613276521654276,0.0758457512243155,0.07556088903609405,0.07527815458917919,0.07499752417763976,0.07471897444573744,0.07444248238149626,0.07416802531041289,0.07389558088930438,0.07362512710028961,0.07335664224490136,0.07309010493832555,0.0728254941037643,0.07256278896692021,0.07230196905059831,0.07204301416942299,0.07178590442466723,0.07153062019919101,0.0712771421524865,0.07102545121582732,0.07077552858751936,0.07052735572825057,0.0702809143565376,0.07003618644426657,0.06979315421232604,0.06955180012632987,0.06931210689242774,0.06907405745320128,0.06883763498364383,0.06860282288722185,0.06836960479201598,0.06813796454693997,0.06790788621803555,0.06767935408484162,0.06745235263683581,0.06722686656994706,0.06700288078313721,0.06678038037505021,0.06655935064072749,0.06633977706838769,0.0661216453362696,0.06590494130953665,0.06568965103724159,0.06547576074935008,0.06526325685382192,0.0650521259337483,0.06484235474454426,0.0646339302111948,0.06442683942555355,0.06422106964369292,0.06401660828330447,0.0638134429211484,0.0636115612905512,0.06341095127895029,0.0632116009254846,0.0630134984186303,0.0628166320938804,0.06262099043146749,0.06242656205412864,0.06223333572491147,0.062041300345020665,0.06185044495170392,0.061660758716176475,0.061472230941583696,0.06128485106100041,0.06109860863546665,0.06091349335205888,0.060729495021995906,0.06054660357877881,0.06036480907636422,0.06018410168737014,0.06000447170131376,0.059825909522880534,0.05964840567022382,0.05947195077329462,0.059296535572200645,0.05912215091559412,0.058948787759087934,0.058776437163699215,0.05860509029432016,0.05843473841821525,0.05826537290354444,0.058096985217911984,0.05792956692694,0.05776310969286652,0.057597605273167735,0.057433045519203384,0.057269422374885394,0.057106727875369086,0.05694495414576634,0.05678409339988067,0.05662413793896339,0.056465080150490676,0.05630691250696115,0.05614962756471343,0.05599321796276329,0.055837676421660265,0.055682995742363,0.0555291688051332,0.05537618856844781,0.055224048067928966,0.05507274041529147,0.05492225879730748,0.05477259647478793,0.05462374678158063,0.05447570312358444,0.054328458977779395,0.05418200789127246,0.05403634348035865,0.05389145942959698,0.05374734949090144,0.05360400748264625,0.0534614272887854,0.053319602857986106,0.053178528202776014,0.053038197398703774,0.052898604583512844,0.05275974395632822,0.052621609776855954,0.05248419636459504,0.05234749809806164,0.05221150941402536,0.05207622480675726,0.051941638827289555,0.051807746082686665,0.051674541235327505,0.0515420190021987,0.051410174154198685,0.051279001515452304,0.051148495962635966,0.051018652424312916,0.05088946588027859,0.0507609313609159,0.05063304394656016,0.05050579876687357,0.05037919100022911,0.05025321587310353,0.05012786865947949,0.05000314468025659,0.04987903930267099,0.04975554793972383,0.04963266604961792,0.049510389135202774,0.049388712743427814,0.04926763246480357,0.04914714393287071,0.049027242823676924,0.04890792485526126,0.048789185787146104,0.04867102141983637,0.04855342759432601,0.04843640019161161,0.04831993513221298,0.048204028375700564,0.04808867592022973,0.04797387380208156,0.04785961809521027,0.04774590491079706,0.047632730396810194,0.047520090737571435,0.04740798215332847,0.047296400899833405,0.04718534326792721,0.04707480558312992,0.04696478420523653,0.046855275527918704,0.04674627597833179,0.04663778201672742,0.04652979013607151,0.046422296861667364,0.04631529875078418,0.04620879239229052,0.04610277440629283,0.04599724144377898,0.0458921901862666,0.04578761734545618,0.04568351966288902,0.045579893909609655,0.04547673688583295,0.045374045420615704,0.04527181637153256,0.045170046624356405,0.04506873309274299,0.044967872717919764,0.04486746246837891,0.0447674993395744,0.04466798035362317,0.04456890255901013,0.044470263030297254,0.0443720588678363,0.044274287197485516,0.04417694517032996,0.04408002996240546,0.043983538774426324,0.04388746883151644,0.04379181738294403,0.043696581701859735,0.04360175908503818,0.043507346852622863,0.043413342347874306,0.04331974293692149,0.04322654600851653,0.04313374897379236,0.04304134926602367,0.042949344340390855,0.04285773167374694,0.04276650876438749,0.04267567313182347,0.04258522231655694,0.04249515387985963,0.042405465403554304,0.04231615448979881,0.04222721876087299,0.042138655858968095,0.04205046344597895,0.041962639203298714,0.04187518083161609,0.04178808605071521,0.041701352599277895,0.04161497823468839,0.04152896073284058,0.04144329788794745,0.04135798751235301,0.04127302743634656,0.04118841550797901,0.04110414959288175,0.04102022757408752,0.040936647351853525,0.040853406843486734,0.04077050398317126,0.040687936721797845,0.040605703026795406,0.040523800881964625,0.04044222828731352,0.04036098325889499,0.0402800638286464,0.0401994680442309,0.04011919396888084,0.040039239681242914,0.03995960327522523,0.039880282859846156,0.03980127655908492,0.03972258251173409,0.03964419887125369,0.039566123805627094,0.03948835549721856,0.039410892142632506,0.03933373195257439,0.03925687315171323,0.03918031397854571,0.03910405268526191,0.03902808753761254,0.038952416814777784,0.03887703880923758,0.0388019518266435,0.03872715418569199,0.03865264421799918,0.03857842026797708,0.03850448069271117,0.03843082386183942,0.0383574481574328,0.038284351973876876,0.03821153371775507,0.03813899180773301,0.03806672467444436,0.03799473076037781,0.0379230085197654,0.03785155641847215,0.03778037293388685,0.0377094565548141,0.03763880578136761,0.03756841912486462,0.03749829510772156,0.037428432263350866,0.03735882913605887,0.03728948428094495,0.0372203962638017,0.03715156366101622,0.037082985059472565,0.03701465905645517,0.036946584259553404,0.03687875928656716,0.03681118276541351,0.03674385333403423,0.03667676964030463,0.03660993034194304,0.03654333410642158,0.03647697961087763,0.03641086554202652,0.03634499059607497,0.03627935347863554,0.03621395290464202,0.03614878759826571,0.03608385629283262,0.03601915773074147,0.03595469066338271,0.03589045385105832,0.03582644606290247,0.035762666076803035,0.03569911267932397],"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]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_negative.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_negative.json index 34881d4f3bf1..bafb2564fa87 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_negative.json @@ -1 +1 @@ -{"expected":[-0.035729481991072475,-0.03554724134027826,-0.035366851088091206,-0.03518828318299127,-0.035011510137841796,-0.03483650501576095,-0.034663241416415635,-0.03449169346272319,-0.03432183578794688,-0.03415364352317151,-0.03398709228514617,-0.03382215816448174,-0.03365881771419102,-0.033497047938559885,-0.03333682628233855,-0.03317813062024202,-0.033020939246749634,-0.032865230866193695,-0.032710984583127746,-0.03255817989296524,-0.0324067966728799,-0.03225681517295913,-0.03210821600760244,-0.03196098014715696,-0.0318150889097823,-0.031670523953537796,-0.03152726726868465,-0.031385301170196514,-0.031244608290471886,-0.03110517157224186,-0.030966974261667266,-0.030829999901619384,-0.030694232325138376,-0.030559655649064155,-0.030426254267834272,-0.03029401284744386,-0.030162916319562583,-0.03003294987580395,-0.029904098962142356,-0.029776349273473474,-0.029649686748313586,-0.029524097563633996,-0.029399568129826182,-0.029276085085794146,-0.029153635294170026,-0.029032205836649515,-0.02891178400944342,-0.02879235731884226,-0.02867391347689035,-0.02855644039716645,-0.028439926190667847,-0.028324359161794887,-0.028209727804433152,-0.02809602079813057,-0.02798322700436663,-0.027871335462911324,-0.027760335388271135,-0.02765021616621975,-0.027540967350411154,-0.0274325786590727,-0.027325039971776217,-0.02721834132628469,-0.027112472915472766,-0.027007425084318838,-0.026903188326966927,-0.026799753283856403,-0.026697110738917743,-0.026595251616832554,-0.0264941669803562,-0.026393848027701245,-0.026294286089980273,-0.026195472628706366,-0.026097399233349854,-0.026000057618949742,-0.025903439623778512,-0.02580753720705882,-0.025712342446730808,-0.02561784753726866,-0.02552404478754526,-0.02543092661874355,-0.025338485562313547,-0.025246714257973802,-0.025155605451756154,-0.025065151994092722,-0.024975346837944088,-0.02488618303696758,-0.024797653743724706,-0.024709752207926775,-0.0246224717747177,-0.024535805882993117,-0.02444974806375495,-0.024364291938500447,-0.02427943121764496,-0.024195159698977634,-0.024111471266149067,-0.024028359887190428,-0.02394581961306299,-0.023863844576237588,-0.02378242898930311,-0.023701567143603438,-0.02362125340790212,-0.023541482227074157,-0.023462248120824137,-0.02338354568243032,-0.023305369577513835,-0.02322771454283257,-0.023150575385099098,-0.02307394697982206,-0.022997824270170584,-0.022922202265861048,-0.022847076042065796,-0.02277244073834328,-0.022698291557589068,-0.022624623765007325,-0.02255143268710229,-0.02247871371068926,-0.02240646228192467,-0.02233467390535483,-0.022263344142982915,-0.02219246861335379,-0.02212204299065627,-0.02205206300384241,-0.021982524435763543,-0.021913423122322532,-0.021844754951642044,-0.021776515863248407,-0.021708701847270705,-0.02164130894365484,-0.021574333241392175,-0.021507770877762462,-0.021441618037590787,-0.021375870952518135,-0.02131052590028544,-0.021245579204030616,-0.02118102723159852,-0.02111686639486339,-0.02105309314906364,-0.020989703992148594,-0.020926695464137092,-0.020864064146487525,-0.020801806661479263,-0.020739919671605014,-0.020678399878974102,-0.02061724402472631,-0.020556448888456074,-0.02049601128764688,-0.0204359280771156,-0.020376196148466575,-0.020316812429555256,-0.020257773883961216,-0.020199077510470283,-0.020140720342565747,-0.020082699447928242,-0.02002501192794439,-0.019967654917223767,-0.019910625583124265,-0.019853921125285463,-0.019797538775170057,-0.019741475795613,-0.01968572948037836,-0.01963029715372359,-0.019575176169971224,-0.019520363913087715,-0.019465857796269366,-0.01941165526153517,-0.019357753779326425,-0.019304150848113048,-0.019250843994006367,-0.019197830770378344,-0.019145108757487064,-0.019092675562108388,-0.019040528817173642,-0.018988666181413247,-0.018937085339006104,-0.018885783999234792,-0.018834759896146212,-0.018784010788217877,-0.018733534458029444,-0.018683328711939628,-0.01863339137976825,-0.01858372031448342,-0.01853431339189364,-0.018485168510344877,-0.018436283590422427,-0.018387656574657477,-0.018339285427238308,-0.018291168133726082,-0.018243302700775055,-0.018195687155857176,-0.01814831954699101,-0.01810119794247489,-0.018054320430624174,-0.018007685119512635,-0.01796129013671781,-0.01791513362907029,-0.017869213762406865,-0.017823528721327482,-0.01777807670895587,-0.017732855946703877,-0.017687864674039357,-0.017643101148257612,-0.017598563644256278,-0.017554250454313608,-0.01751015988787013,-0.01746629027131356,-0.01742263994776694,-0.01737920727687998,-0.017335990634623467,-0.01729298841308678,-0.017250199020278377,-0.01720762087992926,-0.01716525243129935,-0.017123092128986675,-0.017081138442739452,-0.01703938985727079,-0.016997844872076253,-0.01695650200125399,-0.016915359773327497,-0.01687441673107102,-0.01683367143133737,-0.016793122444888352,-0.016752768356227566,-0.016712607763435628,-0.01667263927800776,-0.01663286152469371,-0.016593273141339973,-0.01655387277873422,-0.01651465910045196,-0.01647563078270541,-0.016436786514194442,-0.016398124995959693,-0.0163596449412377,-0.016321345075318097,-0.016283224135402796,-0.01624528087046717,-0.01620751404112312,-0.016169922419484107,-0.016132504789032002,-0.016095259944485855,-0.016058186691672378,-0.016021283847398315,-0.015984550239324484,-0.01594798470584164,-0.015911586095947932,-0.015875353269128128,-0.01583928509523443,-0.01580338045436894,-0.015767638236767703,-0.01573205734268633,-0.01569663668228717,-0.015661375175528004,-0.01562627175205221,-0.015591325351080454,-0.015556534921303771,-0.015521899420778135,-0.01548741781682038,-0.015453089085905541,-0.015418912213565554,-0.015384886194289292,-0.015351010031423903,-0.015317282737077486,-0.015283703332023021,-0.015250270845603585,-0.015216984315638768,-0.015183842788332362,-0.015150845318181203,-0.015117990967885266,-0.015085278808258851,-0.015052707918142979,-0.015020277384318883,-0.014987986301422656,-0.014955833771860952,-0.014923818905727802,-0.014891940820722467,-0.014860198642068409,-0.014828591502433187,-0.014797118541849482,-0.01476577890763705,-0.014734571754325729,-0.014703496243579339,-0.014672551544120623,-0.0146417368316571,-0.01461105128880784,-0.014580494105031169,-0.014550064476553295,-0.014519761606297801,-0.014489584703816035,-0.014459532985218343,-0.014429605673106204,-0.01439980199650515,-0.014370121190798547,-0.014340562497662196,-0.014311125164999723,-0.01428180844687878,-0.014252611603468017,-0.014223533900974823,-0.014194574611583844,-0.014165733013396247,-0.0141370083903697,-0.014108400032259109,-0.014079907234558065,-0.014051529298440996,-0.014023265530706016,-0.01399511524371846,-0.013967077755355117,-0.013939152388949112,-0.013911338473235446,-0.013883635342297208,-0.013856042335512412,-0.013828558797501469,-0.01380118407807528,-0.013773917532183962,-0.013746758519866164,-0.013719706406198979,-0.013692760561248456,-0.013665920360020699,-0.013639185182413534,-0.013612554413168713,-0.013586027441824753,-0.013559603662670231,-0.013533282474697709,-0.013507063281558122,-0.013480945491515753,-0.013454928517403686,-0.013429011776579828,-0.013403194690883352,-0.013377476686591741,-0.01335185719437825,-0.013326335649269898,-0.01330091149060592,-0.013275584161996708,-0.013250353111283196,-0.01322521779049676,-0.013200177655819496,-0.013175232167545025,-0.013150380790039688,-0.013125622991704205,-0.013100958244935772,-0.013076386026090545,-0.01305190581544661,-0.013027517097167303,-0.013003219359264979,-0.012979012093565181,-0.01295489479567121,-0.012930866964929061,-0.01290692810439279,-0.012883077720790241,-0.012859315324489163,-0.01283564042946368,-0.012812052553261169,-0.012788551216969455,-0.012765135945184419,-0.012741806265977915,-0.012718561710866064,-0.012695401814777883,-0.012672326116024278,-0.012649334156267332,-0.012626425480489973,-0.01260359963696594,-0.012580856177230097,-0.012558194656049036,-0.01253561463139204,-0.012513115664402318,-0.012490697319368577,-0.012468359163696884,-0.01244610076788284,-0.012423921705484045,-0.012401821553092851,-0.012379799890309429,-0.01235785629971508,-0.012335990366845892,-0.0123142016801666,-0.012292489831044797,-0.012270854413725359,-0.01224929502530518,-0.01222781126570814,-0.012206402737660368,-0.012185069046665742,-0.012163809800981655,-0.012142624611595026,-0.012121513092198574,-0.012100474859167326,-0.012079509531535384,-0.012058616730972915,-0.0120377960817634,-0.012017047210781097,-0.011996369747468755,-0.011975763323815542,-0.011955227574335217,-0.011934762136044512,-0.011914366648441746,-0.011894040753485642,-0.011873784095574384,-0.011853596321524868,-0.011833477080552181,-0.011813426024249266,-0.011793442806566808,-0.011773527083793337,-0.011753678514535505,-0.011733896759698575,-0.011714181482467115,-0.011694532348285876,-0.011674949024840852,-0.011655431182040562,-0.011635978491997483,-0.011616590629009703,-0.011597267269542712,-0.011578008092211439,-0.01155881277776239,-0.011539681009056052,-0.011520612471049378,-0.011501606850778511,-0.011482663837341667,-0.011463783121882168,-0.011444964397571653,-0.011426207359593456,-0.01140751170512615,-0.011388877133327244,-0.011370303345317039,-0.011351790044162646,-0.01133333693486218,-0.011314943724329054,-0.01129661012137649,-0.011278335836702126,-0.011260120582872816,-0.01124196407430955,-0.011223866027272517,-0.011205826159846334,-0.01118784419192541,-0.011169919845199426,-0.011152052843138993,-0.011134242910981421,-0.011116489775716634,-0.011098793166073212,-0.01108115281250458,-0.011063568447175317,-0.011046039803947598,-0.011028566618367763,-0.011011148627653016,-0.010993785570678257,-0.010976477187963019,-0.010959223221658541,-0.01094202341553498,-0.010924877514968694,-0.010907785266929707,-0.010890746419969234,-0.010873760724207364,-0.010856827931320836,-0.010839947794530944,-0.010823120068591534,-0.010806344509777131,-0.010789620875871177,-0.010772948926154356,-0.010756328421393065,-0.010739759123827937,-0.010723240797162543,-0.010706773206552115,-0.010690356118592445,-0.01067398930130884,-0.010657672524145213,-0.010641405557953227,-0.010625188174981585,-0.0106090201488654,-0.010592901254615655,-0.010576831268608764,-0.010560809968576237,-0.010544837133594418,-0.01052891254407435,-0.010513035981751682,-0.01049720722967672,-0.010481426072204527,-0.010465692294985144,-0.010450005684953875,-0.01043436603032166,-0.010418773120565557,-0.010403226746419287,-0.010387726699863873,-0.010372272774118356,-0.010356864763630604,-0.010341502464068196,-0.010326185672309383,-0.010310914186434145,-0.010295687805715307,-0.010280506330609741,-0.010265369562749661,-0.010250277304933967,-0.010235229361119695,-0.010220225536413515,-0.010205265637063317,-0.010190349470449877,-0.010175476845078586,-0.010160647570571247,-0.010145861457657963,-0.010131118318169069,-0.010116417965027168,-0.010101760212239193,-0.010087144874888581,-0.010072571769127485,-0.010058040712169076,-0.010043551522279882,-0.010029104018772229,-0.01001469802199671,-0.010000333353334763],"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]} \ No newline at end of file +{"expected":[-0.03569911267932397,-0.03551733397670141,-0.03533739635104694,-0.03515927198478589,-0.034982933617716636,-0.03480835453312581,-0.0346355085443165,-0.03446436998153492,-0.03429491367928208,-0.034127114963997174,-0.03396094964210002,-0.033796393988380566,-0.03363342473472359,-0.03347201905915746,-0.033312154575216184,-0.03315380932160417,-0.03299696175215392,-0.03284159072606688,-0.03268767549842818,-0.03253519571098644,-0.03238413138318995,-0.03223446290347091,-0.03208617102076997,-0.03193923683629313,-0.031793641795493696,-0.031649367680272274,-0.03150639660138772,-0.03136471099107256,-0.03122429359584646,-0.03108512746952151,-0.030947195966393455,-0.030810482734613162,-0.030674971709732594,-0.03054064710842025,-0.03040749342234059,-0.03027549541219278,-0.03014463810190364,-0.030014906772970452,-0.02988628695894889,-0.029758764440081936,-0.029632325238065436,-0.029506955610946444,-0.029382642048150217,-0.029259371265632304,-0.029137130201151905,-0.02901590600966317,-0.028895686058820726,-0.028776457924596512,-0.02865820938700437,-0.028540928425929587,-0.028424603217060206,-0.02830922212791735,-0.02819477371398165,-0.028081246714913227,-0.02796863005086235,-0.027856912818868602,-0.027746084289345684,-0.027636133902649858,-0.02752705126572945,-0.02741882614885331,-0.027311448482416095,-0.027204908353818155,-0.027099196004418152,-0.026994301826556284,-0.026890216360646382,-0.026786930292334855,-0.02668443444972485,-0.026582719800663762,-0.026481777450092548,-0.02638159863745503,-0.026282174734165817,-0.026183497241135115,-0.026085557786349103,-0.025988348122504255,-0.02589186012469441,-0.025796085788149008,-0.025701017226021382,-0.025606646667225622,-0.025512966454320996,-0.025419969041442433,-0.025327646992276204,-0.025235992978079408,-0.025144999775742305,-0.02505466026589235,-0.024964967431038928,-0.024875914353757772,-0.024787494214913962,-0.024699700291922817,-0.024612525957047403,-0.024525964675732065,-0.024440010004970876,-0.024354655591710288,-0.024269895171285086,-0.02418572256588687,-0.02410213168306424,-0.02401911651425398,-0.023936671133342434,-0.0238547896952564,-0.023773466434582793,-0.023692695664216463,-0.023612471774035408,-0.02353278922960284,-0.023453642570895345,-0.023375026411056682,-0.02329693543517648,-0.023219364399093338,-0.023142308128221715,-0.023065761516402123,-0.022989719524773966,-0.022914177180670684,-0.022839129576536495,-0.022764571868864405,-0.022690499277154885,-0.022616907082894818,-0.022543790628556246,-0.022471145316614413,-0.02239896660858479,-0.022327250024078496,-0.022255991139875867,-0.022185185589017654,-0.02211482905991352,-0.0220449172954674,-0.021975446092219447,-0.02190641129950405,-0.02183780881862375,-0.021769634602038554,-0.021701884652570412,-0.02163455502262247,-0.021567641813412784,-0.021501141174222273,-0.021435049301656423,-0.021369362438920642,-0.02130407687510887,-0.02123918894450513,-0.02117469502589787,-0.02111059154190669,-0.021046874958321284,-0.02098354178345229,-0.020920588567493847,-0.020858011901897535,-0.020795808418757555,-0.02073397479020685,-0.020672507727823947,-0.020611403982050355,-0.02055066034161819,-0.020490273632987954,-0.02043024071979613,-0.02037055850231251,-0.020311223916906943,-0.020252233935525422,-0.020193585565175212,-0.020135275847418973,-0.020077301857877497,-0.02001966070574114,-0.01996234953328954,-0.019905365515419597,-0.019848705859181488,-0.01979236780332263,-0.019736348617839305,-0.019680645603535944,-0.01962525609159178,-0.019570177443134877,-0.019515407048823225,-0.019460942328432897,-0.019406780730453065,-0.019352919731687738,-0.01929935683686414,-0.019246089578247548,-0.019193115515262503,-0.01914043223412023,-0.0190880373474522,-0.019035928493949677,-0.018984103338009154,-0.018932559569383552,-0.01888129490283911,-0.01883030707781778,-0.018779593858105143,-0.018729153031503604,-0.018678982409510884,-0.01862907982700364,-0.01857944314192616,-0.01853007023498399,-0.01848095900934245,-0.018432107390329935,-0.01838351332514588,-0.018335174782573363,-0.018287089752696196,-0.01823925624662048,-0.018191672296200494,-0.01814433595376887,-0.018097245291870998,-0.01805039840300348,-0.01800379339935671,-0.017957428412561392,-0.017911301593438966,-0.017865411111755856,-0.01781975515598153,-0.01777433193305021,-0.017729139668126233,-0.017684176604372968,-0.01763944100272528,-0.01759493114166539,-0.01755064531700213,-0.01750658184165355,-0.017462739045432732,-0.017419115274836895,-0.017375708892839563,-0.017332518278685892,-0.01728954182769103,-0.017246777951041438,-0.01720422507559918,-0.017161881643709107,-0.017119746113008844,-0.017077816956241613,-0.017036092661071756,-0.016994571729902992,-0.01695325267969929,-0.01691213404180838,-0.016871214361787793,-0.01683049219923345,-0.0167899661276107,-0.016749634734087804,-0.016709496619371822,-0.01666955039754683,-0.01662979469591446,-0.016590228154836746,-0.016550849427581144,-0.016511657180167796,-0.01647265009121899,-0.016433826851810638,-0.016395186165325988,-0.01635672674731128,-0.016318447325333493,-0.016280346638840044,-0.016242423439020503,-0.01620467648867015,-0.016167104562055525,-0.01612970644478176,-0.01609248093366181,-0.016055426836587446,-0.016018542972402055,-0.01598182817077516,-0.01594528127207871,-0.015908901127264983,-0.015872686597746252,-0.015836636555275996,-0.01580074988183182,-0.01576502546949986,-0.01572946222036085,-0.01569405904637766,-0.015658814869284363,-0.015623728620476831,-0.015588799240904738,-0.015554025680965044,-0.015519406900396916,-0.015484941868177997,-0.015450629562422097,-0.015416468970278227,-0.015382459087830976,-0.015348598920002185,-0.015314887480453924,-0.015281323791492761,-0.015247906883975277,-0.015214635797214788,-0.01518150957888934,-0.015148527284950851,-0.015115687979535481,-0.015082990734875118,-0.015050434631210044,-0.015018018756702715,-0.014985742207352666,-0.014953604086912481,-0.014921603506804878,-0.014889739586040819,-0.014858011451138717,-0.014826418236044612,-0.014794959082053404,-0.01476363313773108,-0.014732439558837922,-0.01470137750825268,-0.014670446155897706,-0.014639644678665053,-0.01460897226034346,-0.014578428091546275,-0.014548011369640302,-0.014517721298675498,-0.014487557089315565,-0.014457517958769404,-0.014427603130723417,-0.014397811835274662,-0.0143681433088648,-0.014338596794214896,-0.014309171540260991,-0.014279866802090499,-0.014250681840879334,-0.014221615923829868,-0.014192668324109588,-0.014163838320790543,-0.014135125198789508,-0.014106528248808864,-0.01407804676727823,-0.014049680056296763,-0.014021427423576165,-0.013993288182384388,-0.013965261651490007,-0.013937347155107258,-0.013909544022841726,-0.013881851589636701,-0.01385426919572017,-0.013826796186552415,-0.013799431912774258,-0.01377217573015592,-0.013745026999546467,-0.013717985086823866,-0.01369104936284562,-0.013664219203399998,-0.013637493989157822,-0.013610873105624824,-0.013584355943094558,-0.01355794189660187,-0.0135316303658769,-0.013505420755299617,-0.01347931247385489,-0.013453304935088067,-0.013427397557061098,-0.013401589762309101,-0.013375880977797504,-0.013350270634879619,-0.013324758169254738,-0.013299343020926693,-0.013274024634162884,-0.013248802457453794,-0.013223675943472955,-0.013198644549037346,-0.013173707735068279,-0.013148864966552706,-0.013124115712504958,-0.013099459445928935,-0.013074895643780685,-0.01305042378693146,-0.013026043360131126,-0.013001753851972019,-0.012977554754853196,-0.012953445564945086,-0.012929425782154521,-0.01290549491009017,-0.012881652456028358,-0.01285789793087925,-0.01283423084915342,-0.01281065072892877,-0.012787157091817844,-0.012763749462935474,-0.012740427370866792,-0.012717190347635592,-0.01269403792867302,-0.01267096965278665,-0.012647985062129838,-0.012625083702171455,-0.012602265121665922,-0.012579528872623593,-0.012556874510281417,-0.012534301593073971,-0.012511809682604756,-0.012489398343617838,-0.012467067143969758,-0.012444815654601779,-0.012422643449512409,-0.012400550105730206,-0.01237853520328691,-0.012356598325190815,-0.01233473905740047,-0.01231295698879861,-0.012291251711166403,-0.012269622819157952,-0.012248069910275066,-0.012226592584842289,-0.012205190445982214,-0.012183863099591026,-0.012162610154314335,-0.012141431221523221,-0.01212032591529057,-0.012099293852367618,-0.01207833465216078,-0.012057447936708671,-0.012036633330659413,-0.01201589046124814,-0.011995218958274764,-0.011974618454081935,-0.011954088583533262,-0.01193362898399175,-0.011913239295298436,-0.011892919159751266,-0.011872668222084186,-0.011852486129446433,-0.011832372531382057,-0.011812327079809623,-0.011792349429002145,-0.011772439235567225,-0.011752596158427346,-0.011732819858800444,-0.011713110000180594,-0.01169346624831895,-0.011673888271204845,-0.011654375739047085,-0.011634928324255443,-0.011615545701422328,-0.01159622754730463,-0.011576973540805766,-0.01155778336295788,-0.011538656696904246,-0.011519593227881824,-0.011500592643203989,-0.011481654632243455,-0.011462778886415335,-0.011443965099160392,-0.011425212965928444,-0.011406522184161924,-0.011387892453279636,-0.01136932347466061,-0.011350814951628175,-0.011332366589434152,-0.011313978095243213,-0.011295649178117387,-0.011277379549000712,-0.011259168920704067,-0.011241017007890092,-0.011222923527058313,-0.01120488819653037,-0.011186910736435421,-0.01116899086869564,-0.011151128317011908,-0.011133322806849597,-0.011115574065424518,-0.011097881821688985,-0.011080245806318023,-0.011062665751695708,-0.011045141391901629,-0.011027672462697478,-0.011010258701513774,-0.010992899847436717,-0.010975595641195149,-0.01095834582514765,-0.010941150143269757,-0.010924008341141295,-0.010906920165933835,-0.010889885366398264,-0.010872903692852473,-0.010855974897169158,-0.010839098732763742,-0.0108222749545824,-0.010805503319090196,-0.010788783584259347,-0.010772115509557567,-0.010755498855936548,-0.010738933385820515,-0.010722418863094932,-0.010705955053095259,-0.010689541722595857,-0.010673178639798962,-0.010656865574323797,-0.010640602297195732,-0.010624388580835597,-0.010608224199049054,-0.010592108927016088,-0.01057604254128058,-0.01056002481973998,-0.01054405554163508,-0.010528134487539871,-0.01051226143935149,-0.010496436180280264,-0.010480658494839845,-0.01046492816883743,-0.010449244989364068,-0.010433608744785052,-0.01041801922473041,-0.010402476220085465,-0.010386979522981486,-0.010371528926786425,-0.010356124226095734,-0.010340765216723268,-0.010325451695692251,-0.010310183461226351,-0.010294960312740815,-0.010279782050833677,-0.010264648477277066,-0.010249559395008568,-0.01023451460812268,-0.01021951392186233,-0.010204557142610473,-0.010189644077881763,-0.010174774536314298,-0.010159948327661435,-0.010145165262783676,-0.010130425153640628,-0.010115727813283038,-0.010101073055844867,-0.010086460696535491,-0.010071890551631898,-0.010057362438471022,-0.010042876175442089,-0.010028431581979054,-0.010014028478553108,-0.009999666686665238],"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]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_positive.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_positive.json index 477d2fc95f00..50e4cf2d7e30 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/larger_positive.json @@ -1 +1 @@ -{"expected":[0.035729481991072475,0.03554724134027826,0.035366851088091206,0.03518828318299127,0.035011510137841796,0.03483650501576095,0.034663241416415635,0.03449169346272319,0.03432183578794688,0.03415364352317151,0.03398709228514617,0.03382215816448174,0.03365881771419102,0.033497047938559885,0.03333682628233855,0.03317813062024202,0.033020939246749634,0.032865230866193695,0.032710984583127746,0.03255817989296524,0.0324067966728799,0.03225681517295913,0.03210821600760244,0.03196098014715696,0.0318150889097823,0.031670523953537796,0.03152726726868465,0.031385301170196514,0.031244608290471886,0.03110517157224186,0.030966974261667266,0.030829999901619384,0.030694232325138376,0.030559655649064155,0.030426254267834272,0.03029401284744386,0.030162916319562583,0.03003294987580395,0.029904098962142356,0.029776349273473474,0.029649686748313586,0.029524097563633996,0.029399568129826182,0.029276085085794146,0.029153635294170026,0.029032205836649515,0.02891178400944342,0.02879235731884226,0.02867391347689035,0.02855644039716645,0.028439926190667847,0.028324359161794887,0.028209727804433152,0.02809602079813057,0.02798322700436663,0.027871335462911324,0.027760335388271135,0.02765021616621975,0.027540967350411154,0.0274325786590727,0.027325039971776217,0.02721834132628469,0.027112472915472766,0.027007425084318838,0.026903188326966927,0.026799753283856403,0.026697110738917743,0.026595251616832554,0.0264941669803562,0.026393848027701245,0.026294286089980273,0.026195472628706366,0.026097399233349854,0.026000057618949742,0.025903439623778512,0.02580753720705882,0.025712342446730808,0.02561784753726866,0.02552404478754526,0.02543092661874355,0.025338485562313547,0.025246714257973802,0.025155605451756154,0.025065151994092722,0.024975346837944088,0.02488618303696758,0.024797653743724706,0.024709752207926775,0.0246224717747177,0.024535805882993117,0.02444974806375495,0.024364291938500447,0.02427943121764496,0.024195159698977634,0.024111471266149067,0.024028359887190428,0.02394581961306299,0.023863844576237588,0.02378242898930311,0.023701567143603438,0.02362125340790212,0.023541482227074157,0.023462248120824137,0.02338354568243032,0.023305369577513835,0.02322771454283257,0.023150575385099098,0.02307394697982206,0.022997824270170584,0.022922202265861048,0.022847076042065796,0.02277244073834328,0.022698291557589068,0.022624623765007325,0.02255143268710229,0.02247871371068926,0.02240646228192467,0.02233467390535483,0.022263344142982915,0.02219246861335379,0.02212204299065627,0.02205206300384241,0.021982524435763543,0.021913423122322532,0.021844754951642044,0.021776515863248407,0.021708701847270705,0.02164130894365484,0.021574333241392175,0.021507770877762462,0.021441618037590787,0.021375870952518135,0.02131052590028544,0.021245579204030616,0.02118102723159852,0.02111686639486339,0.02105309314906364,0.020989703992148594,0.020926695464137092,0.020864064146487525,0.020801806661479263,0.020739919671605014,0.020678399878974102,0.02061724402472631,0.020556448888456074,0.02049601128764688,0.0204359280771156,0.020376196148466575,0.020316812429555256,0.020257773883961216,0.020199077510470283,0.020140720342565747,0.020082699447928242,0.02002501192794439,0.019967654917223767,0.019910625583124265,0.019853921125285463,0.019797538775170057,0.019741475795613,0.01968572948037836,0.01963029715372359,0.019575176169971224,0.019520363913087715,0.019465857796269366,0.01941165526153517,0.019357753779326425,0.019304150848113048,0.019250843994006367,0.019197830770378344,0.019145108757487064,0.019092675562108388,0.019040528817173642,0.018988666181413247,0.018937085339006104,0.018885783999234792,0.018834759896146212,0.018784010788217877,0.018733534458029444,0.018683328711939628,0.01863339137976825,0.01858372031448342,0.01853431339189364,0.018485168510344877,0.018436283590422427,0.018387656574657477,0.018339285427238308,0.018291168133726082,0.018243302700775055,0.018195687155857176,0.01814831954699101,0.01810119794247489,0.018054320430624174,0.018007685119512635,0.01796129013671781,0.01791513362907029,0.017869213762406865,0.017823528721327482,0.01777807670895587,0.017732855946703877,0.017687864674039357,0.017643101148257612,0.017598563644256278,0.017554250454313608,0.01751015988787013,0.01746629027131356,0.01742263994776694,0.01737920727687998,0.017335990634623467,0.01729298841308678,0.017250199020278377,0.01720762087992926,0.01716525243129935,0.017123092128986675,0.017081138442739452,0.01703938985727079,0.016997844872076253,0.01695650200125399,0.016915359773327497,0.01687441673107102,0.01683367143133737,0.016793122444888352,0.016752768356227566,0.016712607763435628,0.01667263927800776,0.01663286152469371,0.016593273141339973,0.01655387277873422,0.01651465910045196,0.01647563078270541,0.016436786514194442,0.016398124995959693,0.0163596449412377,0.016321345075318097,0.016283224135402796,0.01624528087046717,0.01620751404112312,0.016169922419484107,0.016132504789032002,0.016095259944485855,0.016058186691672378,0.016021283847398315,0.015984550239324484,0.01594798470584164,0.015911586095947932,0.015875353269128128,0.01583928509523443,0.01580338045436894,0.015767638236767703,0.01573205734268633,0.01569663668228717,0.015661375175528004,0.01562627175205221,0.015591325351080454,0.015556534921303771,0.015521899420778135,0.01548741781682038,0.015453089085905541,0.015418912213565554,0.015384886194289292,0.015351010031423903,0.015317282737077486,0.015283703332023021,0.015250270845603585,0.015216984315638768,0.015183842788332362,0.015150845318181203,0.015117990967885266,0.015085278808258851,0.015052707918142979,0.015020277384318883,0.014987986301422656,0.014955833771860952,0.014923818905727802,0.014891940820722467,0.014860198642068409,0.014828591502433187,0.014797118541849482,0.01476577890763705,0.014734571754325729,0.014703496243579339,0.014672551544120623,0.0146417368316571,0.01461105128880784,0.014580494105031169,0.014550064476553295,0.014519761606297801,0.014489584703816035,0.014459532985218343,0.014429605673106204,0.01439980199650515,0.014370121190798547,0.014340562497662196,0.014311125164999723,0.01428180844687878,0.014252611603468017,0.014223533900974823,0.014194574611583844,0.014165733013396247,0.0141370083903697,0.014108400032259109,0.014079907234558065,0.014051529298440996,0.014023265530706016,0.01399511524371846,0.013967077755355117,0.013939152388949112,0.013911338473235446,0.013883635342297208,0.013856042335512412,0.013828558797501469,0.01380118407807528,0.013773917532183962,0.013746758519866164,0.013719706406198979,0.013692760561248456,0.013665920360020699,0.013639185182413534,0.013612554413168713,0.013586027441824753,0.013559603662670231,0.013533282474697709,0.013507063281558122,0.013480945491515753,0.013454928517403686,0.013429011776579828,0.013403194690883352,0.013377476686591741,0.01335185719437825,0.013326335649269898,0.01330091149060592,0.013275584161996708,0.013250353111283196,0.01322521779049676,0.013200177655819496,0.013175232167545025,0.013150380790039688,0.013125622991704205,0.013100958244935772,0.013076386026090545,0.01305190581544661,0.013027517097167303,0.013003219359264979,0.012979012093565181,0.01295489479567121,0.012930866964929061,0.01290692810439279,0.012883077720790241,0.012859315324489163,0.01283564042946368,0.012812052553261169,0.012788551216969455,0.012765135945184419,0.012741806265977915,0.012718561710866064,0.012695401814777883,0.012672326116024278,0.012649334156267332,0.012626425480489973,0.01260359963696594,0.012580856177230097,0.012558194656049036,0.01253561463139204,0.012513115664402318,0.012490697319368577,0.012468359163696884,0.01244610076788284,0.012423921705484045,0.012401821553092851,0.012379799890309429,0.01235785629971508,0.012335990366845892,0.0123142016801666,0.012292489831044797,0.012270854413725359,0.01224929502530518,0.01222781126570814,0.012206402737660368,0.012185069046665742,0.012163809800981655,0.012142624611595026,0.012121513092198574,0.012100474859167326,0.012079509531535384,0.012058616730972915,0.0120377960817634,0.012017047210781097,0.011996369747468755,0.011975763323815542,0.011955227574335217,0.011934762136044512,0.011914366648441746,0.011894040753485642,0.011873784095574384,0.011853596321524868,0.011833477080552181,0.011813426024249266,0.011793442806566808,0.011773527083793337,0.011753678514535505,0.011733896759698575,0.011714181482467115,0.011694532348285876,0.011674949024840852,0.011655431182040562,0.011635978491997483,0.011616590629009703,0.011597267269542712,0.011578008092211439,0.01155881277776239,0.011539681009056052,0.011520612471049378,0.011501606850778511,0.011482663837341667,0.011463783121882168,0.011444964397571653,0.011426207359593456,0.01140751170512615,0.011388877133327244,0.011370303345317039,0.011351790044162646,0.01133333693486218,0.011314943724329054,0.01129661012137649,0.011278335836702126,0.011260120582872816,0.01124196407430955,0.011223866027272517,0.011205826159846334,0.01118784419192541,0.011169919845199426,0.011152052843138993,0.011134242910981421,0.011116489775716634,0.011098793166073212,0.01108115281250458,0.011063568447175317,0.011046039803947598,0.011028566618367763,0.011011148627653016,0.010993785570678257,0.010976477187963019,0.010959223221658541,0.01094202341553498,0.010924877514968694,0.010907785266929707,0.010890746419969234,0.010873760724207364,0.010856827931320836,0.010839947794530944,0.010823120068591534,0.010806344509777131,0.010789620875871177,0.010772948926154356,0.010756328421393065,0.010739759123827937,0.010723240797162543,0.010706773206552115,0.010690356118592445,0.01067398930130884,0.010657672524145213,0.010641405557953227,0.010625188174981585,0.0106090201488654,0.010592901254615655,0.010576831268608764,0.010560809968576237,0.010544837133594418,0.01052891254407435,0.010513035981751682,0.01049720722967672,0.010481426072204527,0.010465692294985144,0.010450005684953875,0.01043436603032166,0.010418773120565557,0.010403226746419287,0.010387726699863873,0.010372272774118356,0.010356864763630604,0.010341502464068196,0.010326185672309383,0.010310914186434145,0.010295687805715307,0.010280506330609741,0.010265369562749661,0.010250277304933967,0.010235229361119695,0.010220225536413515,0.010205265637063317,0.010190349470449877,0.010175476845078586,0.010160647570571247,0.010145861457657963,0.010131118318169069,0.010116417965027168,0.010101760212239193,0.010087144874888581,0.010072571769127485,0.010058040712169076,0.010043551522279882,0.010029104018772229,0.01001469802199671,0.010000333353334763],"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]} \ No newline at end of file +{"expected":[0.03569911267932397,0.03551733397670141,0.03533739635104694,0.03515927198478589,0.034982933617716636,0.03480835453312581,0.0346355085443165,0.03446436998153492,0.03429491367928208,0.034127114963997174,0.03396094964210002,0.033796393988380566,0.03363342473472359,0.03347201905915746,0.033312154575216184,0.03315380932160417,0.03299696175215392,0.03284159072606688,0.03268767549842818,0.03253519571098644,0.03238413138318995,0.03223446290347091,0.03208617102076997,0.03193923683629313,0.031793641795493696,0.031649367680272274,0.03150639660138772,0.03136471099107256,0.03122429359584646,0.03108512746952151,0.030947195966393455,0.030810482734613162,0.030674971709732594,0.03054064710842025,0.03040749342234059,0.03027549541219278,0.03014463810190364,0.030014906772970452,0.02988628695894889,0.029758764440081936,0.029632325238065436,0.029506955610946444,0.029382642048150217,0.029259371265632304,0.029137130201151905,0.02901590600966317,0.028895686058820726,0.028776457924596512,0.02865820938700437,0.028540928425929587,0.028424603217060206,0.02830922212791735,0.02819477371398165,0.028081246714913227,0.02796863005086235,0.027856912818868602,0.027746084289345684,0.027636133902649858,0.02752705126572945,0.02741882614885331,0.027311448482416095,0.027204908353818155,0.027099196004418152,0.026994301826556284,0.026890216360646382,0.026786930292334855,0.02668443444972485,0.026582719800663762,0.026481777450092548,0.02638159863745503,0.026282174734165817,0.026183497241135115,0.026085557786349103,0.025988348122504255,0.02589186012469441,0.025796085788149008,0.025701017226021382,0.025606646667225622,0.025512966454320996,0.025419969041442433,0.025327646992276204,0.025235992978079408,0.025144999775742305,0.02505466026589235,0.024964967431038928,0.024875914353757772,0.024787494214913962,0.024699700291922817,0.024612525957047403,0.024525964675732065,0.024440010004970876,0.024354655591710288,0.024269895171285086,0.02418572256588687,0.02410213168306424,0.02401911651425398,0.023936671133342434,0.0238547896952564,0.023773466434582793,0.023692695664216463,0.023612471774035408,0.02353278922960284,0.023453642570895345,0.023375026411056682,0.02329693543517648,0.023219364399093338,0.023142308128221715,0.023065761516402123,0.022989719524773966,0.022914177180670684,0.022839129576536495,0.022764571868864405,0.022690499277154885,0.022616907082894818,0.022543790628556246,0.022471145316614413,0.02239896660858479,0.022327250024078496,0.022255991139875867,0.022185185589017654,0.02211482905991352,0.0220449172954674,0.021975446092219447,0.02190641129950405,0.02183780881862375,0.021769634602038554,0.021701884652570412,0.02163455502262247,0.021567641813412784,0.021501141174222273,0.021435049301656423,0.021369362438920642,0.02130407687510887,0.02123918894450513,0.02117469502589787,0.02111059154190669,0.021046874958321284,0.02098354178345229,0.020920588567493847,0.020858011901897535,0.020795808418757555,0.02073397479020685,0.020672507727823947,0.020611403982050355,0.02055066034161819,0.020490273632987954,0.02043024071979613,0.02037055850231251,0.020311223916906943,0.020252233935525422,0.020193585565175212,0.020135275847418973,0.020077301857877497,0.02001966070574114,0.01996234953328954,0.019905365515419597,0.019848705859181488,0.01979236780332263,0.019736348617839305,0.019680645603535944,0.01962525609159178,0.019570177443134877,0.019515407048823225,0.019460942328432897,0.019406780730453065,0.019352919731687738,0.01929935683686414,0.019246089578247548,0.019193115515262503,0.01914043223412023,0.0190880373474522,0.019035928493949677,0.018984103338009154,0.018932559569383552,0.01888129490283911,0.01883030707781778,0.018779593858105143,0.018729153031503604,0.018678982409510884,0.01862907982700364,0.01857944314192616,0.01853007023498399,0.01848095900934245,0.018432107390329935,0.01838351332514588,0.018335174782573363,0.018287089752696196,0.01823925624662048,0.018191672296200494,0.01814433595376887,0.018097245291870998,0.01805039840300348,0.01800379339935671,0.017957428412561392,0.017911301593438966,0.017865411111755856,0.01781975515598153,0.01777433193305021,0.017729139668126233,0.017684176604372968,0.01763944100272528,0.01759493114166539,0.01755064531700213,0.01750658184165355,0.017462739045432732,0.017419115274836895,0.017375708892839563,0.017332518278685892,0.01728954182769103,0.017246777951041438,0.01720422507559918,0.017161881643709107,0.017119746113008844,0.017077816956241613,0.017036092661071756,0.016994571729902992,0.01695325267969929,0.01691213404180838,0.016871214361787793,0.01683049219923345,0.0167899661276107,0.016749634734087804,0.016709496619371822,0.01666955039754683,0.01662979469591446,0.016590228154836746,0.016550849427581144,0.016511657180167796,0.01647265009121899,0.016433826851810638,0.016395186165325988,0.01635672674731128,0.016318447325333493,0.016280346638840044,0.016242423439020503,0.01620467648867015,0.016167104562055525,0.01612970644478176,0.01609248093366181,0.016055426836587446,0.016018542972402055,0.01598182817077516,0.01594528127207871,0.015908901127264983,0.015872686597746252,0.015836636555275996,0.01580074988183182,0.01576502546949986,0.01572946222036085,0.01569405904637766,0.015658814869284363,0.015623728620476831,0.015588799240904738,0.015554025680965044,0.015519406900396916,0.015484941868177997,0.015450629562422097,0.015416468970278227,0.015382459087830976,0.015348598920002185,0.015314887480453924,0.015281323791492761,0.015247906883975277,0.015214635797214788,0.01518150957888934,0.015148527284950851,0.015115687979535481,0.015082990734875118,0.015050434631210044,0.015018018756702715,0.014985742207352666,0.014953604086912481,0.014921603506804878,0.014889739586040819,0.014858011451138717,0.014826418236044612,0.014794959082053404,0.01476363313773108,0.014732439558837922,0.01470137750825268,0.014670446155897706,0.014639644678665053,0.01460897226034346,0.014578428091546275,0.014548011369640302,0.014517721298675498,0.014487557089315565,0.014457517958769404,0.014427603130723417,0.014397811835274662,0.0143681433088648,0.014338596794214896,0.014309171540260991,0.014279866802090499,0.014250681840879334,0.014221615923829868,0.014192668324109588,0.014163838320790543,0.014135125198789508,0.014106528248808864,0.01407804676727823,0.014049680056296763,0.014021427423576165,0.013993288182384388,0.013965261651490007,0.013937347155107258,0.013909544022841726,0.013881851589636701,0.01385426919572017,0.013826796186552415,0.013799431912774258,0.01377217573015592,0.013745026999546467,0.013717985086823866,0.01369104936284562,0.013664219203399998,0.013637493989157822,0.013610873105624824,0.013584355943094558,0.01355794189660187,0.0135316303658769,0.013505420755299617,0.01347931247385489,0.013453304935088067,0.013427397557061098,0.013401589762309101,0.013375880977797504,0.013350270634879619,0.013324758169254738,0.013299343020926693,0.013274024634162884,0.013248802457453794,0.013223675943472955,0.013198644549037346,0.013173707735068279,0.013148864966552706,0.013124115712504958,0.013099459445928935,0.013074895643780685,0.01305042378693146,0.013026043360131126,0.013001753851972019,0.012977554754853196,0.012953445564945086,0.012929425782154521,0.01290549491009017,0.012881652456028358,0.01285789793087925,0.01283423084915342,0.01281065072892877,0.012787157091817844,0.012763749462935474,0.012740427370866792,0.012717190347635592,0.01269403792867302,0.01267096965278665,0.012647985062129838,0.012625083702171455,0.012602265121665922,0.012579528872623593,0.012556874510281417,0.012534301593073971,0.012511809682604756,0.012489398343617838,0.012467067143969758,0.012444815654601779,0.012422643449512409,0.012400550105730206,0.01237853520328691,0.012356598325190815,0.01233473905740047,0.01231295698879861,0.012291251711166403,0.012269622819157952,0.012248069910275066,0.012226592584842289,0.012205190445982214,0.012183863099591026,0.012162610154314335,0.012141431221523221,0.01212032591529057,0.012099293852367618,0.01207833465216078,0.012057447936708671,0.012036633330659413,0.01201589046124814,0.011995218958274764,0.011974618454081935,0.011954088583533262,0.01193362898399175,0.011913239295298436,0.011892919159751266,0.011872668222084186,0.011852486129446433,0.011832372531382057,0.011812327079809623,0.011792349429002145,0.011772439235567225,0.011752596158427346,0.011732819858800444,0.011713110000180594,0.01169346624831895,0.011673888271204845,0.011654375739047085,0.011634928324255443,0.011615545701422328,0.01159622754730463,0.011576973540805766,0.01155778336295788,0.011538656696904246,0.011519593227881824,0.011500592643203989,0.011481654632243455,0.011462778886415335,0.011443965099160392,0.011425212965928444,0.011406522184161924,0.011387892453279636,0.01136932347466061,0.011350814951628175,0.011332366589434152,0.011313978095243213,0.011295649178117387,0.011277379549000712,0.011259168920704067,0.011241017007890092,0.011222923527058313,0.01120488819653037,0.011186910736435421,0.01116899086869564,0.011151128317011908,0.011133322806849597,0.011115574065424518,0.011097881821688985,0.011080245806318023,0.011062665751695708,0.011045141391901629,0.011027672462697478,0.011010258701513774,0.010992899847436717,0.010975595641195149,0.01095834582514765,0.010941150143269757,0.010924008341141295,0.010906920165933835,0.010889885366398264,0.010872903692852473,0.010855974897169158,0.010839098732763742,0.0108222749545824,0.010805503319090196,0.010788783584259347,0.010772115509557567,0.010755498855936548,0.010738933385820515,0.010722418863094932,0.010705955053095259,0.010689541722595857,0.010673178639798962,0.010656865574323797,0.010640602297195732,0.010624388580835597,0.010608224199049054,0.010592108927016088,0.01057604254128058,0.01056002481973998,0.01054405554163508,0.010528134487539871,0.01051226143935149,0.010496436180280264,0.010480658494839845,0.01046492816883743,0.010449244989364068,0.010433608744785052,0.01041801922473041,0.010402476220085465,0.010386979522981486,0.010371528926786425,0.010356124226095734,0.010340765216723268,0.010325451695692251,0.010310183461226351,0.010294960312740815,0.010279782050833677,0.010264648477277066,0.010249559395008568,0.01023451460812268,0.01021951392186233,0.010204557142610473,0.010189644077881763,0.010174774536314298,0.010159948327661435,0.010145165262783676,0.010130425153640628,0.010115727813283038,0.010101073055844867,0.010086460696535491,0.010071890551631898,0.010057362438471022,0.010042876175442089,0.010028431581979054,0.010014028478553108,0.009999666686665238],"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]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_negative.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_negative.json index e1236dc042c7..4c5e79e5dda1 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_negative.json +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_negative.json @@ -1 +1 @@ -{"expected":[-1.5222612188617113,-1.504586603996554,-1.4875757829269853,-1.4711827314360777,-1.4553660422356198,-1.4400883274295309,-1.4253157146233255,-1.4110174196020666,-1.397165382025739,-1.3837339533089152,-1.3706996279639225,-1.3580408113409939,-1.3457376180039984,-1.3337716960170605,-1.3221260732461817,-1.3107850224467472,-1.299733942447189,-1.2889592531779241,-1.27844830265359,-1.268189284311477,-1.258171163352654,-1.2483836109342261,-1.23881694522946,-1.2294620785132346,-1.2203104695484495,-1.2113540806486411,-1.2025853388762893,-1.1939971009078294,-1.185582621157269,-1.177335522802342,-1.1692497714017163,-1.1613196508300776,-1.1535397412909425,-1.1459048991955825,-1.1384102387211692,-1.131051114882736,-1.123823107972237,-1.1167220092343302,-1.1097438076627764,-1.1028846778138675,-1.096140968544315,-1.0895091925906872,-1.0829860169160574,-1.0765682537570536,-1.0702528523112094,-1.0640368910104332,-1.0579175703316916,-1.0518922061007079,-1.045958223248642,-1.0401131499854857,-1.0343546123572196,-1.028680329156812,-1.0230881071618,-1.017575836673619,-1.01214148733604,-1.0067831042119981,-1.0014988040999027,-0.996286772072088,-0.9911452582195268,-0.9860725745882294,-0.9810670922939403,-0.9761272388028316,-0.9712514953668497,-0.966438394603295,-0.9616865182089999,-0.9569944948002216,-0.9523609978700524,-0.9477847438557462,-0.9432644903089489,-0.9387990341623247,-0.9343872100865429,-0.9300278889320407,-0.9257199762503567,-0.9214624108902181,-0.9172541636638843,-0.913094236079575,-0.9089816591360902,-0.904915492175996,-0.9008948217939962,-0.8969187607973309,-0.8929864472152577,-0.8890970433548595,-0.8852497349006028,-0.8814437300552372,-0.877678258719779,-0.8739525717104644,-0.8702659400106908,-0.8666176540560862,-0.8630070230509628,-0.859433374314514,-0.8558960526552202,-0.8523944197720077,-0.8489278536808073,-0.845495748165227,-0.8420975122501315,-0.838732569696995,-0.8354003585199522,-0.8321003305215402,-0.8288319508471755,-0.8255946975574674,-0.8223880612175182,-0.8192115445024044,-0.8160646618180856,-0.8129469389370146,-0.8098579126477796,-0.806797130418126,-0.8037641500707564,-0.8007585394713281,-0.7977798762281019,-0.7948277474027244,-0.7919017492316563,-0.7890014868577703,-0.7861265740716873,-0.7832766330624223,-0.7804512941769463,-0.777650195688278,-0.774872983571753,-0.7721193112891199,-0.7693888395801399,-0.7666812362613812,-0.7639961760319074,-0.7613333402855826,-0.7586924169297257,-0.7560731002098495,-0.753475090540255,-0.7508980943402339,-0.7483418238756678,-0.745805997105809,-0.7432903375350367,-0.7407945740694069,-0.7383184408777962,-0.7358616772574791,-0.7334240275039592,-0.7310052407848993,-0.7286050710179959,-0.726223276752647,-0.723859621055281,-0.7215138713982013,-0.7191857995518269,-0.7168751814802011,-0.7145817972396494,-0.7123054308804763,-0.7100458703515905,-0.7078029074079553,-0.7055763375207622,-0.7033659597902362,-0.7011715768609779,-0.6989929948397534,-0.6968300232156529,-0.6946824747825285,-0.6925501655636415,-0.6904329147384397,-0.6883305445713936,-0.686242880342823,-0.6841697502816474,-0.6821109854999962,-0.680066419929618,-0.6780358902600289,-0.6760192358783447,-0.6740162988107384,-0.6720269236654789,-0.6700509575774879,-0.6680882501543787,-0.6661386534239223,-0.664202021782897,-0.662278211947281,-0.6603670829037412,-0.6584684958623832,-0.6565823142107182,-0.6547084034688138,-0.6528466312455901,-0.6509968671962252,-0.6491589829806407,-0.6473328522230288,-0.6455183504723947,-0.6437153551640811,-0.6419237455822467,-0.6401434028232714,-0.638374209760057,-0.636616051007203,-0.6348688128870277,-0.6331323833964104,-0.6314066521744348,-0.6296915104708036,-0.6279868511150107,-0.6262925684862418,-0.624608558483988,-0.6229347184993499,-0.6212709473870122,-0.619617145437874,-0.6179732143523102,-0.6163390572140529,-0.6147145784646723,-0.6130996838786391,-0.6114942805389592,-0.6098982768133553,-0.6083115823309908,-0.6067341079597129,-0.6051657657838074,-0.6036064690822471,-0.6020561323074223,-0.6005146710643429,-0.5989820020902936,-0.5974580432349389,-0.5959427134408578,-0.5944359327245021,-0.5929376221575666,-0.591447703848758,-0.589966100925957,-0.5884927375187573,-0.5870275387413794,-0.5855704306759414,-0.5841213403560853,-0.5826801957509458,-0.5812469257494518,-0.5798214601449581,-0.5784037296201924,-0.5769936657325129,-0.5755912008994714,-0.5741962683846682,-0.5728088022838976,-0.571428737511574,-0.5700560097874312,-0.5686905556234922,-0.5673323123112965,-0.5659812179093863,-0.5646372112310383,-0.5633002318322411,-0.5619702199999086,-0.5606471167403256,-0.5593308637678198,-0.5580214034936534,-0.5567186790151332,-0.5554226341049291,-0.5541332132005997,-0.5528503613943196,-0.5515740244228013,-0.5503041486574124,-0.5490406810944769,-0.5477835693457634,-0.5465327616291508,-0.5452882067594687,-0.5440498541395113,-0.5428176537512175,-0.5415915561470147,-0.5403715124413231,-0.5391574743022175,-0.5379493939432407,-0.5367472241153685,-0.5355509180991189,-0.5343604296968083,-0.5331757132249442,-0.5319967235067573,-0.5308234158648681,-0.5296557461140837,-0.5284936705543233,-0.5273371459636709,-0.5261861295915498,-0.5250405791520187,-0.5239004528171849,-0.5227657092107335,-0.5216363074015704,-0.5205122068975743,-0.5193933676394598,-0.5182797499947439,-0.5171713147518193,-0.5160680231141268,-0.5149698366944296,-0.5138767175091854,-0.5127886279730118,-0.5117055308932492,-0.5106273894646124,-0.5095541672639345,-0.5084858282449976,-0.5074223367334505,-0.5063636574218122,-0.5053097553645565,-0.5042605959732793,-0.5032161450119463,-0.5021763685922174,-0.5011412331688482,-0.5001107055351686,-0.4990847528186323,-0.49806334247644046,-0.4970464422912359,-0.4960340203668667,-0.49502604512421744,-0.49402248529710896,-0.49302330992826193,-0.4920284883653261,-0.49103799025697104,-0.4900517855490416,-0.48906984448077095,-0.4880921375810552,-0.48711863566478664,-0.4861493098292431,-0.4851841314505345,-0.48422307218010474,-0.48326610394128733,-0.48231319892591507,-0.48136432959098097,-0.48041946865535134,-0.47947858909652896,-0.4785416641474657,-0.4776086672934234,-0.47667957226888286,-0.4757543530545002,-0.4748329838741066,-0.47391543919175716,-0.47300169370882084,-0.4720917223611145,-0.47118550031608153,-0.47028300297001047,-0.4693842059452955,-0.46848908508773746,-0.4675976164638854,-0.4667097763584157,-0.46582554127155107,-0.4649448879165162,-0.46406779321703173,-0.4631942343048432,-0.46232418851728674,-0.4614576333948899,-0.46059454667900696,-0.45973490630948777,-0.45887869042238094,-0.45802587734766914,-0.4571764456070364,-0.45633037391166853,-0.45548764116008295,-0.4546482264359907,-0.4538121090061874,-0.45297926831847485,-0.45214968399961114,-0.4513233358532893,-0.45050020385814504,-0.44968026816579115,-0.4488635090988796,-0.4480499071491907,-0.4472394429757481,-0.4464320974029601,-0.44562785141878586,-0.44482668617292814,-0.4440285829750491,-0.4432335232930106,-0.44244148875113953,-0.44165246112851575,-0.4408664223572831,-0.4400833545209831,-0.439303239852912,-0.43852606073449824,-0.437751799693703,-0.43698043940344145,-0.43621196268002504,-0.4354463524816246,-0.43468359190675265,-0.4339236641927684,-0.4331665527143994,-0.4324122409822842,-0.43166071264153405,-0.4309119514703128,-0.4301659413784362,-0.4294226664059878,-0.4286821107219546,-0.42794425862287955,-0.42720909453153044,-0.4264766029955883,-0.42574676868635003,-0.42501957639744914,-0.4242950110435926,-0.4235730576593135,-0.42285370139774003,-0.4221369275293787,-0.4214227214409153,-0.4207110686340288,-0.42000195472422097,-0.41929536543966117,-0.4185912866200448,-0.41788970421546645,-0.41719060428530674,-0.41649397299713387,-0.4157997966256173,-0.4151080615514561,-0.4144187542603204,-0.413731861341805,-0.4130473694883972,-0.41236526549445535,-0.41168553625520227,-0.41100816876572893,-0.41033315012001087,-0.4096604675099374,-0.4089901082243513,-0.40832205964810064,-0.4076563092611023,-0.40699284463741653,-0.4063316534443322,-0.4056727234414634,-0.40501604247985734,-0.40436159850111175,-0.4037093795365033,-0.40305937370612677,-0.4024115692180438,-0.40176595436744195,-0.4011225175358033,-0.4004812471900837,-0.39984213188190076,-0.39920516024673136,-0.39857032100311923,-0.39793760295189134,-0.39730699497538285,-0.3966784860366722,-0.3960520651788241,-0.3954277215241415,-0.3948054442734263,-0.3941852227052488,-0.3935670461752247,-0.3929509041153011,-0.39233678603305056,-0.39172468151097284,-0.39111458020580514,-0.39050647184783915,-0.3899003462402472,-0.389296193258415,-0.38869400284928224,-0.3880937650306902,-0.38749546989073774,-0.3868991075871432,-0.38630466834661403,-0.38571214246422414,-0.3851215203027965,-0.38453279229229376,-0.3839459489292161,-0.3833609807760043,-0.38277787846045,-0.3821966326751136,-0.3816172341767463,-0.38103967378572035,-0.38046394238546466,-0.3798900309219069,-0.37931793040292144,-0.3787476318977833,-0.3781791265366284,-0.37761240550991904,-0.3770474600679155,-0.3764842815201535,-0.37592286123492685,-0.37536319063877616,-0.3748052612159821,-0.3742490645080656,-0.37369459211329165,-0.37314183568617965,-0.3725907869370185,-0.37204143763138703,-0.37149377958967866,-0.3709478046866322,-0.3704035048508673,-0.36986087206442436,-0.36931989836230933,-0.3687805758320439,-0.3682428966132196,-0.367706852897057,-0.3671724369259695,-0.3666396409931313,-0.36610845744205067,-0.36557887866614586,-0.3650508971083283,-0.3645245052605866,-0.36399969566357804,-0.3634764609062219,-0.36295479362529837,-0.3624346865050508,-0.3619161322767923,-0.36139912371851646,-0.3608836536545119,-0.3603697149549805,-0.3598573005356597,-0.35934640335744894,-0.3588370164260394,-0.3583291327915473,-0.35782274554815174,-0.35731784783373527,-0.35681443282952846,-0.3563124937597581,-0.3558120238912986,-0.3553130165333275,-0.354815465036983,-0.35431936279502707,-0.3538247032415097,-0.3533314798514377,-0.3528396861404467,-0.35234931566447575,-0.35186036201944604,-0.3513728188409417,-0.35088667980389465,-0.3504019386222722,-0.3499185890487672,-0.3494366248744922,-0.34895603992867563,-0.34847682807836167,-0.3479989832281121,-0.34752249931971263,-0.34704737033187966,-0.34657359027997264],"x":[-1.1,-1.103784860557769,-1.1075697211155378,-1.1113545816733068,-1.1151394422310756,-1.1189243027888447,-1.1227091633466135,-1.1264940239043826,-1.1302788844621514,-1.1340637450199202,-1.1378486055776893,-1.1416334661354581,-1.1454183266932272,-1.149203187250996,-1.1529880478087648,-1.156772908366534,-1.1605577689243027,-1.1643426294820718,-1.1681274900398406,-1.1719123505976095,-1.1756972111553785,-1.1794820717131473,-1.1832669322709164,-1.1870517928286852,-1.1908366533864543,-1.1946215139442231,-1.198406374501992,-1.202191235059761,-1.2059760956175298,-1.2097609561752989,-1.2135458167330677,-1.2173306772908365,-1.2211155378486056,-1.2249003984063744,-1.2286852589641435,-1.2324701195219123,-1.2362549800796814,-1.2400398406374502,-1.243824701195219,-1.247609561752988,-1.251394422310757,-1.255179282868526,-1.2589641434262948,-1.2627490039840636,-1.2665338645418327,-1.2703187250996015,-1.2741035856573706,-1.2778884462151394,-1.2816733067729085,-1.2854581673306773,-1.2892430278884461,-1.2930278884462152,-1.296812749003984,-1.300597609561753,-1.304382470119522,-1.3081673306772907,-1.3119521912350598,-1.3157370517928286,-1.3195219123505977,-1.3233067729083665,-1.3270916334661356,-1.3308764940239044,-1.3346613545816732,-1.3384462151394423,-1.3422310756972111,-1.3460159362549802,-1.349800796812749,-1.3535856573705178,-1.357370517928287,-1.3611553784860557,-1.3649402390438248,-1.3687250996015936,-1.3725099601593624,-1.3762948207171315,-1.3800796812749003,-1.3838645418326694,-1.3876494023904382,-1.3914342629482073,-1.395219123505976,-1.399003984063745,-1.402788844621514,-1.4065737051792828,-1.4103585657370519,-1.4141434262948207,-1.4179282868525895,-1.4217131474103586,-1.4254980079681274,-1.4292828685258965,-1.4330677290836653,-1.4368525896414344,-1.4406374501992032,-1.444422310756972,-1.448207171314741,-1.45199203187251,-1.455776892430279,-1.4595617529880478,-1.4633466135458166,-1.4671314741035857,-1.4709163346613545,-1.4747011952191236,-1.4784860557768924,-1.4822709163346615,-1.4860557768924303,-1.4898406374501991,-1.4936254980079682,-1.497410358565737,-1.501195219123506,-1.504980079681275,-1.5087649402390437,-1.5125498007968128,-1.5163346613545816,-1.5201195219123507,-1.5239043824701195,-1.5276892430278886,-1.5314741035856574,-1.5352589641434262,-1.5390438247011953,-1.542828685258964,-1.5466135458167332,-1.550398406374502,-1.5541832669322708,-1.5579681274900399,-1.5617529880478087,-1.5655378486055778,-1.5693227091633466,-1.5731075697211154,-1.5768924302788845,-1.5806772908366533,-1.5844621513944224,-1.5882470119521912,-1.5920318725099603,-1.595816733067729,-1.599601593625498,-1.603386454183267,-1.6071713147410358,-1.6109561752988049,-1.6147410358565737,-1.6185258964143425,-1.6223107569721116,-1.6260956175298804,-1.6298804780876495,-1.6336653386454183,-1.6374501992031874,-1.6412350597609562,-1.645019920318725,-1.648804780876494,-1.652589641434263,-1.656374501992032,-1.6601593625498008,-1.6639442231075696,-1.6677290836653387,-1.6715139442231075,-1.6752988047808766,-1.6790836653386454,-1.6828685258964144,-1.6866533864541833,-1.690438247011952,-1.6942231075697212,-1.69800796812749,-1.701792828685259,-1.7055776892430279,-1.7093625498007967,-1.7131474103585658,-1.7169322709163346,-1.7207171314741037,-1.7245019920318725,-1.7282868525896415,-1.7320717131474104,-1.7358565737051792,-1.7396414342629483,-1.743426294820717,-1.7472111553784861,-1.750996015936255,-1.7547808764940238,-1.7585657370517929,-1.7623505976095617,-1.7661354581673308,-1.7699203187250996,-1.7737051792828684,-1.7774900398406375,-1.7812749003984063,-1.7850597609561754,-1.7888446215139442,-1.7926294820717132,-1.796414342629482,-1.800199203187251,-1.80398406374502,-1.8077689243027888,-1.8115537848605578,-1.8153386454183267,-1.8191235059760955,-1.8229083665338646,-1.8266932270916334,-1.8304780876494025,-1.8342629482071713,-1.8380478087649403,-1.8418326693227092,-1.845617529880478,-1.849402390438247,-1.853187250996016,-1.856972111553785,-1.8607569721115538,-1.8645418326693226,-1.8683266932270917,-1.8721115537848605,-1.8758964143426295,-1.8796812749003984,-1.8834661354581674,-1.8872509960159363,-1.891035856573705,-1.8948207171314742,-1.898605577689243,-1.902390438247012,-1.9061752988047809,-1.9099601593625497,-1.9137450199203188,-1.9175298804780876,-1.9213147410358566,-1.9250996015936255,-1.9288844621513945,-1.9326693227091634,-1.9364541832669322,-1.9402390438247012,-1.94402390438247,-1.9478087649402391,-1.951593625498008,-1.9553784860557768,-1.9591633466135459,-1.9629482071713147,-1.9667330677290837,-1.9705179282868526,-1.9743027888446214,-1.9780876494023905,-1.9818725099601593,-1.9856573705179283,-1.9894422310756972,-1.9932270916334662,-1.997011952191235,-2.000796812749004,-2.004581673306773,-2.008366533864542,-2.0121513944223106,-2.0159362549800797,-2.0197211155378487,-2.0235059760956173,-2.0272908366533864,-2.0310756972111554,-2.0348605577689245,-2.038645418326693,-2.042430278884462,-2.046215139442231,-2.05,-2.053784860557769,-2.057569721115538,-2.061354581673307,-2.0651394422310756,-2.0689243027888446,-2.0727091633466137,-2.0764940239043823,-2.0802788844621514,-2.0840637450199204,-2.087848605577689,-2.091633466135458,-2.095418326693227,-2.099203187250996,-2.102988047808765,-2.106772908366534,-2.110557768924303,-2.1143426294820715,-2.1181274900398406,-2.1219123505976096,-2.1256972111553787,-2.1294820717131473,-2.1332669322709163,-2.1370517928286854,-2.140836653386454,-2.144621513944223,-2.148406374501992,-2.152191235059761,-2.15597609561753,-2.159760956175299,-2.163545816733068,-2.1673306772908365,-2.1711155378486056,-2.1749003984063746,-2.1786852589641432,-2.1824701195219123,-2.1862549800796813,-2.1900398406374504,-2.193824701195219,-2.197609561752988,-2.201394422310757,-2.2051792828685257,-2.2089641434262948,-2.212749003984064,-2.216533864541833,-2.2203187250996015,-2.2241035856573705,-2.2278884462151396,-2.231673306772908,-2.2354581673306773,-2.2392430278884463,-2.243027888446215,-2.246812749003984,-2.250597609561753,-2.254382470119522,-2.2581673306772907,-2.2619521912350598,-2.265737051792829,-2.2695219123505974,-2.2733067729083665,-2.2770916334661355,-2.2808764940239046,-2.284661354581673,-2.2884462151394422,-2.2922310756972113,-2.29601593625498,-2.299800796812749,-2.303585657370518,-2.307370517928287,-2.3111553784860557,-2.3149402390438247,-2.318725099601594,-2.3225099601593624,-2.3262948207171315,-2.3300796812749005,-2.333864541832669,-2.337649402390438,-2.3414342629482072,-2.3452191235059763,-2.349003984063745,-2.352788844621514,-2.356573705179283,-2.3603585657370516,-2.3641434262948207,-2.3679282868525897,-2.3717131474103588,-2.3754980079681274,-2.3792828685258964,-2.3830677290836655,-2.386852589641434,-2.390637450199203,-2.394422310756972,-2.398207171314741,-2.40199203187251,-2.405776892430279,-2.409561752988048,-2.4133466135458166,-2.4171314741035856,-2.4209163346613547,-2.4247011952191233,-2.4284860557768924,-2.4322709163346614,-2.4360557768924305,-2.439840637450199,-2.443625498007968,-2.447410358565737,-2.451195219123506,-2.454980079681275,-2.458764940239044,-2.462549800796813,-2.4663346613545816,-2.4701195219123506,-2.4739043824701197,-2.4776892430278883,-2.4814741035856573,-2.4852589641434264,-2.489043824701195,-2.492828685258964,-2.496613545816733,-2.500398406374502,-2.504183266932271,-2.50796812749004,-2.511752988047809,-2.5155378486055775,-2.5193227091633466,-2.5231075697211156,-2.5268924302788847,-2.5306772908366533,-2.5344621513944223,-2.5382470119521914,-2.54203187250996,-2.545816733067729,-2.549601593625498,-2.553386454183267,-2.5571713147410358,-2.560956175298805,-2.564741035856574,-2.5685258964143425,-2.5723107569721115,-2.5760956175298806,-2.579880478087649,-2.5836653386454183,-2.5874501992031873,-2.5912350597609564,-2.595019920318725,-2.598804780876494,-2.602589641434263,-2.6063745019920317,-2.6101593625498007,-2.61394422310757,-2.617729083665339,-2.6215139442231075,-2.6252988047808765,-2.6290836653386456,-2.632868525896414,-2.6366533864541832,-2.6404382470119523,-2.644223107569721,-2.64800796812749,-2.651792828685259,-2.655577689243028,-2.6593625498007967,-2.6631474103585657,-2.666932270916335,-2.6707171314741034,-2.6745019920318724,-2.6782868525896415,-2.6820717131474106,-2.685856573705179,-2.689641434262948,-2.6934262948207173,-2.697211155378486,-2.700996015936255,-2.704780876494024,-2.708565737051793,-2.7123505976095617,-2.7161354581673307,-2.7199203187250998,-2.7237051792828684,-2.7274900398406374,-2.7312749003984065,-2.735059760956175,-2.738844621513944,-2.742629482071713,-2.7464143426294823,-2.750199203187251,-2.75398406374502,-2.757768924302789,-2.7615537848605576,-2.7653386454183266,-2.7691235059760957,-2.7729083665338647,-2.7766932270916334,-2.7804780876494024,-2.7842629482071715,-2.78804780876494,-2.791832669322709,-2.795617529880478,-2.799402390438247,-2.803187250996016,-2.806972111553785,-2.810756972111554,-2.8145418326693226,-2.8183266932270916,-2.8221115537848607,-2.8258964143426293,-2.8296812749003983,-2.8334661354581674,-2.8372509960159364,-2.841035856573705,-2.844820717131474,-2.848605577689243,-2.8523904382470118,-2.856175298804781,-2.85996015936255,-2.863745019920319,-2.8675298804780875,-2.8713147410358566,-2.8750996015936257,-2.8788844621513943,-2.8826693227091633,-2.8864541832669324,-2.890239043824701,-2.89402390438247,-2.897808764940239,-2.901593625498008,-2.9053784860557768,-2.909163346613546,-2.912948207171315,-2.9167330677290835,-2.9205179282868525,-2.9243027888446216,-2.9280876494023906,-2.9318725099601592,-2.9356573705179283,-2.9394422310756974,-2.943227091633466,-2.947011952191235,-2.950796812749004,-2.954581673306773,-2.9583665338645417,-2.962151394422311,-2.96593625498008,-2.9697211155378485,-2.9735059760956175,-2.9772908366533866,-2.981075697211155,-2.9848605577689242,-2.9886454183266933,-2.9924302788844623,-2.996215139442231,-3.0]} \ No newline at end of file +{"expected":[-0.7378150601204649,-0.7361056754550979,-0.7344027170432255,-0.7327061585364671,-0.7310159736367406,-0.7293321360975216,-0.7276546197250732,-0.7259833983796455,-0.7243184459766473,-0.7226597364877866,-0.7210072439421855,-0.7193609424274653,-0.717720806090805,-0.7160868091399732,-0.7144589258443317,-0.7128371305358143,-0.7112213976098805,-0.7096117015264408,-0.7080080168107608,-0.7064103180543367,-0.7048185799157509,-0.7032327771214993,-0.7016528844667989,-0.7000788768163694,-0.6985107291051944,-0.6969484163392584,-0.6953919135962627,-0.6938411960263199,-0.6922962388526266,-0.6907570173721149,-0.6892235069560844,-0.6876956830508126,-0.6861735211781471,-0.6846569969360763,-0.6831460859992823,-0.6816407641196744,-0.6801410071269042,-0.6786467909288618,-0.6771580915121557,-0.6756748849425723,-0.6741971473655217,-0.6727248550064631,-0.6712579841713158,-0.6697965112468522,-0.6683404127010766,-0.6668896650835858,-0.6654442450259164,-0.6640041292418751,-0.6625692945278554,-0.6611397177631388,-0.6597153759101816,-0.6582962460148875,-0.6568823052068675,-0.6554735306996842,-0.6540698997910842,-0.6526713898632168,-0.65127797838284,-0.6498896429015135,-0.6485063610557804,-0.6471281105673351,-0.6457548692431807,-0.6443866149757747,-0.6430233257431612,-0.6416649796090956,-0.6403115547231546,-0.6389630293208375,-0.637619381723657,-0.6362805903392181,-0.634946633661289,-0.63361749026986,-0.6322931388311946,-0.6309735580978693,-0.6296587269088055,-0.6283486241892914,-0.6270432289509956,-0.6257425202919713,-0.6244464773966524,-0.6231550795358413,-0.6218683060666879,-0.6205861364326614,-0.6193085501635136,-0.6180355268752351,-0.6167670462700033,-0.615503088136124,-0.6142436323479643,-0.6129886588658808,-0.6117381477361389,-0.6104920790908257,-0.6092504331477582,-0.6080131902103822,-0.6067803306676677,-0.6055518349939962,-0.6043276837490433,-0.603107857577655,-0.601892337209718,-0.6006811034600255,-0.5994741372281365,-0.5982714194982302,-0.5970729313389561,-0.5958786539032774,-0.5946885684283113,-0.5935026562351632,-0.5923208987287572,-0.5911432773976609,-0.589969773813908,-0.588800369632814,-0.587635046592789,-0.5864737865151474,-0.5853165713039113,-0.5841633829456123,-0.5830142035090886,-0.5818690151452781,-0.5807278000870089,-0.5795905406487851,-0.5784572192265715,-0.5773278182975716,-0.5762023204200064,-0.5750807082328872,-0.5739629644557862,-0.5728490718886059,-0.5717390134113426,-0.5706327719838499,-0.569530330645599,-0.5684316725154349,-0.5673367807913328,-0.5662456387501493,-0.5651582297473738,-0.5640745372168765,-0.5629945446706536,-0.5619182356985722,-0.5608455939681118,-0.5597766032241043,-0.5587112472884722,-0.5576495100599655,-0.5565913755138963,-0.555536827701871,-0.554485850751523,-0.5534384288662424,-0.552394546324904,-0.5513541874815956,-0.5503173367653424,-0.5492839786798329,-0.5482540978031419,-0.5472276787874524,-0.5462047063587768,-0.5451851653166775,-0.5441690405339856,-0.5431563169565189,-0.5421469796028001,-0.5411410135637718,-0.5401384040025135,-0.5391391361539556,-0.5381431953245944,-0.5371505668922051,-0.5361612363055549,-0.5351751890841157,-0.5341924108177756,-0.5332128871665506,-0.5322366038602957,-0.5312635466984152,-0.5302937015495736,-0.5293270543514041,-0.5283635911102204,-0.5274032979007242,-0.5264461608657155,-0.5254921662158017,-0.524541300229106,-0.5235935492509765,-0.5226488996936951,-0.5217073380361861,-0.520768850823725,-0.5198334246676473,-0.5189010462450573,-0.5179717022985372,-0.5170453796358556,-0.5161220651296776,-0.5152017457172735,-0.5142844084002286,-0.5133700402441527,-0.5124586283783908,-0.511550159995733,-0.5106446223521248,-0.5097420027663793,-0.5088422886198867,-0.507945467356328,-0.5070515264813853,-0.5061604535624554,-0.5052722362283627,-0.5043868621690718,-0.5035043191354025,-0.5026245949387429,-0.5017476774507657,-0.5008735546031425,-0.5000022143872602,-0.49913364485393796,-0.4982678341131435,-0.4974047703337115,-0.49654444174306156,-0.49568683662691776,-0.4948319433290276,-0.4939797502508828,-0.49313024585144033,-0.49228341864684366,-0.4914392572101457,-0.4905977501710316,-0.4897588862155426,-0.48892265408580093,-0.4880890425797346,-0.48725804055080457,-0.4864296369077302,-0.48560382061421853,-0.4847805806886915,-0.4839599062040161,-0.48314178628723414,-0.48232621011929344,-0.4815131669347793,-0.480702646021648,-0.479894636720959,-0.479089128426611,-0.47828611058507575,-0.4774855726951352,-0.476687504307618,-0.4758918950251379,-0.4750987345018323,-0.4743080124431022,-0.473519718605353,-0.47273384279573594,-0.47195037487189057,-0.47116930474168883,-0.47039062236297874,-0.4696143177433307,-0.4688403809397828,-0.46806880205858903,-0.46729957125496707,-0.4665326787328478,-0.46576811474462554,-0.4650058695909088,-0.46424593362027317,-0.4634882972290139,-0.4627329508609003,-0.46197988500693116,-0.4612290902050903,-0.46048055704010393,-0.45973427614319917,-0.45899023819186285,-0.45824843390960146,-0.4575088540657028,-0.45677148947499774,-0.4560363309976237,-0.45530336953878825,-0.4545725960485352,-0.45384400152151017,-0.4531175769967277,-0.45239331355734014,-0.45167120233040636,-0.45095123448666224,-0.4502334012402918,-0.4495176938487,-0.4488041036122854,-0.4480926218742149,-0.44738324002019925,-0.4466759494782692,-0.445970741718553,-0.4452676082530548,-0.4445665406354342,-0.44386753046078703,-0.44317056936542587,-0.4424756490266638,-0.44178276116259735,-0.44109189753189065,-0.4404030499335619,-0.4397162102067693,-0.4390313702305992,-0.4383485219238539,-0.437667657244842,-0.43698876819116916,-0.43631184679952884,-0.435636885145496,-0.4349638753433201,-0.43429280954572025,-0.4336236799436802,-0.4329564787662457,-0.4322911982803222,-0.43162783079047273,-0.43096636863871846,-0.430306804204339,-0.4296491299036737,-0.42899333818992513,-0.428339421552962,-0.4276873725191242,-0.42703718365102783,-0.42638884754737255,-0.42574235684274875,-0.42509770420744564,-0.42445488234726175,-0.42381388400331466,-0.42317470195185264,-0.4225373290040669,-0.4219017580059053,-0.42126798183788655,-0.42063599341491514,-0.4200057856860982,-0.41937735163456213,-0.418750684277271,-0.41812577666484574,-0.41750262188138365,-0.4168812130442803,-0.41626154330405,-0.4156436058441502,-0.41502739388080423,-0.414412900662826,-0.41380011947144624,-0.41318904362013836,-0.4125796664544463,-0.4119719813518126,-0.4113659817214079,-0.4107616610039609,-0.4101590126715895,-0.4095580302276329,-0.40895870720648414,-0.4083610371734243,-0.4077650137244567,-0.40717063048614277,-0.40657788111543813,-0.4059867592995302,-0.4053972587556762,-0.40480937323104227,-0.40422309650254307,-0.4036384223766831,-0.40305534468939785,-0.40247385730589663,-0.4018939541205054,-0.40131562905651147,-0.40073887606600866,-0.40016368912974226,-0.3995900622569569,-0.39901798948524336,-0.3984474648803872,-0.3978784825362179,-0.39731103657445893,-0.39674512114457877,-0.39618073042364216,-0.39561785861616316,-0.3950564999539581,-0.3944966486959995,-0.3939382991282715,-0.39338144556362514,-0.39282608234163524,-0.3922722038284572,-0.3917198044166854,-0.3911688785252124,-0.39061942059908766,-0.39007142510937887,-0.3895248865530327,-0.3889797994527371,-0.3884361583567833,-0.38789395783893027,-0.3873531924982684,-0.38681385695908455,-0.38627594587072794,-0.38573945390747655,-0.38520437576840466,-0.38467070617725024,-0.3841384398822843,-0.3836075716561801,-0.3830780962958833,-0.38255000862248284,-0.3820233034810829,-0.3814979757406746,-0.38097402029401006,-0.38045143205747506,-0.3799302059709646,-0.37941033699775706,-0.37889182012439093,-0.37837465036054113,-0.377858822738896,-0.3773443323150357,-0.3768311741673107,-0.3763193433967211,-0.37580883512679647,-0.3752996445034771,-0.3747917666949947,-0.3742851968917548,-0.37377993030621964,-0.373275962172791,-0.37277328774769475,-0.372271902308865,-0.37177180115583,-0.3712729796095977,-0.3707754330125424,-0.3702791567282923,-0.3697841461416171,-0.36929039665831653,-0.3687979037051098,-0.36830666272952495,-0.3678166691997898,-0.3673279186047223,-0.3668404064536228,-0.3663541282761662,-0.3658690796222942,-0.3653852560621097,-0.36490265318577025,-0.3644212666033829,-0.36394109194489954,-0.3634621248600127,-0.3629843610180521,-0.3625077961078814,-0.3620324258377963,-0.36155824593542246,-0.3610852521476141,-0.3606134402403539,-0.3601428059986526,-0.35967334522644934,-0.359205053746513,-0.3587379274003439,-0.3582719620480756,-0.35780715356837794,-0.35734349785836034,-0.3568809908334755,-0.35641962842742403,-0.3559594065920588,-0.3555003212972912,-0.3550423685309967,-0.35458554429892125,-0.3541298446245887,-0.3536752655492083,-0.3532218031315828,-0.3527694534480168,-0.3523182125922265,-0.351868076675249,-0.35141904182535233,-0.3509711041879467,-0.3505242599254952,-0.3500785052174258,-0.3496338362600433,-0.34919024926644243,-0.3487477404664208,-0.3483063061063925,-0.3478659424493026,-0.34742664577454163,-0.3469884123778606,-0.34655123857128706,-0.34611512068304084,-0.34568005505745086,-0.3452460380548721,-0.3448130660516031,-0.34438113543980436,-0.34395024262741597,-0.34352038403807744,-0.34309155611104675,-0.34266375530112,-0.3422369780785519,-0.34181122092897676,-0.3413864803533293,-0.34096275286776645,-0.3405400350035895,-0.3401183233071667,-0.3396976143398559,-0.3392779046779285,-0.33885919091249295,-0.33844146964941896,-0.3380247375092623,-0.3376089911271902,-0.33719422715290664,-0.33678044225057796,-0.33636763309876017,-0.33595579639032497,-0.3355449288323874,-0.3351350271462332,-0.3347260880672471,-0.334318108344841,-0.3339110847423831,-0.3335050140371271,-0.33309989302014176,-0.3326957184962408,-0.3322924872839138,-0.3318901962152567,-0.33148884213590313,-0.33108842190495585,-0.3306889323949192,-0.3302903704916309,-0.3298927330941953,-0.32949601711491633,-0.32910021947923096,-0.3287053371256433,-0.3283113670056585,-0.3279183060837179,-0.32752615133713364,-0.3271348997560241,-0.32674454834324984,-0.3263550941143493,-0.3259665340974758,-0.3255788653333337,-0.32519208487511625,-0.3248061897884426,-0.32442117715129576,-0.32403704405396105,-0.3236537875989644,-0.32327140490101147,-0.32288989308692656,-0.32250924929559277,-0.3221294706778913,-0.3217505543966422],"x":[-1.1,-1.103784860557769,-1.1075697211155378,-1.1113545816733068,-1.1151394422310756,-1.1189243027888447,-1.1227091633466135,-1.1264940239043826,-1.1302788844621514,-1.1340637450199202,-1.1378486055776893,-1.1416334661354581,-1.1454183266932272,-1.149203187250996,-1.1529880478087648,-1.156772908366534,-1.1605577689243027,-1.1643426294820718,-1.1681274900398406,-1.1719123505976095,-1.1756972111553785,-1.1794820717131473,-1.1832669322709164,-1.1870517928286852,-1.1908366533864543,-1.1946215139442231,-1.198406374501992,-1.202191235059761,-1.2059760956175298,-1.2097609561752989,-1.2135458167330677,-1.2173306772908365,-1.2211155378486056,-1.2249003984063744,-1.2286852589641435,-1.2324701195219123,-1.2362549800796814,-1.2400398406374502,-1.243824701195219,-1.247609561752988,-1.251394422310757,-1.255179282868526,-1.2589641434262948,-1.2627490039840636,-1.2665338645418327,-1.2703187250996015,-1.2741035856573706,-1.2778884462151394,-1.2816733067729085,-1.2854581673306773,-1.2892430278884461,-1.2930278884462152,-1.296812749003984,-1.300597609561753,-1.304382470119522,-1.3081673306772907,-1.3119521912350598,-1.3157370517928286,-1.3195219123505977,-1.3233067729083665,-1.3270916334661356,-1.3308764940239044,-1.3346613545816732,-1.3384462151394423,-1.3422310756972111,-1.3460159362549802,-1.349800796812749,-1.3535856573705178,-1.357370517928287,-1.3611553784860557,-1.3649402390438248,-1.3687250996015936,-1.3725099601593624,-1.3762948207171315,-1.3800796812749003,-1.3838645418326694,-1.3876494023904382,-1.3914342629482073,-1.395219123505976,-1.399003984063745,-1.402788844621514,-1.4065737051792828,-1.4103585657370519,-1.4141434262948207,-1.4179282868525895,-1.4217131474103586,-1.4254980079681274,-1.4292828685258965,-1.4330677290836653,-1.4368525896414344,-1.4406374501992032,-1.444422310756972,-1.448207171314741,-1.45199203187251,-1.455776892430279,-1.4595617529880478,-1.4633466135458166,-1.4671314741035857,-1.4709163346613545,-1.4747011952191236,-1.4784860557768924,-1.4822709163346615,-1.4860557768924303,-1.4898406374501991,-1.4936254980079682,-1.497410358565737,-1.501195219123506,-1.504980079681275,-1.5087649402390437,-1.5125498007968128,-1.5163346613545816,-1.5201195219123507,-1.5239043824701195,-1.5276892430278886,-1.5314741035856574,-1.5352589641434262,-1.5390438247011953,-1.542828685258964,-1.5466135458167332,-1.550398406374502,-1.5541832669322708,-1.5579681274900399,-1.5617529880478087,-1.5655378486055778,-1.5693227091633466,-1.5731075697211154,-1.5768924302788845,-1.5806772908366533,-1.5844621513944224,-1.5882470119521912,-1.5920318725099603,-1.595816733067729,-1.599601593625498,-1.603386454183267,-1.6071713147410358,-1.6109561752988049,-1.6147410358565737,-1.6185258964143425,-1.6223107569721116,-1.6260956175298804,-1.6298804780876495,-1.6336653386454183,-1.6374501992031874,-1.6412350597609562,-1.645019920318725,-1.648804780876494,-1.652589641434263,-1.656374501992032,-1.6601593625498008,-1.6639442231075696,-1.6677290836653387,-1.6715139442231075,-1.6752988047808766,-1.6790836653386454,-1.6828685258964144,-1.6866533864541833,-1.690438247011952,-1.6942231075697212,-1.69800796812749,-1.701792828685259,-1.7055776892430279,-1.7093625498007967,-1.7131474103585658,-1.7169322709163346,-1.7207171314741037,-1.7245019920318725,-1.7282868525896415,-1.7320717131474104,-1.7358565737051792,-1.7396414342629483,-1.743426294820717,-1.7472111553784861,-1.750996015936255,-1.7547808764940238,-1.7585657370517929,-1.7623505976095617,-1.7661354581673308,-1.7699203187250996,-1.7737051792828684,-1.7774900398406375,-1.7812749003984063,-1.7850597609561754,-1.7888446215139442,-1.7926294820717132,-1.796414342629482,-1.800199203187251,-1.80398406374502,-1.8077689243027888,-1.8115537848605578,-1.8153386454183267,-1.8191235059760955,-1.8229083665338646,-1.8266932270916334,-1.8304780876494025,-1.8342629482071713,-1.8380478087649403,-1.8418326693227092,-1.845617529880478,-1.849402390438247,-1.853187250996016,-1.856972111553785,-1.8607569721115538,-1.8645418326693226,-1.8683266932270917,-1.8721115537848605,-1.8758964143426295,-1.8796812749003984,-1.8834661354581674,-1.8872509960159363,-1.891035856573705,-1.8948207171314742,-1.898605577689243,-1.902390438247012,-1.9061752988047809,-1.9099601593625497,-1.9137450199203188,-1.9175298804780876,-1.9213147410358566,-1.9250996015936255,-1.9288844621513945,-1.9326693227091634,-1.9364541832669322,-1.9402390438247012,-1.94402390438247,-1.9478087649402391,-1.951593625498008,-1.9553784860557768,-1.9591633466135459,-1.9629482071713147,-1.9667330677290837,-1.9705179282868526,-1.9743027888446214,-1.9780876494023905,-1.9818725099601593,-1.9856573705179283,-1.9894422310756972,-1.9932270916334662,-1.997011952191235,-2.000796812749004,-2.004581673306773,-2.008366533864542,-2.0121513944223106,-2.0159362549800797,-2.0197211155378487,-2.0235059760956173,-2.0272908366533864,-2.0310756972111554,-2.0348605577689245,-2.038645418326693,-2.042430278884462,-2.046215139442231,-2.05,-2.053784860557769,-2.057569721115538,-2.061354581673307,-2.0651394422310756,-2.0689243027888446,-2.0727091633466137,-2.0764940239043823,-2.0802788844621514,-2.0840637450199204,-2.087848605577689,-2.091633466135458,-2.095418326693227,-2.099203187250996,-2.102988047808765,-2.106772908366534,-2.110557768924303,-2.1143426294820715,-2.1181274900398406,-2.1219123505976096,-2.1256972111553787,-2.1294820717131473,-2.1332669322709163,-2.1370517928286854,-2.140836653386454,-2.144621513944223,-2.148406374501992,-2.152191235059761,-2.15597609561753,-2.159760956175299,-2.163545816733068,-2.1673306772908365,-2.1711155378486056,-2.1749003984063746,-2.1786852589641432,-2.1824701195219123,-2.1862549800796813,-2.1900398406374504,-2.193824701195219,-2.197609561752988,-2.201394422310757,-2.2051792828685257,-2.2089641434262948,-2.212749003984064,-2.216533864541833,-2.2203187250996015,-2.2241035856573705,-2.2278884462151396,-2.231673306772908,-2.2354581673306773,-2.2392430278884463,-2.243027888446215,-2.246812749003984,-2.250597609561753,-2.254382470119522,-2.2581673306772907,-2.2619521912350598,-2.265737051792829,-2.2695219123505974,-2.2733067729083665,-2.2770916334661355,-2.2808764940239046,-2.284661354581673,-2.2884462151394422,-2.2922310756972113,-2.29601593625498,-2.299800796812749,-2.303585657370518,-2.307370517928287,-2.3111553784860557,-2.3149402390438247,-2.318725099601594,-2.3225099601593624,-2.3262948207171315,-2.3300796812749005,-2.333864541832669,-2.337649402390438,-2.3414342629482072,-2.3452191235059763,-2.349003984063745,-2.352788844621514,-2.356573705179283,-2.3603585657370516,-2.3641434262948207,-2.3679282868525897,-2.3717131474103588,-2.3754980079681274,-2.3792828685258964,-2.3830677290836655,-2.386852589641434,-2.390637450199203,-2.394422310756972,-2.398207171314741,-2.40199203187251,-2.405776892430279,-2.409561752988048,-2.4133466135458166,-2.4171314741035856,-2.4209163346613547,-2.4247011952191233,-2.4284860557768924,-2.4322709163346614,-2.4360557768924305,-2.439840637450199,-2.443625498007968,-2.447410358565737,-2.451195219123506,-2.454980079681275,-2.458764940239044,-2.462549800796813,-2.4663346613545816,-2.4701195219123506,-2.4739043824701197,-2.4776892430278883,-2.4814741035856573,-2.4852589641434264,-2.489043824701195,-2.492828685258964,-2.496613545816733,-2.500398406374502,-2.504183266932271,-2.50796812749004,-2.511752988047809,-2.5155378486055775,-2.5193227091633466,-2.5231075697211156,-2.5268924302788847,-2.5306772908366533,-2.5344621513944223,-2.5382470119521914,-2.54203187250996,-2.545816733067729,-2.549601593625498,-2.553386454183267,-2.5571713147410358,-2.560956175298805,-2.564741035856574,-2.5685258964143425,-2.5723107569721115,-2.5760956175298806,-2.579880478087649,-2.5836653386454183,-2.5874501992031873,-2.5912350597609564,-2.595019920318725,-2.598804780876494,-2.602589641434263,-2.6063745019920317,-2.6101593625498007,-2.61394422310757,-2.617729083665339,-2.6215139442231075,-2.6252988047808765,-2.6290836653386456,-2.632868525896414,-2.6366533864541832,-2.6404382470119523,-2.644223107569721,-2.64800796812749,-2.651792828685259,-2.655577689243028,-2.6593625498007967,-2.6631474103585657,-2.666932270916335,-2.6707171314741034,-2.6745019920318724,-2.6782868525896415,-2.6820717131474106,-2.685856573705179,-2.689641434262948,-2.6934262948207173,-2.697211155378486,-2.700996015936255,-2.704780876494024,-2.708565737051793,-2.7123505976095617,-2.7161354581673307,-2.7199203187250998,-2.7237051792828684,-2.7274900398406374,-2.7312749003984065,-2.735059760956175,-2.738844621513944,-2.742629482071713,-2.7464143426294823,-2.750199203187251,-2.75398406374502,-2.757768924302789,-2.7615537848605576,-2.7653386454183266,-2.7691235059760957,-2.7729083665338647,-2.7766932270916334,-2.7804780876494024,-2.7842629482071715,-2.78804780876494,-2.791832669322709,-2.795617529880478,-2.799402390438247,-2.803187250996016,-2.806972111553785,-2.810756972111554,-2.8145418326693226,-2.8183266932270916,-2.8221115537848607,-2.8258964143426293,-2.8296812749003983,-2.8334661354581674,-2.8372509960159364,-2.841035856573705,-2.844820717131474,-2.848605577689243,-2.8523904382470118,-2.856175298804781,-2.85996015936255,-2.863745019920319,-2.8675298804780875,-2.8713147410358566,-2.8750996015936257,-2.8788844621513943,-2.8826693227091633,-2.8864541832669324,-2.890239043824701,-2.89402390438247,-2.897808764940239,-2.901593625498008,-2.9053784860557768,-2.909163346613546,-2.912948207171315,-2.9167330677290835,-2.9205179282868525,-2.9243027888446216,-2.9280876494023906,-2.9318725099601592,-2.9356573705179283,-2.9394422310756974,-2.943227091633466,-2.947011952191235,-2.950796812749004,-2.954581673306773,-2.9583665338645417,-2.962151394422311,-2.96593625498008,-2.9697211155378485,-2.9735059760956175,-2.9772908366533866,-2.981075697211155,-2.9848605577689242,-2.9886454183266933,-2.9924302788844623,-2.996215139442231,-3.0]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_positive.json b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_positive.json index 52d26effe418..3ce6c03f8d02 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_positive.json +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/medium_positive.json @@ -1 +1 @@ -{"expected":[1.5222612188617113,1.504586603996554,1.4875757829269853,1.4711827314360777,1.4553660422356198,1.4400883274295309,1.4253157146233255,1.4110174196020666,1.397165382025739,1.3837339533089152,1.3706996279639225,1.3580408113409939,1.3457376180039984,1.3337716960170605,1.3221260732461817,1.3107850224467472,1.299733942447189,1.2889592531779241,1.27844830265359,1.268189284311477,1.258171163352654,1.2483836109342261,1.23881694522946,1.2294620785132346,1.2203104695484495,1.2113540806486411,1.2025853388762893,1.1939971009078294,1.185582621157269,1.177335522802342,1.1692497714017163,1.1613196508300776,1.1535397412909425,1.1459048991955825,1.1384102387211692,1.131051114882736,1.123823107972237,1.1167220092343302,1.1097438076627764,1.1028846778138675,1.096140968544315,1.0895091925906872,1.0829860169160574,1.0765682537570536,1.0702528523112094,1.0640368910104332,1.0579175703316916,1.0518922061007079,1.045958223248642,1.0401131499854857,1.0343546123572196,1.028680329156812,1.0230881071618,1.017575836673619,1.01214148733604,1.0067831042119981,1.0014988040999027,0.996286772072088,0.9911452582195268,0.9860725745882294,0.9810670922939403,0.9761272388028316,0.9712514953668497,0.966438394603295,0.9616865182089999,0.9569944948002216,0.9523609978700524,0.9477847438557462,0.9432644903089489,0.9387990341623247,0.9343872100865429,0.9300278889320407,0.9257199762503567,0.9214624108902181,0.9172541636638843,0.913094236079575,0.9089816591360902,0.904915492175996,0.9008948217939962,0.8969187607973309,0.8929864472152577,0.8890970433548595,0.8852497349006028,0.8814437300552372,0.877678258719779,0.8739525717104644,0.8702659400106908,0.8666176540560862,0.8630070230509628,0.859433374314514,0.8558960526552202,0.8523944197720077,0.8489278536808073,0.845495748165227,0.8420975122501315,0.838732569696995,0.8354003585199522,0.8321003305215402,0.8288319508471755,0.8255946975574674,0.8223880612175182,0.8192115445024044,0.8160646618180856,0.8129469389370146,0.8098579126477796,0.806797130418126,0.8037641500707564,0.8007585394713281,0.7977798762281019,0.7948277474027244,0.7919017492316563,0.7890014868577703,0.7861265740716873,0.7832766330624223,0.7804512941769463,0.777650195688278,0.774872983571753,0.7721193112891199,0.7693888395801399,0.7666812362613812,0.7639961760319074,0.7613333402855826,0.7586924169297257,0.7560731002098495,0.753475090540255,0.7508980943402339,0.7483418238756678,0.745805997105809,0.7432903375350367,0.7407945740694069,0.7383184408777962,0.7358616772574791,0.7334240275039592,0.7310052407848993,0.7286050710179959,0.726223276752647,0.723859621055281,0.7215138713982013,0.7191857995518269,0.7168751814802011,0.7145817972396494,0.7123054308804763,0.7100458703515905,0.7078029074079553,0.7055763375207622,0.7033659597902362,0.7011715768609779,0.6989929948397534,0.6968300232156529,0.6946824747825285,0.6925501655636415,0.6904329147384397,0.6883305445713936,0.686242880342823,0.6841697502816474,0.6821109854999962,0.680066419929618,0.6780358902600289,0.6760192358783447,0.6740162988107384,0.6720269236654789,0.6700509575774879,0.6680882501543787,0.6661386534239223,0.664202021782897,0.662278211947281,0.6603670829037412,0.6584684958623832,0.6565823142107182,0.6547084034688138,0.6528466312455901,0.6509968671962252,0.6491589829806407,0.6473328522230288,0.6455183504723947,0.6437153551640811,0.6419237455822467,0.6401434028232714,0.638374209760057,0.636616051007203,0.6348688128870277,0.6331323833964104,0.6314066521744348,0.6296915104708036,0.6279868511150107,0.6262925684862418,0.624608558483988,0.6229347184993499,0.6212709473870122,0.619617145437874,0.6179732143523102,0.6163390572140529,0.6147145784646723,0.6130996838786391,0.6114942805389592,0.6098982768133553,0.6083115823309908,0.6067341079597129,0.6051657657838074,0.6036064690822471,0.6020561323074223,0.6005146710643429,0.5989820020902936,0.5974580432349389,0.5959427134408578,0.5944359327245021,0.5929376221575666,0.591447703848758,0.589966100925957,0.5884927375187573,0.5870275387413794,0.5855704306759414,0.5841213403560853,0.5826801957509458,0.5812469257494518,0.5798214601449581,0.5784037296201924,0.5769936657325129,0.5755912008994714,0.5741962683846682,0.5728088022838976,0.571428737511574,0.5700560097874312,0.5686905556234922,0.5673323123112965,0.5659812179093863,0.5646372112310383,0.5633002318322411,0.5619702199999086,0.5606471167403256,0.5593308637678198,0.5580214034936534,0.5567186790151332,0.5554226341049291,0.5541332132005997,0.5528503613943196,0.5515740244228013,0.5503041486574124,0.5490406810944769,0.5477835693457634,0.5465327616291508,0.5452882067594687,0.5440498541395113,0.5428176537512175,0.5415915561470147,0.5403715124413231,0.5391574743022175,0.5379493939432407,0.5367472241153685,0.5355509180991189,0.5343604296968083,0.5331757132249442,0.5319967235067573,0.5308234158648681,0.5296557461140837,0.5284936705543233,0.5273371459636709,0.5261861295915498,0.5250405791520187,0.5239004528171849,0.5227657092107335,0.5216363074015704,0.5205122068975743,0.5193933676394598,0.5182797499947439,0.5171713147518193,0.5160680231141268,0.5149698366944296,0.5138767175091854,0.5127886279730118,0.5117055308932492,0.5106273894646124,0.5095541672639345,0.5084858282449976,0.5074223367334505,0.5063636574218122,0.5053097553645565,0.5042605959732793,0.5032161450119463,0.5021763685922174,0.5011412331688482,0.5001107055351686,0.4990847528186323,0.49806334247644046,0.4970464422912359,0.4960340203668667,0.49502604512421744,0.49402248529710896,0.49302330992826193,0.4920284883653261,0.49103799025697104,0.4900517855490416,0.48906984448077095,0.4880921375810552,0.48711863566478664,0.4861493098292431,0.4851841314505345,0.48422307218010474,0.48326610394128733,0.48231319892591507,0.48136432959098097,0.48041946865535134,0.47947858909652896,0.4785416641474657,0.4776086672934234,0.47667957226888286,0.4757543530545002,0.4748329838741066,0.47391543919175716,0.47300169370882084,0.4720917223611145,0.47118550031608153,0.47028300297001047,0.4693842059452955,0.46848908508773746,0.4675976164638854,0.4667097763584157,0.46582554127155107,0.4649448879165162,0.46406779321703173,0.4631942343048432,0.46232418851728674,0.4614576333948899,0.46059454667900696,0.45973490630948777,0.45887869042238094,0.45802587734766914,0.4571764456070364,0.45633037391166853,0.45548764116008295,0.4546482264359907,0.4538121090061874,0.45297926831847485,0.45214968399961114,0.4513233358532893,0.45050020385814504,0.44968026816579115,0.4488635090988796,0.4480499071491907,0.4472394429757481,0.4464320974029601,0.44562785141878586,0.44482668617292814,0.4440285829750491,0.4432335232930106,0.44244148875113953,0.44165246112851575,0.4408664223572831,0.4400833545209831,0.439303239852912,0.43852606073449824,0.437751799693703,0.43698043940344145,0.43621196268002504,0.4354463524816246,0.43468359190675265,0.4339236641927684,0.4331665527143994,0.4324122409822842,0.43166071264153405,0.4309119514703128,0.4301659413784362,0.4294226664059878,0.4286821107219546,0.42794425862287955,0.42720909453153044,0.4264766029955883,0.42574676868635003,0.42501957639744914,0.4242950110435926,0.4235730576593135,0.42285370139774003,0.4221369275293787,0.4214227214409153,0.4207110686340288,0.42000195472422097,0.41929536543966117,0.4185912866200448,0.41788970421546645,0.41719060428530674,0.41649397299713387,0.4157997966256173,0.4151080615514561,0.4144187542603204,0.413731861341805,0.4130473694883972,0.41236526549445535,0.41168553625520227,0.41100816876572893,0.41033315012001087,0.4096604675099374,0.4089901082243513,0.40832205964810064,0.4076563092611023,0.40699284463741653,0.4063316534443322,0.4056727234414634,0.40501604247985734,0.40436159850111175,0.4037093795365033,0.40305937370612677,0.4024115692180438,0.40176595436744195,0.4011225175358033,0.4004812471900837,0.39984213188190076,0.39920516024673136,0.39857032100311923,0.39793760295189134,0.39730699497538285,0.3966784860366722,0.3960520651788241,0.3954277215241415,0.3948054442734263,0.3941852227052488,0.3935670461752247,0.3929509041153011,0.39233678603305056,0.39172468151097284,0.39111458020580514,0.39050647184783915,0.3899003462402472,0.389296193258415,0.38869400284928224,0.3880937650306902,0.38749546989073774,0.3868991075871432,0.38630466834661403,0.38571214246422414,0.3851215203027965,0.38453279229229376,0.3839459489292161,0.3833609807760043,0.38277787846045,0.3821966326751136,0.3816172341767463,0.38103967378572035,0.38046394238546466,0.3798900309219069,0.37931793040292144,0.3787476318977833,0.3781791265366284,0.37761240550991904,0.3770474600679155,0.3764842815201535,0.37592286123492685,0.37536319063877616,0.3748052612159821,0.3742490645080656,0.37369459211329165,0.37314183568617965,0.3725907869370185,0.37204143763138703,0.37149377958967866,0.3709478046866322,0.3704035048508673,0.36986087206442436,0.36931989836230933,0.3687805758320439,0.3682428966132196,0.367706852897057,0.3671724369259695,0.3666396409931313,0.36610845744205067,0.36557887866614586,0.3650508971083283,0.3645245052605866,0.36399969566357804,0.3634764609062219,0.36295479362529837,0.3624346865050508,0.3619161322767923,0.36139912371851646,0.3608836536545119,0.3603697149549805,0.3598573005356597,0.35934640335744894,0.3588370164260394,0.3583291327915473,0.35782274554815174,0.35731784783373527,0.35681443282952846,0.3563124937597581,0.3558120238912986,0.3553130165333275,0.354815465036983,0.35431936279502707,0.3538247032415097,0.3533314798514377,0.3528396861404467,0.35234931566447575,0.35186036201944604,0.3513728188409417,0.35088667980389465,0.3504019386222722,0.3499185890487672,0.3494366248744922,0.34895603992867563,0.34847682807836167,0.3479989832281121,0.34752249931971263,0.34704737033187966,0.34657359027997264],"x":[1.1,1.103784860557769,1.1075697211155378,1.1113545816733068,1.1151394422310756,1.1189243027888447,1.1227091633466135,1.1264940239043826,1.1302788844621514,1.1340637450199202,1.1378486055776893,1.1416334661354581,1.1454183266932272,1.149203187250996,1.1529880478087648,1.156772908366534,1.1605577689243027,1.1643426294820718,1.1681274900398406,1.1719123505976095,1.1756972111553785,1.1794820717131473,1.1832669322709164,1.1870517928286852,1.1908366533864543,1.1946215139442231,1.198406374501992,1.202191235059761,1.2059760956175298,1.2097609561752989,1.2135458167330677,1.2173306772908365,1.2211155378486056,1.2249003984063744,1.2286852589641435,1.2324701195219123,1.2362549800796814,1.2400398406374502,1.243824701195219,1.247609561752988,1.251394422310757,1.255179282868526,1.2589641434262948,1.2627490039840636,1.2665338645418327,1.2703187250996015,1.2741035856573706,1.2778884462151394,1.2816733067729085,1.2854581673306773,1.2892430278884461,1.2930278884462152,1.296812749003984,1.300597609561753,1.304382470119522,1.3081673306772907,1.3119521912350598,1.3157370517928286,1.3195219123505977,1.3233067729083665,1.3270916334661356,1.3308764940239044,1.3346613545816732,1.3384462151394423,1.3422310756972111,1.3460159362549802,1.349800796812749,1.3535856573705178,1.357370517928287,1.3611553784860557,1.3649402390438248,1.3687250996015936,1.3725099601593624,1.3762948207171315,1.3800796812749003,1.3838645418326694,1.3876494023904382,1.3914342629482073,1.395219123505976,1.399003984063745,1.402788844621514,1.4065737051792828,1.4103585657370519,1.4141434262948207,1.4179282868525895,1.4217131474103586,1.4254980079681274,1.4292828685258965,1.4330677290836653,1.4368525896414344,1.4406374501992032,1.444422310756972,1.448207171314741,1.45199203187251,1.455776892430279,1.4595617529880478,1.4633466135458166,1.4671314741035857,1.4709163346613545,1.4747011952191236,1.4784860557768924,1.4822709163346615,1.4860557768924303,1.4898406374501991,1.4936254980079682,1.497410358565737,1.501195219123506,1.504980079681275,1.5087649402390437,1.5125498007968128,1.5163346613545816,1.5201195219123507,1.5239043824701195,1.5276892430278886,1.5314741035856574,1.5352589641434262,1.5390438247011953,1.542828685258964,1.5466135458167332,1.550398406374502,1.5541832669322708,1.5579681274900399,1.5617529880478087,1.5655378486055778,1.5693227091633466,1.5731075697211154,1.5768924302788845,1.5806772908366533,1.5844621513944224,1.5882470119521912,1.5920318725099603,1.595816733067729,1.599601593625498,1.603386454183267,1.6071713147410358,1.6109561752988049,1.6147410358565737,1.6185258964143425,1.6223107569721116,1.6260956175298804,1.6298804780876495,1.6336653386454183,1.6374501992031874,1.6412350597609562,1.645019920318725,1.648804780876494,1.652589641434263,1.656374501992032,1.6601593625498008,1.6639442231075696,1.6677290836653387,1.6715139442231075,1.6752988047808766,1.6790836653386454,1.6828685258964144,1.6866533864541833,1.690438247011952,1.6942231075697212,1.69800796812749,1.701792828685259,1.7055776892430279,1.7093625498007967,1.7131474103585658,1.7169322709163346,1.7207171314741037,1.7245019920318725,1.7282868525896415,1.7320717131474104,1.7358565737051792,1.7396414342629483,1.743426294820717,1.7472111553784861,1.750996015936255,1.7547808764940238,1.7585657370517929,1.7623505976095617,1.7661354581673308,1.7699203187250996,1.7737051792828684,1.7774900398406375,1.7812749003984063,1.7850597609561754,1.7888446215139442,1.7926294820717132,1.796414342629482,1.800199203187251,1.80398406374502,1.8077689243027888,1.8115537848605578,1.8153386454183267,1.8191235059760955,1.8229083665338646,1.8266932270916334,1.8304780876494025,1.8342629482071713,1.8380478087649403,1.8418326693227092,1.845617529880478,1.849402390438247,1.853187250996016,1.856972111553785,1.8607569721115538,1.8645418326693226,1.8683266932270917,1.8721115537848605,1.8758964143426295,1.8796812749003984,1.8834661354581674,1.8872509960159363,1.891035856573705,1.8948207171314742,1.898605577689243,1.902390438247012,1.9061752988047809,1.9099601593625497,1.9137450199203188,1.9175298804780876,1.9213147410358566,1.9250996015936255,1.9288844621513945,1.9326693227091634,1.9364541832669322,1.9402390438247012,1.94402390438247,1.9478087649402391,1.951593625498008,1.9553784860557768,1.9591633466135459,1.9629482071713147,1.9667330677290837,1.9705179282868526,1.9743027888446214,1.9780876494023905,1.9818725099601593,1.9856573705179283,1.9894422310756972,1.9932270916334662,1.997011952191235,2.000796812749004,2.004581673306773,2.008366533864542,2.0121513944223106,2.0159362549800797,2.0197211155378487,2.0235059760956173,2.0272908366533864,2.0310756972111554,2.0348605577689245,2.038645418326693,2.042430278884462,2.046215139442231,2.05,2.053784860557769,2.057569721115538,2.061354581673307,2.0651394422310756,2.0689243027888446,2.0727091633466137,2.0764940239043823,2.0802788844621514,2.0840637450199204,2.087848605577689,2.091633466135458,2.095418326693227,2.099203187250996,2.102988047808765,2.106772908366534,2.110557768924303,2.1143426294820715,2.1181274900398406,2.1219123505976096,2.1256972111553787,2.1294820717131473,2.1332669322709163,2.1370517928286854,2.140836653386454,2.144621513944223,2.148406374501992,2.152191235059761,2.15597609561753,2.159760956175299,2.163545816733068,2.1673306772908365,2.1711155378486056,2.1749003984063746,2.1786852589641432,2.1824701195219123,2.1862549800796813,2.1900398406374504,2.193824701195219,2.197609561752988,2.201394422310757,2.2051792828685257,2.2089641434262948,2.212749003984064,2.216533864541833,2.2203187250996015,2.2241035856573705,2.2278884462151396,2.231673306772908,2.2354581673306773,2.2392430278884463,2.243027888446215,2.246812749003984,2.250597609561753,2.254382470119522,2.2581673306772907,2.2619521912350598,2.265737051792829,2.2695219123505974,2.2733067729083665,2.2770916334661355,2.2808764940239046,2.284661354581673,2.2884462151394422,2.2922310756972113,2.29601593625498,2.299800796812749,2.303585657370518,2.307370517928287,2.3111553784860557,2.3149402390438247,2.318725099601594,2.3225099601593624,2.3262948207171315,2.3300796812749005,2.333864541832669,2.337649402390438,2.3414342629482072,2.3452191235059763,2.349003984063745,2.352788844621514,2.356573705179283,2.3603585657370516,2.3641434262948207,2.3679282868525897,2.3717131474103588,2.3754980079681274,2.3792828685258964,2.3830677290836655,2.386852589641434,2.390637450199203,2.394422310756972,2.398207171314741,2.40199203187251,2.405776892430279,2.409561752988048,2.4133466135458166,2.4171314741035856,2.4209163346613547,2.4247011952191233,2.4284860557768924,2.4322709163346614,2.4360557768924305,2.439840637450199,2.443625498007968,2.447410358565737,2.451195219123506,2.454980079681275,2.458764940239044,2.462549800796813,2.4663346613545816,2.4701195219123506,2.4739043824701197,2.4776892430278883,2.4814741035856573,2.4852589641434264,2.489043824701195,2.492828685258964,2.496613545816733,2.500398406374502,2.504183266932271,2.50796812749004,2.511752988047809,2.5155378486055775,2.5193227091633466,2.5231075697211156,2.5268924302788847,2.5306772908366533,2.5344621513944223,2.5382470119521914,2.54203187250996,2.545816733067729,2.549601593625498,2.553386454183267,2.5571713147410358,2.560956175298805,2.564741035856574,2.5685258964143425,2.5723107569721115,2.5760956175298806,2.579880478087649,2.5836653386454183,2.5874501992031873,2.5912350597609564,2.595019920318725,2.598804780876494,2.602589641434263,2.6063745019920317,2.6101593625498007,2.61394422310757,2.617729083665339,2.6215139442231075,2.6252988047808765,2.6290836653386456,2.632868525896414,2.6366533864541832,2.6404382470119523,2.644223107569721,2.64800796812749,2.651792828685259,2.655577689243028,2.6593625498007967,2.6631474103585657,2.666932270916335,2.6707171314741034,2.6745019920318724,2.6782868525896415,2.6820717131474106,2.685856573705179,2.689641434262948,2.6934262948207173,2.697211155378486,2.700996015936255,2.704780876494024,2.708565737051793,2.7123505976095617,2.7161354581673307,2.7199203187250998,2.7237051792828684,2.7274900398406374,2.7312749003984065,2.735059760956175,2.738844621513944,2.742629482071713,2.7464143426294823,2.750199203187251,2.75398406374502,2.757768924302789,2.7615537848605576,2.7653386454183266,2.7691235059760957,2.7729083665338647,2.7766932270916334,2.7804780876494024,2.7842629482071715,2.78804780876494,2.791832669322709,2.795617529880478,2.799402390438247,2.803187250996016,2.806972111553785,2.810756972111554,2.8145418326693226,2.8183266932270916,2.8221115537848607,2.8258964143426293,2.8296812749003983,2.8334661354581674,2.8372509960159364,2.841035856573705,2.844820717131474,2.848605577689243,2.8523904382470118,2.856175298804781,2.85996015936255,2.863745019920319,2.8675298804780875,2.8713147410358566,2.8750996015936257,2.8788844621513943,2.8826693227091633,2.8864541832669324,2.890239043824701,2.89402390438247,2.897808764940239,2.901593625498008,2.9053784860557768,2.909163346613546,2.912948207171315,2.9167330677290835,2.9205179282868525,2.9243027888446216,2.9280876494023906,2.9318725099601592,2.9356573705179283,2.9394422310756974,2.943227091633466,2.947011952191235,2.950796812749004,2.954581673306773,2.9583665338645417,2.962151394422311,2.96593625498008,2.9697211155378485,2.9735059760956175,2.9772908366533866,2.981075697211155,2.9848605577689242,2.9886454183266933,2.9924302788844623,2.996215139442231,3.0]} \ No newline at end of file +{"expected":[0.7378150601204649,0.7361056754550979,0.7344027170432255,0.7327061585364671,0.7310159736367406,0.7293321360975216,0.7276546197250732,0.7259833983796455,0.7243184459766473,0.7226597364877866,0.7210072439421855,0.7193609424274653,0.717720806090805,0.7160868091399732,0.7144589258443317,0.7128371305358143,0.7112213976098805,0.7096117015264408,0.7080080168107608,0.7064103180543367,0.7048185799157509,0.7032327771214993,0.7016528844667989,0.7000788768163694,0.6985107291051944,0.6969484163392584,0.6953919135962627,0.6938411960263199,0.6922962388526266,0.6907570173721149,0.6892235069560844,0.6876956830508126,0.6861735211781471,0.6846569969360763,0.6831460859992823,0.6816407641196744,0.6801410071269042,0.6786467909288618,0.6771580915121557,0.6756748849425723,0.6741971473655217,0.6727248550064631,0.6712579841713158,0.6697965112468522,0.6683404127010766,0.6668896650835858,0.6654442450259164,0.6640041292418751,0.6625692945278554,0.6611397177631388,0.6597153759101816,0.6582962460148875,0.6568823052068675,0.6554735306996842,0.6540698997910842,0.6526713898632168,0.65127797838284,0.6498896429015135,0.6485063610557804,0.6471281105673351,0.6457548692431807,0.6443866149757747,0.6430233257431612,0.6416649796090956,0.6403115547231546,0.6389630293208375,0.637619381723657,0.6362805903392181,0.634946633661289,0.63361749026986,0.6322931388311946,0.6309735580978693,0.6296587269088055,0.6283486241892914,0.6270432289509956,0.6257425202919713,0.6244464773966524,0.6231550795358413,0.6218683060666879,0.6205861364326614,0.6193085501635136,0.6180355268752351,0.6167670462700033,0.615503088136124,0.6142436323479643,0.6129886588658808,0.6117381477361389,0.6104920790908257,0.6092504331477582,0.6080131902103822,0.6067803306676677,0.6055518349939962,0.6043276837490433,0.603107857577655,0.601892337209718,0.6006811034600255,0.5994741372281365,0.5982714194982302,0.5970729313389561,0.5958786539032774,0.5946885684283113,0.5935026562351632,0.5923208987287572,0.5911432773976609,0.589969773813908,0.588800369632814,0.587635046592789,0.5864737865151474,0.5853165713039113,0.5841633829456123,0.5830142035090886,0.5818690151452781,0.5807278000870089,0.5795905406487851,0.5784572192265715,0.5773278182975716,0.5762023204200064,0.5750807082328872,0.5739629644557862,0.5728490718886059,0.5717390134113426,0.5706327719838499,0.569530330645599,0.5684316725154349,0.5673367807913328,0.5662456387501493,0.5651582297473738,0.5640745372168765,0.5629945446706536,0.5619182356985722,0.5608455939681118,0.5597766032241043,0.5587112472884722,0.5576495100599655,0.5565913755138963,0.555536827701871,0.554485850751523,0.5534384288662424,0.552394546324904,0.5513541874815956,0.5503173367653424,0.5492839786798329,0.5482540978031419,0.5472276787874524,0.5462047063587768,0.5451851653166775,0.5441690405339856,0.5431563169565189,0.5421469796028001,0.5411410135637718,0.5401384040025135,0.5391391361539556,0.5381431953245944,0.5371505668922051,0.5361612363055549,0.5351751890841157,0.5341924108177756,0.5332128871665506,0.5322366038602957,0.5312635466984152,0.5302937015495736,0.5293270543514041,0.5283635911102204,0.5274032979007242,0.5264461608657155,0.5254921662158017,0.524541300229106,0.5235935492509765,0.5226488996936951,0.5217073380361861,0.520768850823725,0.5198334246676473,0.5189010462450573,0.5179717022985372,0.5170453796358556,0.5161220651296776,0.5152017457172735,0.5142844084002286,0.5133700402441527,0.5124586283783908,0.511550159995733,0.5106446223521248,0.5097420027663793,0.5088422886198867,0.507945467356328,0.5070515264813853,0.5061604535624554,0.5052722362283627,0.5043868621690718,0.5035043191354025,0.5026245949387429,0.5017476774507657,0.5008735546031425,0.5000022143872602,0.49913364485393796,0.4982678341131435,0.4974047703337115,0.49654444174306156,0.49568683662691776,0.4948319433290276,0.4939797502508828,0.49313024585144033,0.49228341864684366,0.4914392572101457,0.4905977501710316,0.4897588862155426,0.48892265408580093,0.4880890425797346,0.48725804055080457,0.4864296369077302,0.48560382061421853,0.4847805806886915,0.4839599062040161,0.48314178628723414,0.48232621011929344,0.4815131669347793,0.480702646021648,0.479894636720959,0.479089128426611,0.47828611058507575,0.4774855726951352,0.476687504307618,0.4758918950251379,0.4750987345018323,0.4743080124431022,0.473519718605353,0.47273384279573594,0.47195037487189057,0.47116930474168883,0.47039062236297874,0.4696143177433307,0.4688403809397828,0.46806880205858903,0.46729957125496707,0.4665326787328478,0.46576811474462554,0.4650058695909088,0.46424593362027317,0.4634882972290139,0.4627329508609003,0.46197988500693116,0.4612290902050903,0.46048055704010393,0.45973427614319917,0.45899023819186285,0.45824843390960146,0.4575088540657028,0.45677148947499774,0.4560363309976237,0.45530336953878825,0.4545725960485352,0.45384400152151017,0.4531175769967277,0.45239331355734014,0.45167120233040636,0.45095123448666224,0.4502334012402918,0.4495176938487,0.4488041036122854,0.4480926218742149,0.44738324002019925,0.4466759494782692,0.445970741718553,0.4452676082530548,0.4445665406354342,0.44386753046078703,0.44317056936542587,0.4424756490266638,0.44178276116259735,0.44109189753189065,0.4404030499335619,0.4397162102067693,0.4390313702305992,0.4383485219238539,0.437667657244842,0.43698876819116916,0.43631184679952884,0.435636885145496,0.4349638753433201,0.43429280954572025,0.4336236799436802,0.4329564787662457,0.4322911982803222,0.43162783079047273,0.43096636863871846,0.430306804204339,0.4296491299036737,0.42899333818992513,0.428339421552962,0.4276873725191242,0.42703718365102783,0.42638884754737255,0.42574235684274875,0.42509770420744564,0.42445488234726175,0.42381388400331466,0.42317470195185264,0.4225373290040669,0.4219017580059053,0.42126798183788655,0.42063599341491514,0.4200057856860982,0.41937735163456213,0.418750684277271,0.41812577666484574,0.41750262188138365,0.4168812130442803,0.41626154330405,0.4156436058441502,0.41502739388080423,0.414412900662826,0.41380011947144624,0.41318904362013836,0.4125796664544463,0.4119719813518126,0.4113659817214079,0.4107616610039609,0.4101590126715895,0.4095580302276329,0.40895870720648414,0.4083610371734243,0.4077650137244567,0.40717063048614277,0.40657788111543813,0.4059867592995302,0.4053972587556762,0.40480937323104227,0.40422309650254307,0.4036384223766831,0.40305534468939785,0.40247385730589663,0.4018939541205054,0.40131562905651147,0.40073887606600866,0.40016368912974226,0.3995900622569569,0.39901798948524336,0.3984474648803872,0.3978784825362179,0.39731103657445893,0.39674512114457877,0.39618073042364216,0.39561785861616316,0.3950564999539581,0.3944966486959995,0.3939382991282715,0.39338144556362514,0.39282608234163524,0.3922722038284572,0.3917198044166854,0.3911688785252124,0.39061942059908766,0.39007142510937887,0.3895248865530327,0.3889797994527371,0.3884361583567833,0.38789395783893027,0.3873531924982684,0.38681385695908455,0.38627594587072794,0.38573945390747655,0.38520437576840466,0.38467070617725024,0.3841384398822843,0.3836075716561801,0.3830780962958833,0.38255000862248284,0.3820233034810829,0.3814979757406746,0.38097402029401006,0.38045143205747506,0.3799302059709646,0.37941033699775706,0.37889182012439093,0.37837465036054113,0.377858822738896,0.3773443323150357,0.3768311741673107,0.3763193433967211,0.37580883512679647,0.3752996445034771,0.3747917666949947,0.3742851968917548,0.37377993030621964,0.373275962172791,0.37277328774769475,0.372271902308865,0.37177180115583,0.3712729796095977,0.3707754330125424,0.3702791567282923,0.3697841461416171,0.36929039665831653,0.3687979037051098,0.36830666272952495,0.3678166691997898,0.3673279186047223,0.3668404064536228,0.3663541282761662,0.3658690796222942,0.3653852560621097,0.36490265318577025,0.3644212666033829,0.36394109194489954,0.3634621248600127,0.3629843610180521,0.3625077961078814,0.3620324258377963,0.36155824593542246,0.3610852521476141,0.3606134402403539,0.3601428059986526,0.35967334522644934,0.359205053746513,0.3587379274003439,0.3582719620480756,0.35780715356837794,0.35734349785836034,0.3568809908334755,0.35641962842742403,0.3559594065920588,0.3555003212972912,0.3550423685309967,0.35458554429892125,0.3541298446245887,0.3536752655492083,0.3532218031315828,0.3527694534480168,0.3523182125922265,0.351868076675249,0.35141904182535233,0.3509711041879467,0.3505242599254952,0.3500785052174258,0.3496338362600433,0.34919024926644243,0.3487477404664208,0.3483063061063925,0.3478659424493026,0.34742664577454163,0.3469884123778606,0.34655123857128706,0.34611512068304084,0.34568005505745086,0.3452460380548721,0.3448130660516031,0.34438113543980436,0.34395024262741597,0.34352038403807744,0.34309155611104675,0.34266375530112,0.3422369780785519,0.34181122092897676,0.3413864803533293,0.34096275286776645,0.3405400350035895,0.3401183233071667,0.3396976143398559,0.3392779046779285,0.33885919091249295,0.33844146964941896,0.3380247375092623,0.3376089911271902,0.33719422715290664,0.33678044225057796,0.33636763309876017,0.33595579639032497,0.3355449288323874,0.3351350271462332,0.3347260880672471,0.334318108344841,0.3339110847423831,0.3335050140371271,0.33309989302014176,0.3326957184962408,0.3322924872839138,0.3318901962152567,0.33148884213590313,0.33108842190495585,0.3306889323949192,0.3302903704916309,0.3298927330941953,0.32949601711491633,0.32910021947923096,0.3287053371256433,0.3283113670056585,0.3279183060837179,0.32752615133713364,0.3271348997560241,0.32674454834324984,0.3263550941143493,0.3259665340974758,0.3255788653333337,0.32519208487511625,0.3248061897884426,0.32442117715129576,0.32403704405396105,0.3236537875989644,0.32327140490101147,0.32288989308692656,0.32250924929559277,0.3221294706778913,0.3217505543966422],"x":[1.1,1.103784860557769,1.1075697211155378,1.1113545816733068,1.1151394422310756,1.1189243027888447,1.1227091633466135,1.1264940239043826,1.1302788844621514,1.1340637450199202,1.1378486055776893,1.1416334661354581,1.1454183266932272,1.149203187250996,1.1529880478087648,1.156772908366534,1.1605577689243027,1.1643426294820718,1.1681274900398406,1.1719123505976095,1.1756972111553785,1.1794820717131473,1.1832669322709164,1.1870517928286852,1.1908366533864543,1.1946215139442231,1.198406374501992,1.202191235059761,1.2059760956175298,1.2097609561752989,1.2135458167330677,1.2173306772908365,1.2211155378486056,1.2249003984063744,1.2286852589641435,1.2324701195219123,1.2362549800796814,1.2400398406374502,1.243824701195219,1.247609561752988,1.251394422310757,1.255179282868526,1.2589641434262948,1.2627490039840636,1.2665338645418327,1.2703187250996015,1.2741035856573706,1.2778884462151394,1.2816733067729085,1.2854581673306773,1.2892430278884461,1.2930278884462152,1.296812749003984,1.300597609561753,1.304382470119522,1.3081673306772907,1.3119521912350598,1.3157370517928286,1.3195219123505977,1.3233067729083665,1.3270916334661356,1.3308764940239044,1.3346613545816732,1.3384462151394423,1.3422310756972111,1.3460159362549802,1.349800796812749,1.3535856573705178,1.357370517928287,1.3611553784860557,1.3649402390438248,1.3687250996015936,1.3725099601593624,1.3762948207171315,1.3800796812749003,1.3838645418326694,1.3876494023904382,1.3914342629482073,1.395219123505976,1.399003984063745,1.402788844621514,1.4065737051792828,1.4103585657370519,1.4141434262948207,1.4179282868525895,1.4217131474103586,1.4254980079681274,1.4292828685258965,1.4330677290836653,1.4368525896414344,1.4406374501992032,1.444422310756972,1.448207171314741,1.45199203187251,1.455776892430279,1.4595617529880478,1.4633466135458166,1.4671314741035857,1.4709163346613545,1.4747011952191236,1.4784860557768924,1.4822709163346615,1.4860557768924303,1.4898406374501991,1.4936254980079682,1.497410358565737,1.501195219123506,1.504980079681275,1.5087649402390437,1.5125498007968128,1.5163346613545816,1.5201195219123507,1.5239043824701195,1.5276892430278886,1.5314741035856574,1.5352589641434262,1.5390438247011953,1.542828685258964,1.5466135458167332,1.550398406374502,1.5541832669322708,1.5579681274900399,1.5617529880478087,1.5655378486055778,1.5693227091633466,1.5731075697211154,1.5768924302788845,1.5806772908366533,1.5844621513944224,1.5882470119521912,1.5920318725099603,1.595816733067729,1.599601593625498,1.603386454183267,1.6071713147410358,1.6109561752988049,1.6147410358565737,1.6185258964143425,1.6223107569721116,1.6260956175298804,1.6298804780876495,1.6336653386454183,1.6374501992031874,1.6412350597609562,1.645019920318725,1.648804780876494,1.652589641434263,1.656374501992032,1.6601593625498008,1.6639442231075696,1.6677290836653387,1.6715139442231075,1.6752988047808766,1.6790836653386454,1.6828685258964144,1.6866533864541833,1.690438247011952,1.6942231075697212,1.69800796812749,1.701792828685259,1.7055776892430279,1.7093625498007967,1.7131474103585658,1.7169322709163346,1.7207171314741037,1.7245019920318725,1.7282868525896415,1.7320717131474104,1.7358565737051792,1.7396414342629483,1.743426294820717,1.7472111553784861,1.750996015936255,1.7547808764940238,1.7585657370517929,1.7623505976095617,1.7661354581673308,1.7699203187250996,1.7737051792828684,1.7774900398406375,1.7812749003984063,1.7850597609561754,1.7888446215139442,1.7926294820717132,1.796414342629482,1.800199203187251,1.80398406374502,1.8077689243027888,1.8115537848605578,1.8153386454183267,1.8191235059760955,1.8229083665338646,1.8266932270916334,1.8304780876494025,1.8342629482071713,1.8380478087649403,1.8418326693227092,1.845617529880478,1.849402390438247,1.853187250996016,1.856972111553785,1.8607569721115538,1.8645418326693226,1.8683266932270917,1.8721115537848605,1.8758964143426295,1.8796812749003984,1.8834661354581674,1.8872509960159363,1.891035856573705,1.8948207171314742,1.898605577689243,1.902390438247012,1.9061752988047809,1.9099601593625497,1.9137450199203188,1.9175298804780876,1.9213147410358566,1.9250996015936255,1.9288844621513945,1.9326693227091634,1.9364541832669322,1.9402390438247012,1.94402390438247,1.9478087649402391,1.951593625498008,1.9553784860557768,1.9591633466135459,1.9629482071713147,1.9667330677290837,1.9705179282868526,1.9743027888446214,1.9780876494023905,1.9818725099601593,1.9856573705179283,1.9894422310756972,1.9932270916334662,1.997011952191235,2.000796812749004,2.004581673306773,2.008366533864542,2.0121513944223106,2.0159362549800797,2.0197211155378487,2.0235059760956173,2.0272908366533864,2.0310756972111554,2.0348605577689245,2.038645418326693,2.042430278884462,2.046215139442231,2.05,2.053784860557769,2.057569721115538,2.061354581673307,2.0651394422310756,2.0689243027888446,2.0727091633466137,2.0764940239043823,2.0802788844621514,2.0840637450199204,2.087848605577689,2.091633466135458,2.095418326693227,2.099203187250996,2.102988047808765,2.106772908366534,2.110557768924303,2.1143426294820715,2.1181274900398406,2.1219123505976096,2.1256972111553787,2.1294820717131473,2.1332669322709163,2.1370517928286854,2.140836653386454,2.144621513944223,2.148406374501992,2.152191235059761,2.15597609561753,2.159760956175299,2.163545816733068,2.1673306772908365,2.1711155378486056,2.1749003984063746,2.1786852589641432,2.1824701195219123,2.1862549800796813,2.1900398406374504,2.193824701195219,2.197609561752988,2.201394422310757,2.2051792828685257,2.2089641434262948,2.212749003984064,2.216533864541833,2.2203187250996015,2.2241035856573705,2.2278884462151396,2.231673306772908,2.2354581673306773,2.2392430278884463,2.243027888446215,2.246812749003984,2.250597609561753,2.254382470119522,2.2581673306772907,2.2619521912350598,2.265737051792829,2.2695219123505974,2.2733067729083665,2.2770916334661355,2.2808764940239046,2.284661354581673,2.2884462151394422,2.2922310756972113,2.29601593625498,2.299800796812749,2.303585657370518,2.307370517928287,2.3111553784860557,2.3149402390438247,2.318725099601594,2.3225099601593624,2.3262948207171315,2.3300796812749005,2.333864541832669,2.337649402390438,2.3414342629482072,2.3452191235059763,2.349003984063745,2.352788844621514,2.356573705179283,2.3603585657370516,2.3641434262948207,2.3679282868525897,2.3717131474103588,2.3754980079681274,2.3792828685258964,2.3830677290836655,2.386852589641434,2.390637450199203,2.394422310756972,2.398207171314741,2.40199203187251,2.405776892430279,2.409561752988048,2.4133466135458166,2.4171314741035856,2.4209163346613547,2.4247011952191233,2.4284860557768924,2.4322709163346614,2.4360557768924305,2.439840637450199,2.443625498007968,2.447410358565737,2.451195219123506,2.454980079681275,2.458764940239044,2.462549800796813,2.4663346613545816,2.4701195219123506,2.4739043824701197,2.4776892430278883,2.4814741035856573,2.4852589641434264,2.489043824701195,2.492828685258964,2.496613545816733,2.500398406374502,2.504183266932271,2.50796812749004,2.511752988047809,2.5155378486055775,2.5193227091633466,2.5231075697211156,2.5268924302788847,2.5306772908366533,2.5344621513944223,2.5382470119521914,2.54203187250996,2.545816733067729,2.549601593625498,2.553386454183267,2.5571713147410358,2.560956175298805,2.564741035856574,2.5685258964143425,2.5723107569721115,2.5760956175298806,2.579880478087649,2.5836653386454183,2.5874501992031873,2.5912350597609564,2.595019920318725,2.598804780876494,2.602589641434263,2.6063745019920317,2.6101593625498007,2.61394422310757,2.617729083665339,2.6215139442231075,2.6252988047808765,2.6290836653386456,2.632868525896414,2.6366533864541832,2.6404382470119523,2.644223107569721,2.64800796812749,2.651792828685259,2.655577689243028,2.6593625498007967,2.6631474103585657,2.666932270916335,2.6707171314741034,2.6745019920318724,2.6782868525896415,2.6820717131474106,2.685856573705179,2.689641434262948,2.6934262948207173,2.697211155378486,2.700996015936255,2.704780876494024,2.708565737051793,2.7123505976095617,2.7161354581673307,2.7199203187250998,2.7237051792828684,2.7274900398406374,2.7312749003984065,2.735059760956175,2.738844621513944,2.742629482071713,2.7464143426294823,2.750199203187251,2.75398406374502,2.757768924302789,2.7615537848605576,2.7653386454183266,2.7691235059760957,2.7729083665338647,2.7766932270916334,2.7804780876494024,2.7842629482071715,2.78804780876494,2.791832669322709,2.795617529880478,2.799402390438247,2.803187250996016,2.806972111553785,2.810756972111554,2.8145418326693226,2.8183266932270916,2.8221115537848607,2.8258964143426293,2.8296812749003983,2.8334661354581674,2.8372509960159364,2.841035856573705,2.844820717131474,2.848605577689243,2.8523904382470118,2.856175298804781,2.85996015936255,2.863745019920319,2.8675298804780875,2.8713147410358566,2.8750996015936257,2.8788844621513943,2.8826693227091633,2.8864541832669324,2.890239043824701,2.89402390438247,2.897808764940239,2.901593625498008,2.9053784860557768,2.909163346613546,2.912948207171315,2.9167330677290835,2.9205179282868525,2.9243027888446216,2.9280876494023906,2.9318725099601592,2.9356573705179283,2.9394422310756974,2.943227091633466,2.947011952191235,2.950796812749004,2.954581673306773,2.9583665338645417,2.962151394422311,2.96593625498008,2.9697211155378485,2.9735059760956175,2.9772908366533866,2.981075697211155,2.9848605577689242,2.9886454183266933,2.9924302788844623,2.996215139442231,3.0]} \ No newline at end of file diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl index ec0511782b24..236930d0c4fd 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl @@ -35,8 +35,10 @@ julia> x = linspace( -1000.0, 1000.0, 2001 ); julia> gen( x, \"data.json\" ); ``` """ -function gen( x, name ) - y = acot( x ); +function gen(range, name) + + x = collect(range) + y = acot.(x) # Store data to be written to file as a collection: data = Dict([ @@ -45,48 +47,49 @@ function gen( x, name ) ]); # Based on the script directory, create an output filepath: - filepath = joinpath( dir, name ); + filepath = joinpath(dir, name); # Write the data to the output filepath as JSON: - outfile = open( filepath, "w" ); - write( outfile, JSON.json(data) ); - close( outfile ); + outfile = open(filepath, "w"); + write(outfile, JSON.json(data)); + close(outfile); end # Get the filename: file = @__FILE__; # Extract the directory in which this file resides: -dir = dirname( file ); +dir = dirname(file); # Positive medium values: -x = linspace( 1.1, 3.0, 503 ); +x = range(1.1, stop=3.0, length=503); + gen( x, "medium_positive.json" ); # Large positive values: -x = linspace( 3.0, 28.0, 503 ); +x = range(3.0, stop=28.0, length=503); gen( x, "large_positive.json" ); # Larger positive values: -x = linspace( 28.0, 100.0, 503 ); +x = range(28.0, stop=100.0, length=503); gen( x, "larger_positive.json" ); # Huge positive values: -x = linspace( 1.0e300, 1.0e308, 1003 ); +x = range(1.0e300, stop=1.0e308, length=1003); gen( x, "huge_positive.json" ); # Negative medium values: -x = linspace( -1.1, -3.0, 503 ); +x = range(-1.1, stop=-3.0, length=503); gen( x, "medium_negative.json" ); # Large negative values: -x = linspace( -3.0, -28.0, 503 ); +x = range(-3.0, stop=-28.0, length=503); gen( x, "large_negative.json" ); # Larger negative values: -x = linspace( -28.0, -100.0, 503 ); +x = range(-28.0, stop=-100.0, length=503); gen( x, "larger_negative.json" ); # Huge negative values: -x = linspace( -1.0e300, -1.0e308, 1003 ); +x = range(-1.0e300, stop=-1.0e308, length=1003); gen( x, "huge_negative.json" ); diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/test.js b/lib/node_modules/@stdlib/math/base/special/acot/test/test.js index 29dda52b976f..9074c0ea7585 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/test.js @@ -25,7 +25,7 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' ); var randu = require( '@stdlib/random/base/randu' ); var EPS = require( '@stdlib/constants/math/float64-eps' ); var abs = require( '@stdlib/math/base/special/abs' ); -var acoth = require( './../lib' ); +var acot = require( './../lib' ); // FIXTURES // @@ -44,7 +44,7 @@ var hugeNegative = require( './fixtures/julia/huge_negative.json' ); tape( 'main export is a function', function test( t ) { t.ok( true, __filename ); - t.true( typeof acoth, 'function', 'main export is a function' ); + t.true( typeof acot, 'function', 'main export is a function' ); t.end(); }); @@ -59,7 +59,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for medium positiv x = mediumPositive.x; expected = mediumPositive.expected; for ( i = 0; i < x.length; i++ ) { - y = acoth( x[ i ] ); + y = acot( x[ i ] ); if ( y === expected[ i ] ) { t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); } else { @@ -82,7 +82,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for medium negativ x = mediumNegative.x; expected = mediumNegative.expected; for ( i = 0; i < x.length; i++ ) { - y = acoth( x[ i ] ); + y = acot( x[ i ] ); if ( y === expected[ i ] ) { t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); } else { @@ -105,7 +105,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for large positive x = largePositive.x; expected = largePositive.expected; for ( i = 0; i < x.length; i++ ) { - y = acoth( x[ i ] ); + y = acot( x[ i ] ); if ( y === expected[ i ] ) { t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); } else { @@ -128,7 +128,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for large negative x = largeNegative.x; expected = largeNegative.expected; for ( i = 0; i < x.length; i++ ) { - y = acoth( x[ i ] ); + y = acot( x[ i ] ); if ( y === expected[ i ] ) { t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); } else { @@ -151,7 +151,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for larger positiv x = largerPositive.x; expected = largerPositive.expected; for ( i = 0; i < x.length; i++ ) { - y = acoth( x[ i ] ); + y = acot( x[ i ] ); if ( y === expected[ i ] ) { t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); } else { @@ -174,7 +174,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for larger negativ x = largerNegative.x; expected = largerNegative.expected; for ( i = 0; i < x.length; i++ ) { - y = acoth( x[ i ] ); + y = acot( x[ i ] ); if ( y === expected[ i ] ) { t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); } else { @@ -197,7 +197,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for huge positive x = hugePositive.x; expected = hugePositive.expected; for ( i = 0; i < x.length; i++ ) { - y = acoth( x[ i ] ); + y = acot( x[ i ] ); if ( y === expected[ i ] ) { t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); } else { @@ -220,7 +220,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for huge negative x = hugeNegative.x; expected = hugeNegative.expected; for ( i = 0; i < x.length; i++ ) { - y = acoth( x[ i ] ); + y = acot( x[ i ] ); if ( y === expected[ i ] ) { t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i]+'.' ); } else { @@ -233,7 +233,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for huge negative }); tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { - var v = acoth( NaN ); + var v = acot( NaN ); t.equal( isnan( v ), true, 'returns NaN' ); t.end(); }); @@ -244,7 +244,7 @@ tape( 'the function returns `NaN` if provided a value on the open interval (-1,1 for ( i = 0; i < 1e3; i++ ) { v = (randu() * 0.99) - 0.99; - t.equal( isnan( acoth( v ) ), true, 'returns NaN when provided '+v ); + t.equal( isnan( acot( v ) ), true, 'returns NaN when provided '+v ); } t.end(); }); From bb154496ba3bf0aae865159e794bfdfe0bf3a740 Mon Sep 17 00:00:00 2001 From: JithinKS97 Date: Tue, 23 Jun 2020 12:22:06 +0530 Subject: [PATCH 05/10] removed unwanted test case --- .../math/base/special/acot/test/test.js | 26 ++++++------------- 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/test.js b/lib/node_modules/@stdlib/math/base/special/acot/test/test.js index 9074c0ea7585..fb917968e045 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/test.js @@ -48,7 +48,7 @@ tape( 'main export is a function', function test( t ) { t.end(); }); -tape( 'the function computes the inverse hyperbolic cotangent for medium positive values', function test( t ) { +tape( 'the function computes the inverse cotangent for medium positive values', function test( t ) { var expected; var delta; var tol; @@ -71,7 +71,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for medium positiv t.end(); }); -tape( 'the function computes the inverse hyperbolic cotangent for medium negative values', function test( t ) { +tape( 'the function computes the inverse cotangent for medium negative values', function test( t ) { var expected; var delta; var tol; @@ -94,7 +94,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for medium negativ t.end(); }); -tape( 'the function computes the inverse hyperbolic cotangent for large positive values', function test( t ) { +tape( 'the function computes the inverse cotangent for large positive values', function test( t ) { var expected; var delta; var tol; @@ -117,7 +117,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for large positive t.end(); }); -tape( 'the function computes the inverse hyperbolic cotangent for large negative values', function test( t ) { +tape( 'the function computes the inverse cotangent for large negative values', function test( t ) { var expected; var delta; var tol; @@ -140,7 +140,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for large negative t.end(); }); -tape( 'the function computes the inverse hyperbolic cotangent for larger positive values', function test( t ) { +tape( 'the function computes the inverse cotangent for larger positive values', function test( t ) { var expected; var delta; var tol; @@ -163,7 +163,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for larger positiv t.end(); }); -tape( 'the function computes the inverse hyperbolic cotangent for larger negative values', function test( t ) { +tape( 'the function computes the inverse cotangent for larger negative values', function test( t ) { var expected; var delta; var tol; @@ -186,7 +186,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for larger negativ t.end(); }); -tape( 'the function computes the inverse hyperbolic cotangent for huge positive values', function test( t ) { +tape( 'the function computes the inverse cotangent for huge positive values', function test( t ) { var expected; var delta; var tol; @@ -209,7 +209,7 @@ tape( 'the function computes the inverse hyperbolic cotangent for huge positive t.end(); }); -tape( 'the function computes the inverse hyperbolic cotangent for huge negative values', function test( t ) { +tape( 'the function computes the inverse cotangent for huge negative values', function test( t ) { var expected; var delta; var tol; @@ -238,13 +238,3 @@ tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { t.end(); }); -tape( 'the function returns `NaN` if provided a value on the open interval (-1,1)', function test( t ) { - var v; - var i; - - for ( i = 0; i < 1e3; i++ ) { - v = (randu() * 0.99) - 0.99; - t.equal( isnan( acot( v ) ), true, 'returns NaN when provided '+v ); - } - t.end(); -}); From 8bd1963b463b53b0121aa24056167796f9ea69b4 Mon Sep 17 00:00:00 2001 From: JithinKS97 Date: Tue, 23 Jun 2020 12:40:07 +0530 Subject: [PATCH 06/10] updated docs --- .../@stdlib/math/base/special/acot/README.md | 34 +++++++---------- .../base/special/acot/benchmark/benchmark.js | 2 +- .../base/special/acot/docs/types/index.d.ts | 32 +++++++++------- .../math/base/special/acot/docs/types/test.ts | 22 +++++------ .../math/base/special/acot/examples/index.js | 4 +- .../math/base/special/acot/lib/index.js | 37 +++++++++++-------- .../math/base/special/acot/test/test.js | 4 +- 7 files changed, 68 insertions(+), 67 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/README.md b/lib/node_modules/@stdlib/math/base/special/acot/README.md index 5397efe3bf2e..8c8de2f78299 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acot/README.md @@ -18,39 +18,31 @@ limitations under the License. --> -# acoth +# acot -> Compute the [inverse hyperbolic cotangent][hyperbolic-arctangent] of a number. +> Compute the [inverse cotangent][arctangent] of a number.
## Usage ```javascript -var acoth = require( '@stdlib/math/base/special/acoth' ); +var acot = require( '@stdlib/math/base/special/acot' ); ``` -#### acoth( x ) +#### acot( x ) -Computes the [inverse hyperbolic cotangent][hyperbolic-arctangent] of a `number` (in radians). +Computes the [inverse cotangent][arctangent] of a `number` (in radians). ```javascript -var v = acoth( 2.0 ); -// returns ~0.5493 +var v = acot( 2.0 ); +// returns ~0.4636 -v = acoth( 1.0 ); -// returns Infinity +v = acot( Infinity ); +// returns 0 ``` -The domain of the inverse hyperbolic cotangent is the union of the intervals `(-inf,-1]` and `[1,inf)`. If provided a value on the open interval `(-1,1)`, the function returns `NaN`. - -```javascript -var v = acoth( 0.0 ); -// returns NaN - -v = acoth( 0.5 ); -// returns NaN -``` +The domain of the inverse cotangent is `(-inf, inf)`.
@@ -64,13 +56,13 @@ v = acoth( 0.5 ); ```javascript var linspace = require( '@stdlib/math/utils/linspace' ); -var acoth = require( '@stdlib/math/base/special/acoth' ); +var acot = require( '@stdlib/math/base/special/acot' ); var x = linspace( 1.0, 5.0, 100 ); var i; for ( i = 0; i < x.length; i++ ) { - console.log( acoth( x[ i ] ) ); + console.log( acot( x[ i ] ) ); } ``` @@ -80,7 +72,7 @@ for ( i = 0; i < x.length; i++ ) { diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js index 6f58e3d61f1f..004b36fed4c0 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js @@ -37,7 +37,7 @@ bench( pkg, function benchmark( b ) { b.tic(); for ( i = 0; i < b.iterations; i++ ) { x = ( randu()*100.0 ) + 1.1; - y = acoth( x ); + y = acot( x ); if ( isnan( y ) ) { b.fail( 'should not return NaN' ); } diff --git a/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts index 71c8d3bad561..8078d74e69a5 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/index.d.ts @@ -19,34 +19,38 @@ // TypeScript Version: 2.0 /** -* Computes the inverse hyperbolic cotangent of a number. +* Computes the inverse cotangent of a number. * -* @param x - input value -* @returns inverse hyperbolic cotangent (in radians) +* @param {number} x - input value +* @returns {number} inverse cotangent (in radians) * * @example -* var v = acoth( 2.0 ); -* // returns ~0.5493 +* var v = acot( 2.0 ); +* // returns ~0.4636 * * @example -* var v = acoth( 0.0 ); -* // returns NaN +* var v = acot( 0.0 ); +* // returns ~1.5708 * * @example -* var v = acoth( 0.5 ); -* // returns NaN +* var v = acot( 0.5 ); +* // returns ~1.1071 * * @example -* var v = acoth( 1.0 ); -* // returns Infinity +* var v = acot( 1.0 ); +* // returns ~0.7854 * * @example -* var v = acoth( NaN ); +* var v = acot( NaN ); * // returns NaN +* +* @example +* var v = acot(Infinity) +* // returns 0 */ -declare function acoth( x: number ): number; +declare function acot( x: number ): number; // EXPORTS // -export = acoth; +export = acot; diff --git a/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts index c5a81d31982c..100f726334cb 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts +++ b/lib/node_modules/@stdlib/math/base/special/acot/docs/types/test.ts @@ -16,29 +16,29 @@ * limitations under the License. */ -import acoth = require( './index' ); +import acot = require( './index' ); // TESTS // // The function returns a number... { - acoth( 8 ); // $ExpectType number + acot( 8 ); // $ExpectType number } // The function does not compile if provided a value other than a number... { - acoth( true ); // $ExpectError - acoth( false ); // $ExpectError - acoth( null ); // $ExpectError - acoth( undefined ); // $ExpectError - acoth( '5' ); // $ExpectError - acoth( [] ); // $ExpectError - acoth( {} ); // $ExpectError - acoth( ( x: number ): number => x ); // $ExpectError + acot( true ); // $ExpectError + acot( false ); // $ExpectError + acot( null ); // $ExpectError + acot( undefined ); // $ExpectError + acot( '5' ); // $ExpectError + acot( [] ); // $ExpectError + acot( {} ); // $ExpectError + acot( ( x: number ): number => x ); // $ExpectError } // The function does not compile if provided insufficient arguments... { - acoth(); // $ExpectError + acot(); // $ExpectError } diff --git a/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js b/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js index fc2a5e8eb981..487f6202ffa7 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/examples/index.js @@ -19,11 +19,11 @@ 'use strict'; var linspace = require( '@stdlib/math/utils/linspace' ); -var acoth = require( './../lib' ); +var acot = require( './../lib' ); var x = linspace( 1.0, 5.0, 100 ); var i; for ( i = 0; i < x.length; i++ ) { - console.log( 'acoth(%d) = %d', x[ i ], acoth( x[ i ] ) ); + console.log( 'acot(%d) = %d', x[ i ], acot( x[ i ] ) ); } diff --git a/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js b/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js index a62e55ffc1e1..e89d10d31924 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/lib/index.js @@ -19,34 +19,41 @@ 'use strict'; /** -* Compute the hyperbolic arccosine of a number. +* Computes the inverse cotangent of a number. * -* @module @stdlib/math/base/special/acoth +* @param {number} x - input value +* @returns {number} inverse cotangent (in radians) * * @example -* var acoth = require( '@stdlib/math/base/special/acoth' ); +* var v = acot( 2.0 ); +* // returns ~0.4636 * -* var v = acoth( 2.0 ); -* // returns ~0.5493 -* -* v = acoth( 0.0 ); -* // returns NaN +* @example +* var v = acot( 0.0 ); +* // returns ~1.5708 * -* v = acoth( 0.5 ); -* // returns NaN +* @example +* var v = acot( 0.5 ); +* // returns ~1.1071 * -* v = acoth( 1.0 ); -* // returns Infinity +* @example +* var v = acot( 1.0 ); +* // returns ~0.7854 * -* v = acoth( NaN ); +* @example +* var v = acot( NaN ); * // returns NaN +* +* @example +* var v = acot(Infinity) +* // returns 0 */ // MODULES // -var acoth = require( './main.js' ); +var acot = require( './main.js' ); // EXPORTS // -module.exports = acoth; +module.exports = acot; diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/test.js b/lib/node_modules/@stdlib/math/base/special/acot/test/test.js index fb917968e045..c57d0f63389f 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/test.js @@ -22,7 +22,6 @@ var tape = require( 'tape' ); var isnan = require( '@stdlib/math/base/assert/is-nan' ); -var randu = require( '@stdlib/random/base/randu' ); var EPS = require( '@stdlib/constants/math/float64-eps' ); var abs = require( '@stdlib/math/base/special/abs' ); var acot = require( './../lib' ); @@ -236,5 +235,4 @@ tape( 'the function returns `NaN` if provided `NaN`', function test( t ) { var v = acot( NaN ); t.equal( isnan( v ), true, 'returns NaN' ); t.end(); -}); - +}); \ No newline at end of file From 652b51cc4f68505d3104e622cd534ad768fe3e6b Mon Sep 17 00:00:00 2001 From: JithinKS97 Date: Tue, 23 Jun 2020 12:43:42 +0530 Subject: [PATCH 07/10] converted acoth to acot and atanh to atan in benchmark files --- .../@stdlib/math/base/special/acot/benchmark/benchmark.js | 2 +- .../math/base/special/acot/benchmark/c/benchmark.c | 6 +++--- .../math/base/special/acot/benchmark/julia/benchmark.jl | 2 +- .../math/base/special/acot/benchmark/python/benchmark.py | 8 ++++---- .../math/base/special/acot/benchmark/r/DESCRIPTION | 2 +- .../math/base/special/acot/benchmark/r/benchmark.R | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js index 004b36fed4c0..67475a2da67b 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/benchmark.js @@ -24,7 +24,7 @@ var bench = require( '@stdlib/bench' ); var randu = require( '@stdlib/random/base/randu' ); var isnan = require( '@stdlib/math/base/assert/is-nan' ); var pkg = require( './../package.json' ).name; -var acoth = require( './../lib' ); +var acot = require( './../lib' ); // MAIN // diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c index 72e910f8153b..0b04a4402cf6 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c @@ -17,14 +17,14 @@ */ /** -* Benchmark `acoth`. +* Benchmark `acot`. */ #include #include #include #include -#define NAME "acoth" +#define NAME "acot" #define ITERATIONS 1000000 #define REPEATS 3 @@ -100,7 +100,7 @@ double benchmark() { t = tic(); for ( i = 0; i < ITERATIONS; i++ ) { x = ( 100.0*rand_double() ) + 1.1; - y = atanh( 1.0/x ); + y = atan( 1.0/x ); if ( y != y ) { printf( "should not return NaN\n" ); break; diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl index 9bdab609c104..54ad3e93713b 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl @@ -19,7 +19,7 @@ import BenchmarkTools # Benchmark variables: -name = "acoth"; +name = "acot"; repeats = 3; """ diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py index 5014ca678c83..864f1468de5d 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/python/benchmark.py @@ -16,12 +16,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""Benchmark acoth.""" +"""Benchmark acot.""" from __future__ import print_function import timeit -NAME = "acoth" +NAME = "acot" REPEATS = 3 ITERATIONS = 1000000 @@ -72,8 +72,8 @@ def print_results(elapsed): def benchmark(): """Run the benchmark and print benchmark results.""" - setup = "from math import atanh; from random import random;" - stmt = "y = atanh(1.0 / ((100.0*random()) + 1.1))" + setup = "from math import atan; from random import random;" + stmt = "y = atan(1.0 / ((100.0*random()) + 1.1))" t = timeit.Timer(stmt, setup=setup) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/DESCRIPTION b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/DESCRIPTION index d309fb28ec36..ec712c61b12d 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/DESCRIPTION +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/DESCRIPTION @@ -1,4 +1,4 @@ -Package: acoth-benchmarks +Package: acot-benchmarks Title: Benchmarks Version: 0.0.0 Authors@R: person("stdlib", "js", role = c("aut","cre")) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R index 138d84f022f6..f8e2591f101f 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/r/benchmark.R @@ -25,7 +25,7 @@ options( digits = 16 ); #' main(); main <- function() { # Define benchmark parameters: - name <- "acoth"; + name <- "acot"; iterations <- 1000000L; repeats <- 3; @@ -85,7 +85,7 @@ main <- function() { #' elapsed <- benchmark( 10000L ); benchmark <- function( iterations ) { # Run the benchmarks: - results <- microbenchmark::microbenchmark( atanh( 1.0 / ( (100.0*runif(1)) + 1.1 ) ), times = iterations ); + results <- microbenchmark::microbenchmark( atan( 1.0 / ( (100.0*runif(1)) + 1.1 ) ), times = iterations ); # Sum all the raw timing results to get a total "elapsed" time: elapsed <- sum( results$time ); From a65288bb2289f4399a0067adf897ec6a8ab501c5 Mon Sep 17 00:00:00 2001 From: JithinKS97 Date: Tue, 23 Jun 2020 12:48:55 +0530 Subject: [PATCH 08/10] updated repl doc --- .../@stdlib/math/base/special/acot/README.md | 10 +++++++++- .../special/acot/benchmark/julia/benchmark.jl | 2 +- .../math/base/special/acot/docs/repl.txt | 17 +++++++---------- .../@stdlib/math/base/special/acot/lib/main.js | 2 +- .../special/acot/test/fixtures/julia/runner.jl | 10 +++++----- 5 files changed, 23 insertions(+), 18 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/README.md b/lib/node_modules/@stdlib/math/base/special/acot/README.md index 8c8de2f78299..8e751df875f2 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acot/README.md @@ -42,7 +42,15 @@ v = acot( Infinity ); // returns 0 ``` -The domain of the inverse cotangent is `(-inf, inf)`. +The domain of the inverse cotangent is `(-inf, inf)` and range is `(-π/2,π/2]`. + +```javascript +var v = acot( 100.00 ); +// returns ~0.0099 + +v = acot( -200.00 ); +// returns ~-0.0049 +``` diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl index 54ad3e93713b..e7826aa5ef0b 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl @@ -106,7 +106,7 @@ julia> out = benchmark(); ``` """ function benchmark() - t = BenchmarkTools.@benchmark acoth( (100.0*rand()) + 1.1 ) samples=1e6 + t = BenchmarkTools.@benchmark acot( (100.0*rand()) + 1.1 ) samples=1e6 # Compute the total "elapsed" time and convert from nanoseconds to seconds: s = sum( t.times ) / 1.0e9; diff --git a/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt index f67227cf0721..c40ac1498b60 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt +++ b/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt @@ -1,11 +1,8 @@ {{alias}}( x ) - Computes the inverse hyperbolic cotangent of a number. + Computes the inverse cotangent of a number. - The domain of the inverse hyperbolic cotangent is the union of the intervals - (-inf,-1] and [1,inf). - - If provided a value on the open interval (-1,1), the function returns `NaN`. + The domain of the inverse cotangent is (-inf, inf) Parameters ---------- @@ -15,18 +12,18 @@ Returns ------- y: number - Inverse hyperbolic cotangent (in radians). + Inverse cotangent (in radians). Examples -------- > var y = {{alias}}( 2.0 ) - ~0.5493 + ~0.4636 > y = {{alias}}( 0.0 ) - NaN + ~1.5708 > y = {{alias}}( 0.5 ) - NaN + ~1.1071 > y = {{alias}}( 1.0 ) - Infinity + ~0.7854 > y = {{alias}}( NaN ) NaN diff --git a/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js b/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js index bb14eca24ef6..aa20a694b645 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/acot/lib/main.js @@ -56,7 +56,7 @@ var atan = require( '@stdlib/math/base/special/atan' ); * // returns 0 */ function acot( x ) { - return atan( 1.0/x ); + return atan( 1.0/ x ); } // EXPORTS // diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl index 236930d0c4fd..8c498bb9ca35 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl @@ -19,25 +19,25 @@ import JSON """ - gen( x, name ) + gen( domain, name ) Generate fixture data and write to file. # Arguments -* `x`: domain +* `domain`: domain * `name::AbstractString`: output filename # Examples ``` julia -julia> x = linspace( -1000.0, 1000.0, 2001 ); +julia> domain = range( -1000.0, 1000.0, 2001 ); julia> gen( x, \"data.json\" ); ``` """ -function gen(range, name) +function gen(domain, name) - x = collect(range) + x = collect(domain) y = acot.(x) # Store data to be written to file as a collection: From a08cd5aa73c72146dcd13416be7414eabf67ea64 Mon Sep 17 00:00:00 2001 From: JithinKS97 Date: Wed, 24 Jun 2020 06:43:18 +0530 Subject: [PATCH 09/10] Edited domain of function in docs --- .../@stdlib/math/base/special/acot/README.md | 8 +++--- .../math/base/special/acot/docs/repl.txt | 2 +- .../acot/test/fixtures/julia/runner.jl | 26 +++++++++---------- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/README.md b/lib/node_modules/@stdlib/math/base/special/acot/README.md index 8e751df875f2..c7c602c8742d 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/README.md +++ b/lib/node_modules/@stdlib/math/base/special/acot/README.md @@ -20,7 +20,7 @@ limitations under the License. # acot -> Compute the [inverse cotangent][arctangent] of a number. +> Compute the [inverse cotangent][arccotangent] of a number.
@@ -32,7 +32,7 @@ var acot = require( '@stdlib/math/base/special/acot' ); #### acot( x ) -Computes the [inverse cotangent][arctangent] of a `number` (in radians). +Computes the [inverse cotangent][arccotangent] of a `number` (in radians). ```javascript var v = acot( 2.0 ); @@ -42,7 +42,7 @@ v = acot( Infinity ); // returns 0 ``` -The domain of the inverse cotangent is `(-inf, inf)` and range is `(-π/2,π/2]`. +The domain of the inverse cotangent is `R` and range is `(-π/2,π/2]`. ```javascript var v = acot( 100.00 ); @@ -80,7 +80,7 @@ for ( i = 0; i < x.length; i++ ) { diff --git a/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt index c40ac1498b60..f902a1247945 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt +++ b/lib/node_modules/@stdlib/math/base/special/acot/docs/repl.txt @@ -2,7 +2,7 @@ {{alias}}( x ) Computes the inverse cotangent of a number. - The domain of the inverse cotangent is (-inf, inf) + The domain of the inverse cotangent is R and range is (-π/2,π/2] Parameters ---------- diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl index 8c498bb9ca35..a918a590886f 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/runner.jl @@ -35,7 +35,7 @@ julia> domain = range( -1000.0, 1000.0, 2001 ); julia> gen( x, \"data.json\" ); ``` """ -function gen(domain, name) +function gen( domain, name ) x = collect(domain) y = acot.(x) @@ -47,12 +47,12 @@ function gen(domain, name) ]); # Based on the script directory, create an output filepath: - filepath = joinpath(dir, name); + filepath = joinpath( dir, name ); # Write the data to the output filepath as JSON: - outfile = open(filepath, "w"); - write(outfile, JSON.json(data)); - close(outfile); + outfile = open( filepath, "w" ); + write( outfile, JSON.json(data) ); + close( outfile ); end # Get the filename: @@ -62,34 +62,34 @@ file = @__FILE__; dir = dirname(file); # Positive medium values: -x = range(1.1, stop=3.0, length=503); +x = range( 1.1, stop=3.0, length=503 ); gen( x, "medium_positive.json" ); # Large positive values: -x = range(3.0, stop=28.0, length=503); +x = range( 3.0, stop=28.0, length=503 ); gen( x, "large_positive.json" ); # Larger positive values: -x = range(28.0, stop=100.0, length=503); +x = range( 28.0, stop=100.0, length=503 ); gen( x, "larger_positive.json" ); # Huge positive values: -x = range(1.0e300, stop=1.0e308, length=1003); +x = range( 1.0e300, stop=1.0e308, length=1003 ); gen( x, "huge_positive.json" ); # Negative medium values: -x = range(-1.1, stop=-3.0, length=503); +x = range( -1.1, stop=-3.0, length=503 ); gen( x, "medium_negative.json" ); # Large negative values: -x = range(-3.0, stop=-28.0, length=503); +x = range( -3.0, stop=-28.0, length=503 ); gen( x, "large_negative.json" ); # Larger negative values: -x = range(-28.0, stop=-100.0, length=503); +x = range( -28.0, stop=-100.0, length=503 ); gen( x, "larger_negative.json" ); # Huge negative values: -x = range(-1.0e300, stop=-1.0e308, length=1003); +x = range( -1.0e300, stop=-1.0e308, length=1003 ); gen( x, "huge_negative.json" ); From 5b3a58d9d8eed31769fab6dae82e61aa24c9fa1a Mon Sep 17 00:00:00 2001 From: JithinKS97 Date: Thu, 25 Jun 2020 08:12:34 +0530 Subject: [PATCH 10/10] updated version in REQUIRE in test and benchmark --- .../base/special/acot/benchmark/c/benchmark.c | 1 + .../base/special/acot/benchmark/julia/REQUIRE | 4 +-- .../special/acot/benchmark/julia/benchmark.jl | 28 +++++++++---------- .../special/acot/test/fixtures/julia/REQUIRE | 4 +-- 4 files changed, 19 insertions(+), 18 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c index 0b04a4402cf6..c72c4c91dce1 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/c/benchmark.c @@ -23,6 +23,7 @@ #include #include #include +#include #define NAME "acot" #define ITERATIONS 1000000 diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/REQUIRE index 11b2b096cae4..5e9ea1707d69 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/REQUIRE +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/REQUIRE @@ -1,2 +1,2 @@ -julia 0.5 -BenchmarkTools 0.0.8 +julia 1.4.2 +BenchmarkTools 0.5.0 diff --git a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl index e7826aa5ef0b..7862ac4b0a07 100755 --- a/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl +++ b/lib/node_modules/@stdlib/math/base/special/acot/benchmark/julia/benchmark.jl @@ -34,7 +34,7 @@ julia> print_version() ``` """ function print_version() - @printf( "TAP version 13\n" ); + print( "TAP version 13\n" ); end """ @@ -54,12 +54,12 @@ julia> print_summary( 3, 3 ) ``` """ function print_summary( total, passing ) - @printf( "#\n" ); - @printf( "1..%d\n", total ); # TAP plan - @printf( "# total %d\n", total ); - @printf( "# pass %d\n", passing ); - @printf( "#\n" ); - @printf( "# ok\n" ); + print( "#\n" ); + print( "1..%d\n", total ); # TAP plan + print( "# total %d\n", total ); + print( "# pass %d\n", passing ); + print( "#\n" ); + print( "# ok\n" ); end """ @@ -81,11 +81,11 @@ julia> print_results( 1000000, 0.131009101868 ) 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" ); + print( " ---\n" ); + print( " iterations: %d\n", iterations ); + print( " elapsed: %0.9f\n", elapsed ); + print( " rate: %0.9f\n", rate ); + print( " ...\n" ); end """ @@ -132,10 +132,10 @@ julia> main(); function main() print_version(); for i in 1:repeats - @printf( "# julia::%s\n", name ); + print( "# julia::%s\n", name ); results = benchmark(); print_results( results[ 1 ], results[ 2 ] ); - @printf( "ok %d benchmark finished\n", i ); + print( "ok %d benchmark finished\n", i ); end print_summary( repeats, repeats ); end diff --git a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/REQUIRE index becfcba22e9e..7c8193c06e65 100644 --- a/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/REQUIRE +++ b/lib/node_modules/@stdlib/math/base/special/acot/test/fixtures/julia/REQUIRE @@ -1,2 +1,2 @@ -julia 0.5 -JSON 0.5 +julia 1.4.2 +JSON 0.21.0