Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Dec 24, 2024
1 parent 83cc123 commit 517dfd2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-12-23)
## Unreleased (2024-12-24)

<section class="features">

Expand Down Expand Up @@ -34,6 +34,7 @@ This release closes the following issue:

<details>

- [`4a70790`](https://github.com/stdlib-js/stdlib/commit/4a707903dfef7c2b56216000165706497d19a251) - **style:** add missing spaces _(by Philipp Burckhardt)_
- [`a72a67a`](https://github.com/stdlib-js/stdlib/commit/a72a67a667bcf694e5f8f2bc3c8e62714e5832bc) - **chore:** minor clean-up _(by Philipp Burckhardt)_
- [`3c0ff2c`](https://github.com/stdlib-js/stdlib/commit/3c0ff2cdae8f78f99cdf09db8dc150f3f0e2cd67) - **feat:** add C implementation for `stats/base/dists/laplace/entropy` [(#4025)](https://github.com/stdlib-js/stdlib/pull/4025) _(by Aayush Khanna, Philipp Burckhardt)_

Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ tape( 'the function returns the differential entropy of a Laplace distribution',
b = data.b;
for ( i = 0; i < mu.length; i++ ) {
y = entropy( mu[i], b[i] );
if ( expected[i] !== null) {
if ( expected[i] !== null ) {
if ( y === expected[i] ) {
t.equal( y, expected[i], 'mu:'+mu[i]+', b: '+b[i]+', y: '+y+', expected: '+expected[i] );
} else {
Expand Down
2 changes: 1 addition & 1 deletion test/test.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ tape( 'the function returns the differential entropy of a Laplace distribution',
b = data.b;
for ( i = 0; i < mu.length; i++ ) {
y = entropy( mu[i], b[i] );
if ( expected[i] !== null) {
if ( expected[i] !== null ) {
if ( y === expected[i] ) {
t.equal( y, expected[i], 'mu:'+mu[i]+', b: '+b[i]+', y: '+y+', expected: '+expected[i] );
} else {
Expand Down

0 comments on commit 517dfd2

Please sign in to comment.