Skip to content

Commit 4748a5a

Browse files
authored
chore(sincosd): address commit comments
PR-URL: #5955 Closes: #5893 Reviewed-by: Philipp Burckhardt <[email protected]> Reviewed-by: Gururaj Gurram <[email protected]>
1 parent fe9731c commit 4748a5a

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
lines changed

lib/node_modules/@stdlib/math/base/special/sincosd/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ stdlib_base_sincosd( 4.0, &sine, &cosine );
128128
129129
The function accepts the following arguments:
130130
131-
- **x**: `[in] double` input value.
132-
- **sine**: `[out] double*` destination for the sine.
131+
- **x**: `[in] double` input value.
132+
- **sine**: `[out] double*` destination for the sine.
133133
- **cosine**: `[out] double*` destination for the cosine.
134134
135135
```c

lib/node_modules/@stdlib/math/base/special/sincosd/benchmark/c/native/benchmark.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ static double benchmark( void ) {
101101
for ( i = 0; i < ITERATIONS; i++ ) {
102102
x = ( 20.0 * rand_double() ) - 10.0;
103103
stdlib_base_sincosd( x, &sine, &cosine );
104-
if ( cosine != cosine || sine != sine) {
104+
if ( cosine != cosine || sine != sine ) {
105105
printf( "unexpected results\n" );
106106
break;
107107
}
108108
}
109109
elapsed = tic() - t;
110-
if ( cosine != cosine || sine != sine) {
110+
if ( cosine != cosine || sine != sine ) {
111111
printf( "unexpected results\n" );
112112
}
113113
return elapsed;

lib/node_modules/@stdlib/math/base/special/sincosd/docs/types/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Collection } from '@stdlib/types/array';
23+
import { NumericArray } from '@stdlib/types/array';
2424

2525
interface sincosd {
2626
/**
@@ -67,7 +67,7 @@ interface sincosd {
6767
* var bool = ( v === out );
6868
* // returns true
6969
*/
70-
assign<T = unknown>( x: number, out: Collection<T>, stride: number, offset: number ): Collection<T | number>;
70+
assign<T extends NumericArray>( x: number, out: T, stride: number, offset: number ): T ;
7171
}
7272

7373
/**

lib/node_modules/@stdlib/math/base/special/sincosd/docs/types/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import sincosd = require( './index' );
4949
{
5050
const out = [ 0.0, 0.0 ];
5151

52-
sincosd.assign( 3.14e-319, out, 1, 0 ); // $ExpectType Collection<number>
52+
sincosd.assign( 3.14e-319, out, 1, 0 ); // $ExpectType number[]
5353
}
5454

5555
// The compiler throws an error if the `assign` method is provided a first argument which is not a number...

lib/node_modules/@stdlib/stats/base/dists/levy/median/benchmark/benchmark.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
var bench = require( '@stdlib/bench' );
2424
var Float64Array = require( '@stdlib/array/float64' );
25-
var randu = require( '@stdlib/random/base/randu' );
2625
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2726
var EPS = require( '@stdlib/constants/float64/eps' );
27+
var uniform = require( '@stdlib/random/base/uniform' );
2828
var pkg = require( './../package.json' ).name;
2929
var median = require( './../lib' );
3030

@@ -42,8 +42,8 @@ bench( pkg, function benchmark( b ) {
4242
mu = new Float64Array( len );
4343
c = new Float64Array( len );
4444
for ( i = 0; i < len; i++ ) {
45-
mu[ i ] = ( randu() * 100.0 ) - 50.0;
46-
c[ i ] = ( randu() * 20.0 ) + EPS;
45+
mu[ i ] = uniform( -50.0, 50.0 );
46+
c[ i ] = uniform( EPS, 20.0 + EPS );
4747
}
4848

4949
b.tic();

lib/node_modules/@stdlib/stats/base/dists/levy/median/benchmark/benchmark.native.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ var resolve = require( 'path' ).resolve;
2424
var bench = require( '@stdlib/bench' );
2525
var Float64Array = require( '@stdlib/array/float64' );
2626
var EPS = require( '@stdlib/constants/float64/eps' );
27-
var randu = require( '@stdlib/random/base/randu' );
2827
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2928
var tryRequire = require( '@stdlib/utils/try-require' );
29+
var uniform = require( '@stdlib/random/base/uniform' );
3030
var pkg = require( './../package.json' ).name;
3131

3232

@@ -51,8 +51,8 @@ bench( pkg+'::native', opts, function benchmark( b ) {
5151
mu = new Float64Array( len );
5252
c = new Float64Array( len );
5353
for ( i = 0; i < len; i++ ) {
54-
mu[ i ] = ( randu() * 100.0 ) - 50.0;
55-
c[ i ] = ( randu() * 20.0 ) + EPS;
54+
mu[ i ] = uniform( -50.0, 50.0 );
55+
c[ i ] = uniform( EPS, 20.0 + EPS );
5656
}
5757

5858
b.tic();

lib/node_modules/@stdlib/stats/base/dists/levy/median/test/test.native.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -53,35 +53,35 @@ tape( 'main export is a function', opts, function test( t ) {
5353

5454
tape( 'if provided `NaN` for any parameter, the function returns `NaN`', opts, function test( t ) {
5555
var y = median( NaN, 1.0 );
56-
t.equal( isnan( y ), true, 'returns NaN' );
56+
t.equal( isnan( y ), true, 'returns expected value' );
5757
y = median( 1.0, NaN );
58-
t.equal( isnan( y ), true, 'returns NaN' );
58+
t.equal( isnan( y ), true, 'returns expected value' );
5959
t.end();
6060
});
6161

6262
tape( 'if provided a nonpositive `c`, the function returns `NaN`', opts, function test( t ) {
6363
var y;
6464

6565
y = median( 2.0, 0.0 );
66-
t.equal( isnan( y ), true, 'returns NaN' );
66+
t.equal( isnan( y ), true, 'returns expected value' );
6767

6868
y = median( 2.0, -1.0 );
69-
t.equal( isnan( y ), true, 'returns NaN' );
69+
t.equal( isnan( y ), true, 'returns expected value' );
7070

7171
y = median( 2.0, -1.0 );
72-
t.equal( isnan( y ), true, 'returns NaN' );
72+
t.equal( isnan( y ), true, 'returns expected value' );
7373

7474
y = median( 1.0, NINF );
75-
t.equal( isnan( y ), true, 'returns NaN' );
75+
t.equal( isnan( y ), true, 'returns expected value' );
7676

7777
y = median( PINF, NINF );
78-
t.equal( isnan( y ), true, 'returns NaN' );
78+
t.equal( isnan( y ), true, 'returns expected value' );
7979

8080
y = median( NINF, NINF );
81-
t.equal( isnan( y ), true, 'returns NaN' );
81+
t.equal( isnan( y ), true, 'returns expected value' );
8282

8383
y = median( NaN, NINF );
84-
t.equal( isnan( y ), true, 'returns NaN' );
84+
t.equal( isnan( y ), true, 'returns expected value' );
8585

8686
t.end();
8787
});

0 commit comments

Comments
 (0)