Skip to content

Commit 4b078eb

Browse files
committed
Auto-generated commit
1 parent 6f94cb8 commit 4b078eb

File tree

12 files changed

+44
-30
lines changed

12 files changed

+44
-30
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-12-29)
7+
## Unreleased (2025-01-12)
88

99
<section class="features">
1010

@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`c88e9f5`](https://github.com/stdlib-js/stdlib/commit/c88e9f51302adbe0d828fd298d9dbc138f6b3e7b) - **chore:** clean-up, fix tests, and add FIXMEs _(by Athan Reines)_
3738
- [`98fa29f`](https://github.com/stdlib-js/stdlib/commit/98fa29f0c3aa52aca0bbfb9bdf173250b4fd860a) - **feat:** add C implementation for `stats/base/dists/triangular/mgf` [(#4330)](https://github.com/stdlib-js/stdlib/pull/4330) _(by Prashant Kumar Yadav, Philipp Burckhardt)_
3839

3940
</details>
@@ -46,8 +47,9 @@ This release closes the following issue:
4647

4748
### Contributors
4849

49-
A total of 2 people contributed to this release. Thank you to the following contributors:
50+
A total of 3 people contributed to this release. Thank you to the following contributors:
5051

52+
- Athan Reines
5153
- Philipp Burckhardt
5254
- Prashant Kumar Yadav
5355

CONTRIBUTORS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Daniel Killenberger <daniel.killenberger@gmail.com>
2727
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
2828
Debashis Maharana <debashismaharana7854@gmail.com>
2929
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
30+
Dhruv Arvind Singh <154677013+DhruvArvindSingh@users.noreply.github.com>
3031
Divyansh Seth <59174836+sethdivyansh@users.noreply.github.com>
3132
Dominic Lim <46486515+domlimm@users.noreply.github.com>
3233
Dominik Moritz <domoritz@gmail.com>
@@ -49,6 +50,7 @@ Joey Reed <joeyrreed@gmail.com>
4950
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
5051
Joris Labie <joris.labie1@gmail.com>
5152
Justin Dennison <justin1dennison@gmail.com>
53+
Karan Anand <119553199+anandkaranubc@users.noreply.github.com>
5254
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
5355
Kohantika Nath <145763549+kohantikanath@users.noreply.github.com>
5456
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>
@@ -117,7 +119,7 @@ UtkershBasnet <119008923+UtkershBasnet@users.noreply.github.com>
117119
Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
118120
Varad Gupta <varadgupta21@gmail.com>
119121
Vinit Pandit <106718914+MeastroZI@users.noreply.github.com>
120-
Vivek maurya <155618190+vivekmaurya001@users.noreply.github.com>
122+
Vivek Maurya <vm8118134@gmail.com>
121123
Xiaochuan Ye <tap91624@gmail.com>
122124
Yaswanth Kosuru <116426380+yaswanthkosuru@users.noreply.github.com>
123125
Yernar Yergaziyev <yernar.yergaziyev@erg.kz>

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Copyright (c) 2016-2024 The Stdlib Authors.
1+
Copyright (c) 2016-2025 The Stdlib Authors.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ See [LICENSE][stdlib-license].
332332

333333
## Copyright
334334

335-
Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
335+
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
336336

337337
</section>
338338

benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static double benchmark( void ) {
106106
t[ i ] = random_uniform( 0.0, 5.0 );
107107
a[ i ] = random_uniform( 0.0, 10.0 );
108108
b[ i ] = random_uniform( a[ i ], 40.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
109-
c[ i ] = random_uniform( a[ i ], b[ i ]);
109+
c[ i ] = random_uniform( a[ i ], b[ i ] );
110110
}
111111

112112
tc = tic();

binding.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,4 @@
167167
], # end actions
168168
}, # end target copy_addon
169169
], # end targets
170-
}
170+
}

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

include.gypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@
5050
'<!@(node -e "var arr = require(\'@stdlib/utils-library-manifest\')(\'./manifest.json\',{},{\'basedir\':process.cwd(),\'paths\':\'posix\'}).libpath; for ( var i = 0; i < arr.length; i++ ) { console.log( arr[ i ] ); }")',
5151
],
5252
}, # end variables
53-
}
53+
}

lib/factory.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ function factory( a, b, c ) {
8383
if ( t === 0.0 ) {
8484
return 1.0;
8585
}
86-
ret = (bmc * exp( a * t )) - (bma * exp( c * t ));
87-
ret += cma * exp( b * t );
86+
ret = ( bmc * exp( a*t ) ) - ( bma * exp( c*t ) );
87+
ret += cma * exp( b*t );
8888
ret *= 2.0;
8989
ret /= bma * cma * bmc * pow( t, 2.0 );
9090
return ret;

lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ function mgf( t, a, b, c ) {
9494
bmc = b - c;
9595
bma = b - a;
9696
cma = c - a;
97-
ret = (bmc * exp( a * t )) - (bma * exp( c * t ));
98-
ret += cma * exp( b * t );
97+
ret = ( bmc * exp( a*t ) ) - ( bma * exp( c*t ) );
98+
ret += cma * exp( b*t );
9999
ret *= 2.0;
100100
ret /= bma * cma * bmc * pow( t, 2.0 );
101101
return ret;

0 commit comments

Comments
 (0)