Skip to content

Commit 8948b4a

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into stats-mean
2 parents 9dea9f3 + 8e09d4f commit 8948b4a

File tree

260 files changed

+15703
-11
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+15703
-11
lines changed

docs/talks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ limitations under the License.
3232
3333
<div class="image" align="center">
3434
<a title="The Future of Numerical Computing in JavaScript" href="https://gitnation.com/contents/the-future-of-numerical-computing-in-javascript">
35-
<img width="480" src="" alt="The Future of Numerical Computing in JavaScript">
35+
<img width="480" src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@5bee167f21165026dcf85c79048488ea384a9ede/docs/assets/talks/jsnation_2025_gunj_joshi.png" alt="The Future of Numerical Computing in JavaScript">
3636
</a>
3737
<br>
3838
</div>

lib/node_modules/@stdlib/blas/base/ggemv/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* var x = [ 1.0, 1.0, 1.0 ];
3131
* var y = [ 1.0, 1.0 ];
3232
*
33-
* dgemv( 'row-major', 'no-transpose', 2, 3, 1.0, A, 3, x, 1, 1.0, y, 1 );
33+
* ggemv( 'row-major', 'no-transpose', 2, 3, 1.0, A, 3, x, 1, 1.0, y, 1 );
3434
* // y => [ 7.0, 16.0 ]
3535
*
3636
* @example

lib/node_modules/@stdlib/math/base/assert/int32-is-even/src/addon.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
#include "stdlib/math/base/assert/int32_is_even.h"
2020
#include <node_api.h>
21+
#include <stdbool.h>
2122
#include <stdint.h>
2223
#include <assert.h>
2324

lib/node_modules/@stdlib/math/base/assert/int32-is-even/src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
*/
1818

1919
#include "stdlib/math/base/assert/int32_is_even.h"
20+
#include <stdbool.h>
2021
#include <stdint.h>
2122

2223
/**

lib/node_modules/@stdlib/math/base/assert/int32-is-odd/src/addon.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
#include "stdlib/math/base/assert/int32_is_odd.h"
2020
#include <node_api.h>
21+
#include <stdbool.h>
2122
#include <stdint.h>
2223
#include <assert.h>
2324

lib/node_modules/@stdlib/math/base/assert/int32-is-odd/src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
*/
1818

1919
#include "stdlib/math/base/assert/int32_is_odd.h"
20+
#include <stdbool.h>
2021
#include <stdint.h>
2122

2223
/**

lib/node_modules/@stdlib/math/base/assert/is-composite/src/main.c

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "stdlib/math/base/assert/is_prime.h"
2121
#include "stdlib/math/base/assert/is_integer.h"
2222
#include "stdlib/constants/float64/pinf.h"
23+
#include <stdbool.h>
2324

2425
/**
2526
* Returns a boolean indicating whether a number is a composite.
@@ -34,5 +35,10 @@
3435
* // returns false
3536
*/
3637
bool stdlib_base_is_composite( double x ) {
37-
return ( stdlib_base_is_integer( x ) && ( x > 1 ) && ( x != STDLIB_CONSTANT_FLOAT64_PINF ) && ( !stdlib_base_is_prime( x ) ) );
38+
return (
39+
stdlib_base_is_integer( x ) &&
40+
x > 1 &&
41+
x != STDLIB_CONSTANT_FLOAT64_PINF &&
42+
!stdlib_base_is_prime( x )
43+
);
3844
}

lib/node_modules/@stdlib/math/base/assert/is-even/src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
#include "stdlib/math/base/assert/is_even.h"
2020
#include "stdlib/math/base/assert/is_integer.h"
21+
#include <stdbool.h>
2122

2223
/**
2324
* Tests if a finite numeric value is an even number.

lib/node_modules/@stdlib/math/base/assert/is-evenf/src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
#include "stdlib/math/base/assert/is_evenf.h"
2020
#include "stdlib/math/base/assert/is_integerf.h"
21+
#include <stdbool.h>
2122

2223
/**
2324
* Test if a finite single-precision floating-point number is an even number.

lib/node_modules/@stdlib/math/base/assert/is-integer/src/main.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
#include "stdlib/math/base/assert/is_integer.h"
2020
#include "stdlib/math/base/special/floor.h"
21+
#include <stdbool.h>
2122

2223
/**
2324
* Tests if a finite double-precision floating-point number is an integer.
@@ -32,5 +33,5 @@
3233
* // returns true
3334
*/
3435
bool stdlib_base_is_integer( const double x ) {
35-
return ( x == stdlib_base_floor( x ) );
36+
return ( stdlib_base_floor( x ) == x );
3637
}

0 commit comments

Comments
 (0)