Skip to content

Commit 29bbbdc

Browse files
committed
Auto-generated commit
1 parent aaecc14 commit 29bbbdc

File tree

8 files changed

+22
-16
lines changed

8 files changed

+22
-16
lines changed

.github/workflows/test_install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ jobs:
5050
env:
5151
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
5252

53-
# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
54-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
53+
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
54+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
5555

5656
# Define the sequence of job steps...
5757
steps:

.github/workflows/test_published_package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
env:
4848
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
4949

50-
# Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
51-
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
50+
# Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
51+
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
5252

5353
# Define the job's steps:
5454
steps:

CHANGELOG.md

Lines changed: 5 additions & 3 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-18)
7+
## Unreleased (2025-01-12)
88

99
<section class="features">
1010

@@ -34,8 +34,10 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`998c1be`](https://github.com/stdlib-js/stdlib/commit/998c1be8630c1efcf19beefda88181db820d1dcb) - **chore:** remove EPS addition and directly draw from desired distribution _(by Philipp Burckhardt)_
38+
- [`fc0ff17`](https://github.com/stdlib-js/stdlib/commit/fc0ff171dab59e73e1748c1bff504166adc826c3) - **chore:** directly draw from the desired distribution instead of adding constants _(by Philipp Burckhardt)_
3739
- [`8bf8285`](https://github.com/stdlib-js/stdlib/commit/8bf8285aba0ecbd00ae145c4c5c098cd28135814) - **chore:** minor clean-up _(by Philipp Burckhardt)_
38-
- [`bb09b18`](https://github.com/stdlib-js/stdlib/commit/bb09b185f74d2fc05254a2f164119ca05054887f) - **feat:** add C implementation for `stats/base/dists/beta/variance` [(#3919)](https://github.com/stdlib-js/stdlib/pull/3919) _(by Vivek maurya, Philipp Burckhardt)_
40+
- [`bb09b18`](https://github.com/stdlib-js/stdlib/commit/bb09b185f74d2fc05254a2f164119ca05054887f) - **feat:** add C implementation for `stats/base/dists/beta/variance` [(#3919)](https://github.com/stdlib-js/stdlib/pull/3919) _(by Vivek Maurya, Philipp Burckhardt)_
3941

4042
</details>
4143

@@ -50,7 +52,7 @@ This release closes the following issue:
5052
A total of 2 people contributed to this release. Thank you to the following contributors:
5153

5254
- Philipp Burckhardt
53-
- Vivek maurya
55+
- Vivek Maurya
5456

5557
</section>
5658

CONTRIBUTORS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Dan Rose <[email protected]>
2626
Daniel Killenberger <[email protected]>
2727
Daniel Yu <[email protected]>
2828
Debashis Maharana <[email protected]>
29+
Desh Deepak Kant <[email protected]>
30+
Dhruv Arvind Singh <[email protected]>
2931
Divyansh Seth <[email protected]>
3032
Dominic Lim <[email protected]>
3133
Dominik Moritz <[email protected]>
@@ -48,6 +50,7 @@ Joey Reed <[email protected]>
4850
Jordan Gallivan <[email protected]>
4951
Joris Labie <[email protected]>
5052
Justin Dennison <[email protected]>
53+
Karan Anand <[email protected]>
5154
Karthik Prakash <[email protected]>
5255
Kohantika Nath <[email protected]>
5356
Krishnendu Das <[email protected]>
@@ -75,6 +78,7 @@ Philipp Burckhardt <[email protected]>
7578
Prajwal Kulkarni <[email protected]>
7679
Pranav Goswami <[email protected]>
7780
Pranjal Jha <[email protected]>
81+
Prashant Kumar Yadav <[email protected]>
7882
Pratik Singh <[email protected]>
7983
Pratyush Kumar Chouhan <[email protected]>
8084
Priyansh Prajapati <[email protected]>
@@ -115,7 +119,7 @@ UtkershBasnet <[email protected]>
115119
Vaibhav Patel <[email protected]>
116120
Varad Gupta <[email protected]>
117121
Vinit Pandit <[email protected]>
118-
Vivek maurya <[email protected].com>
122+
Vivek Maurya <vm8118134@gmail.com>
119123
Xiaochuan Ye <[email protected]>
120124
Yaswanth Kosuru <[email protected]>
121125
Yernar Yergaziyev <[email protected]>

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,8 @@ int main( void ) {
256256
double y;
257257
int i;
258258
for ( i = 0; i < 25; i++ ) {
259-
alpha = random_uniform( 0.0, 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
260-
beta = random_uniform( 0.0, 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
259+
alpha = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
260+
beta = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
261261
y = stdlib_base_dists_beta_variance( alpha, beta );
262262
printf( "α: %lf, β: %lf, Var(X;α,β): %lf\n", alpha, beta, y );
263263
}
@@ -314,7 +314,7 @@ See [LICENSE][stdlib-license].
314314

315315
## Copyright
316316

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

319319
</section>
320320

benchmark/c/benchmark.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ static double benchmark( void ) {
101101
int i;
102102

103103
for ( i = 0; i < 100; i++ ) {
104-
alpha[ i ] = random_uniform( 0.0, 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
105-
beta[ i ] = random_uniform( 0.0, 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
104+
alpha[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
105+
beta[ i ] = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
106106
}
107107

108108
t = tic();

examples/c/example.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ int main( void ) {
3333
int i;
3434

3535
for ( i = 0; i < 25; i++ ) {
36-
alpha = random_uniform( 0.0, 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
37-
beta = random_uniform( 0.0, 10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;
36+
alpha = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
37+
beta = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 10.0 );
3838
y = stdlib_base_dists_beta_variance( alpha, beta );
3939
printf( "α: %lf, β: %lf, Var(X;α,β): %lf\n", alpha, beta, y );
4040
}

0 commit comments

Comments
 (0)