Skip to content

Commit 0dbabb1

Browse files
committed
Auto-generated commit
1 parent 083632f commit 0dbabb1

File tree

3 files changed

+40
-4
lines changed

3 files changed

+40
-4
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -17606,6 +17606,16 @@ This release closes the following issue:
1760617606

1760717607
<!-- /.features -->
1760817608

17609+
<section class="bug-fixes">
17610+
17611+
##### Bug Fixes
17612+
17613+
- [`48c6587`](https://github.com/stdlib-js/stdlib/commit/48c65874d247c4e19712d69281d219878bc746be) - update dispatch table
17614+
17615+
</section>
17616+
17617+
<!-- /.bug-fixes -->
17618+
1760917619
</details>
1761017620

1761117621
</section>
@@ -17788,6 +17798,16 @@ This release closes the following issue:
1778817798

1778917799
<!-- /.features -->
1779017800

17801+
<section class="bug-fixes">
17802+
17803+
##### Bug Fixes
17804+
17805+
- [`241d973`](https://github.com/stdlib-js/stdlib/commit/241d9733f1c33c635badfb7f801125988c12b1e8) - update dispatch table
17806+
17807+
</section>
17808+
17809+
<!-- /.bug-fixes -->
17810+
1779117811
</details>
1779217812

1779317813
</section>
@@ -21810,6 +21830,8 @@ A total of 57 people contributed to this release. Thank you to the following con
2181021830

2181121831
<details>
2181221832

21833+
- [`241d973`](https://github.com/stdlib-js/stdlib/commit/241d9733f1c33c635badfb7f801125988c12b1e8) - **fix:** update dispatch table _(by Athan Reines)_
21834+
- [`48c6587`](https://github.com/stdlib-js/stdlib/commit/48c65874d247c4e19712d69281d219878bc746be) - **fix:** update dispatch table _(by Athan Reines)_
2181321835
- [`5d6ed6a`](https://github.com/stdlib-js/stdlib/commit/5d6ed6a4d163bf887469537abce70ed69025c408) - **feat:** add C implementation for `stats/base/dists/bernoulli/cdf` [(#3962)](https://github.com/stdlib-js/stdlib/pull/3962) _(by Neeraj Pathak, Philipp Burckhardt, stdlib-bot)_
2181421836
- [`0a6c344`](https://github.com/stdlib-js/stdlib/commit/0a6c344b6922ed9d12900074f01c88aaf58855f1) - **feat:** add C implementation for `stats/base/dists/bernoulli/mgf` [(#3981)](https://github.com/stdlib-js/stdlib/pull/3981) _(by Neeraj Pathak, stdlib-bot)_
2181521837
- [`a92a6e3`](https://github.com/stdlib-js/stdlib/commit/a92a6e3876e93b826ab2a6c6cd550e952c24d788) - **feat:** add C implementation of `stats/dists/gumbel/logpdf` [(#4085)](https://github.com/stdlib-js/stdlib/pull/4085) _(by Vinit Pandit, Philipp Burckhardt, stdlib-bot)_

cumax/lib/main.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19+
/* eslint-disable array-element-newline */
20+
1921
'use strict';
2022

2123
// MODULES //
@@ -33,8 +35,14 @@ var idtypes = dtypes( 'real_and_generic' );
3335
var odtypes = dtypes( 'real_and_generic' );
3436
var policy = 'same';
3537
var table = {
36-
'float64': dcumax,
37-
'float32': scumax,
38+
'types': [
39+
'float64', 'float64', // input, output
40+
'float32', 'float32' // input, output
41+
],
42+
'fcns': [
43+
dcumax,
44+
scumax
45+
],
3846
'default': gcumax
3947
};
4048

max/lib/main.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,14 @@ var idtypes = dtypes( 'real_and_generic' );
3333
var odtypes = dtypes( 'real_and_generic' );
3434
var policy = 'same';
3535
var table = {
36-
'float64': dmax,
37-
'float32': smax,
36+
'types': [
37+
'float64', // input
38+
'float32' // input
39+
],
40+
'fcns': [
41+
dmax,
42+
smax
43+
],
3844
'default': gmax
3945
};
4046

0 commit comments

Comments
 (0)