UNPKG

exactnumber

Version:

Arbitrary-precision decimals. Enables making math calculations with rational numbers, without precision loss.

47 lines (37 loc) 1.44 kB
// import { acosh, asinh, atanh } from './inverse_hyperbolic'; // import { compareError, testStability } from '../testHelper.test'; // describe('hyperbolic', () => { // it('asinh', () => { // expect(asinh(0, 30).toString()).toBe('0'); // for (let i = -4; i <= 4; i += 0.004) { // const jsResult = Math.asinh(i).toString(); // compareError(asinh(i.toString(), 30), jsResult); // } // }); // it('asinh 7/12', () => { // testStability((decimals) => asinh('7/12', decimals), 150); // }); // it('acosh', () => { // expect(() => acosh(0, 30)).toThrow('Out of range'); // expect(acosh(1, 30).toString()).toBe('0'); // for (let i = 1; i <= 8; i += 0.004) { // const jsResult = Math.acosh(i).toString(); // compareError(acosh(i.toString(), 30), jsResult); // } // }); // it('acosh 17/12', () => { // testStability((decimals) => acosh('17/12', decimals), 150); // }); // it('atanh', () => { // expect(atanh(0, 30).toString()).toBe('0'); // expect(() => atanh('-1.1', 30)).toThrow('Out of range'); // expect(() => atanh('1.1', 30)).toThrow('Out of range'); // for (let i = -0.9999; i <= 0.9999; i += 0.002) { // const jsResult = Math.atanh(i).toString(); // compareError(atanh(i.toString(), 30), jsResult); // } // }); // it('atanh 7/12', () => { // testStability((decimals) => atanh('7/12', decimals), 150); // }); // });