Skip to content

Commit d65daac

Browse files
committed
Auto-generated commit
1 parent 721a2d4 commit d65daac

File tree

7 files changed

+12
-9
lines changed

7 files changed

+12
-9
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: 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 (2024-12-18)
7+
## Unreleased (2024-12-24)
88

99
<section class="features">
1010

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

3535
<details>
3636

37+
- [`2965f8f`](https://github.com/stdlib-js/stdlib/commit/2965f8f4d1469ed76c7d9c150b39a87b62d73fbd) - **chore:** minor clean-up _(by Philipp Burckhardt)_
3738
- [`8bf8285`](https://github.com/stdlib-js/stdlib/commit/8bf8285aba0ecbd00ae145c4c5c098cd28135814) - **chore:** minor clean-up _(by Philipp Burckhardt)_
3839
- [`d7f5b56`](https://github.com/stdlib-js/stdlib/commit/d7f5b56fc072abf167bd5eb5e2163833715f2211) - **feat:** add C implementation of `stats/base/dists/rayleigh/cdf` [(#3931)](https://github.com/stdlib-js/stdlib/pull/3931) _(by Vinit Pandit, Philipp Burckhardt)_
3940

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Dan Rose <danoftheroses@gmail.com>
2626
Daniel Killenberger <daniel.killenberger@gmail.com>
2727
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
2828
Debashis Maharana <debashismaharana7854@gmail.com>
29+
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
2930
Divyansh Seth <59174836+sethdivyansh@users.noreply.github.com>
3031
Dominic Lim <46486515+domlimm@users.noreply.github.com>
3132
Dominik Moritz <domoritz@gmail.com>
@@ -75,6 +76,7 @@ Philipp Burckhardt <pburckhardt@outlook.com>
7576
Prajwal Kulkarni <prajwalkulkarni76@gmail.com>
7677
Pranav Goswami <goswami.4@iitj.ac.in>
7778
Pranjal Jha <97080887+PraneGIT@users.noreply.github.com>
79+
Prashant Kumar Yadav <144602492+0PrashantYadav0@users.noreply.github.com>
7880
Pratik Singh <97464067+Pratik772846@users.noreply.github.com>
7981
Pratyush Kumar Chouhan <pratyushkumar0308@gmail.com>
8082
Priyansh Prajapati <88396544+itsspriyansh@users.noreply.github.com>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ static double random_uniform( const double min, const double max ) {
248248
}
249249
250250
int main( void ) {
251-
double x;
252251
double sigma;
252+
double x;
253253
double y;
254254
int i;
255255

benchmark/c/benchmark.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ static double random_uniform( const double min, const double max ) {
9393
* @return elapsed time in seconds
9494
*/
9595
static double benchmark( void ) {
96-
double elapsed;
97-
double x[ 100 ];
9896
double sigma[ 100 ];
97+
double x[ 100 ];
98+
double elapsed;
9999
double y;
100100
double t;
101101
int i;

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ double stdlib_base_dists_rayleigh_cdf( const double x, const double sigma ) {
4444
if ( sigma == 0.0 ) {
4545
return ( x < 0.0 ) ? 0.0 : 1.0;
4646
}
47-
if ( x < 0.0) {
47+
if ( x < 0.0 ) {
4848
return 0.0;
4949
}
5050
s2 = stdlib_base_pow( sigma, 2.0 );

0 commit comments

Comments
 (0)