Skip to content

Commit 9f2f445

Browse files
committed
Auto-generated commit
1 parent 9986db8 commit 9f2f445

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-01-07)
7+
## Unreleased (2025-01-12)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`97c434d`](https://github.com/stdlib-js/stdlib/commit/97c434de1ac819d4f616202b10ebdce3970a76d8) - **chore:** directly draw from the desired distribution instead of adding constants _(by Philipp Burckhardt)_
2526
- [`746eae4`](https://github.com/stdlib-js/stdlib/commit/746eae4688b31749105a872b58aaa5e7fb017ae0) - **docs:** fix argument order _(by Athan Reines)_
2627
- [`0d52a8a`](https://github.com/stdlib-js/stdlib/commit/0d52a8a0eec7221c0147185c4ce3317db0458498) - **chore:** minor clean-up _(by Philipp Burckhardt)_
2728
- [`d88905f`](https://github.com/stdlib-js/stdlib/commit/d88905fbd9006bf223db7ce4959b46f02cf7d73e) - **docs:** fix parameter descriptions in Weibull distribution packages _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ Joey Reed <joeyrreed@gmail.com>
5050
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
5151
Joris Labie <joris.labie1@gmail.com>
5252
Justin Dennison <justin1dennison@gmail.com>
53+
Karan Anand <119553199+anandkaranubc@users.noreply.github.com>
5354
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
5455
Kohantika Nath <145763549+kohantikanath@users.noreply.github.com>
5556
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>

benchmark/c/benchmark.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ static double benchmark( void ) {
102102
int i;
103103

104104
for ( i = 0; i < 100; i++ ) {
105-
x[ i ] = random_uniform( 0.0 , 100.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
106-
lambda[ i ] = random_uniform( 0.0, 100.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
107-
k[ i ] = random_uniform( 0.0, 100.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
105+
x[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
106+
lambda[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
107+
k[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 100.0 );
108108
}
109109

110110
t = tic();

0 commit comments

Comments
 (0)