File: test.js

package info (click to toggle)
node-stdlib 0.0.96%2Bds1%2B~cs0.0.429-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 421,476 kB
  • sloc: javascript: 1,562,831; ansic: 109,702; lisp: 49,823; cpp: 27,224; python: 7,871; sh: 6,807; makefile: 6,089; fortran: 3,102; awk: 387
file content (141 lines) | stat: -rw-r--r-- 4,236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/**
* @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( './../../../../base/assert/is-nan' );
var abs = require( './../../../../base/special/abs' );
var max = require( './../../../../base/special/max' );
var ln = require( './../../../../base/special/ln' );
var pow = require( './../../../../base/special/pow' );
var PINF = require( '@stdlib/constants/float64/pinf' );
var NINF = require( '@stdlib/constants/float64/ninf' );
var gammaln = require( './../lib' );


// FIXTURES //

var data1 = require( './fixtures/r/data1.json' );
var expected1 = require( './fixtures/r/expected1.json' );
var data2 = require( './fixtures/r/data2.json' );
var expected2 = require( './fixtures/r/expected2.json' );


// TESTS //

tape( 'main export is a function', function test( t ) {
	t.ok( true, __filename );
	t.equal( typeof gammaln, 'function', 'main export is a function' );
	t.end();
});

tape( 'if provided `NaN`, the function returns `NaN`', function test( t ) {
	var v = gammaln( NaN );
	t.equal( isnan( v ), true, 'returns NaN when provided a NaN' );
	t.end();
});

tape( 'the function returns `infinity` when provided `infinity`', function test( t ) {
	var v = gammaln( PINF );
	t.equal( v, PINF, 'returns +Inf when provided +Inf' );

	v = gammaln( NINF );
	t.equal( v, NINF, 'returns -Inf when provided -Inf' );

	t.end();
});

tape( 'the function returns `+infinity` when provided `0`', function test( t ) {
	var v = gammaln( 0.0 );
	t.equal( v, PINF, 'returns +Inf when provided 0' );
	t.end();
});

tape( 'the function returns `+infinity` for x smaller than `-2^52`', function test( t ) {
	var v = gammaln( -pow( 2.0, 53 ) );
	t.equal( v, PINF, 'returns +Inf when provided 2^53' );
	t.end();
});

tape( 'the function returns `-ln(x)` for very small x', function test( t ) {
	var x;
	var v;

	x = 2.0e-90;
	v = gammaln( x );
	t.equal( v, -ln( x ), 'equals -ln(x)' );

	t.end();
});

tape( 'the function evaluates the natural logarithm of the gamma function (positive integers)', function test( t ) {
	var delta;
	var tol;
	var v;
	var i;

	for ( i = 0; i < data1.length; i++ ) {
		v = gammaln( data1[ i ] );
		delta = abs( v - expected1[ i ] );
		tol = 4.75e-15 * max( 1.0, abs( v ), abs( expected1[ i ] ) );
		t.ok( delta <= tol, 'within tolerance. x: ' + data1[ i ] + '. Value: ' + v + '. Expected: ' + expected1[ i ] + '. Tolerance: ' + tol + '.' );
	}
	t.end();
});

tape( 'the function evaluates the natural logarithm of the gamma function (decimal values)', function test( t ) {
	var delta;
	var tol;
	var v;
	var i;

	for ( i = 0; i < data2.length; i++ ) {
		v = gammaln( data2[ i ] );
		delta = abs( v - expected2[ i ] );
		tol = 2.5e-12 * max( 1.0, abs( v ), abs( expected2[ i ] ) );
		t.ok( delta <= tol, 'within tolerance. x: ' + data2[ i ] + '. Value: ' + v + '. Expected: ' + expected2[ i ] + '. Tolerance: ' + tol + '.' );
	}
	t.end();
});

tape( 'the function evaluates the natural logarithm of the gamma function for x > 2^58', function test( t ) {
	var x;
	var v;

	x = pow( 2.0, 59 );
	v = gammaln( x );
	t.equal( v, x * (ln(x)-1.0), 'returns x*(ln(x)-1) for x>2^58' );

	t.end();
});

tape( 'if provided a positive integer, the function returns the natural logarithm of the factorial of (n-1)', function test( t ) {
	t.equal( gammaln( 4.0 ), ln(6.0), 'returns ln(6)' );
	t.equal( gammaln( 5.0 ), ln(24.0), 'returns ln(24)' );
	t.equal( gammaln( 6.0 ), ln(120.0), 'returns ln(120)' );
	t.end();
});

tape( 'returns `+infinity` for `x=-2^51`', function test( t ) {
	var v = gammaln( -pow( 2.0, 51 ) );
	t.equal( v, PINF, 'returns +Infinity when provided x=-2^51' );
	t.end();
});