Skip to content

Commit 4840fd0

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents d882fa9 + e3777f7 commit 4840fd0

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

lib/node_modules/@stdlib/math/base/special/rempio2/test/test.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ tape( 'the function returns `0` and sets the elements of `y` to `NaN` if provide
6969
t.end();
7070
});
7171

72-
tape( 'the function returns `n` and stores `r` as two double-precision floating points numbers in `y` such that `x - nπ/2 = r` (positive)', function test( t ) {
72+
tape( 'the function returns `n` and stores `r` as two double-precision floating point numbers in `y` such that `x - nπ/2 = r` (positive)', function test( t ) {
7373
var delta;
7474
var tol;
7575
var x;
@@ -95,7 +95,7 @@ tape( 'the function returns `n` and stores `r` as two double-precision floating
9595
t.end();
9696
});
9797

98-
tape( 'the function returns `n` and stores `r` as two double-precision floating points numbers in `y` such that `x - nπ/2 = r` (tiny positive)', function test( t ) {
98+
tape( 'the function returns `n` and stores `r` as two double-precision floating point numbers in `y` such that `x - nπ/2 = r` (tiny positive)', function test( t ) {
9999
var delta;
100100
var tol;
101101
var x;
@@ -121,7 +121,7 @@ tape( 'the function returns `n` and stores `r` as two double-precision floating
121121
t.end();
122122
});
123123

124-
tape( 'the function returns `n` and stores `r` as two double-precision floating points numbers in `y` such that `x - nπ/2 = r` (negative)', function test( t ) {
124+
tape( 'the function returns `n` and stores `r` as two double-precision floating point numbers in `y` such that `x - nπ/2 = r` (negative)', function test( t ) {
125125
var delta;
126126
var tol;
127127
var x;
@@ -147,7 +147,7 @@ tape( 'the function returns `n` and stores `r` as two double-precision floating
147147
t.end();
148148
});
149149

150-
tape( 'the function returns `n` and stores `r` as two double-precision floating points numbers in `y` such that `x - nπ/2 = r` (tiny negative)', function test( t ) {
150+
tape( 'the function returns `n` and stores `r` as two double-precision floating point numbers in `y` such that `x - nπ/2 = r` (tiny negative)', function test( t ) {
151151
var delta;
152152
var tol;
153153
var x;
@@ -173,7 +173,7 @@ tape( 'the function returns `n` and stores `r` as two double-precision floating
173173
t.end();
174174
});
175175

176-
tape( 'the function returns `n` and stores `r` as two double-precision floating points numbers in `y` such that `x - nπ/2 = r` (multiples of π/4)', function test( t ) {
176+
tape( 'the function returns `n` and stores `r` as two double-precision floating point numbers in `y` such that `x - nπ/2 = r` (multiples of π/4)', function test( t ) {
177177
var delta;
178178
var tol;
179179
var x;
@@ -199,7 +199,7 @@ tape( 'the function returns `n` and stores `r` as two double-precision floating
199199
t.end();
200200
});
201201

202-
tape( 'for large positive input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating points numbers in `y`', function test( t ) {
202+
tape( 'for large positive input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating point numbers in `y`', function test( t ) {
203203
var x;
204204
var y;
205205
var n;
@@ -217,7 +217,7 @@ tape( 'for large positive input values, the function returns the last three bina
217217
t.end();
218218
});
219219

220-
tape( 'for large negative input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating points numbers in `y`', function test( t ) {
220+
tape( 'for large negative input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating point numbers in `y`', function test( t ) {
221221
var x;
222222
var y;
223223
var n;
@@ -235,7 +235,7 @@ tape( 'for large negative input values, the function returns the last three bina
235235
t.end();
236236
});
237237

238-
tape( 'for huge positive input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating points numbers in `y`', function test( t ) {
238+
tape( 'for huge positive input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating point numbers in `y`', function test( t ) {
239239
var x;
240240
var y;
241241
var n;
@@ -253,7 +253,7 @@ tape( 'for huge positive input values, the function returns the last three binar
253253
t.end();
254254
});
255255

256-
tape( 'for huge negative input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating points numbers in `y`', function test( t ) {
256+
tape( 'for huge negative input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating point numbers in `y`', function test( t ) {
257257
var x;
258258
var y;
259259
var n;

lib/node_modules/@stdlib/math/base/special/rempio2/test/test.native.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ tape( 'the function returns `0` and sets the elements of `y` to `NaN` if provide
7979
t.end();
8080
});
8181

82-
tape( 'the function returns `n` and stores `r` as two double-precision floating points numbers in `y` such that `x - nπ/2 = r` (positive)', opts, function test( t ) {
82+
tape( 'the function returns `n` and stores `r` as two double-precision floating point numbers in `y` such that `x - nπ/2 = r` (positive)', opts, function test( t ) {
8383
var delta;
8484
var tol;
8585
var x;
@@ -105,7 +105,7 @@ tape( 'the function returns `n` and stores `r` as two double-precision floating
105105
t.end();
106106
});
107107

108-
tape( 'the function returns `n` and stores `r` as two double-precision floating points numbers in `y` such that `x - nπ/2 = r` (tiny positive)', opts, function test( t ) {
108+
tape( 'the function returns `n` and stores `r` as two double-precision floating point numbers in `y` such that `x - nπ/2 = r` (tiny positive)', opts, function test( t ) {
109109
var delta;
110110
var tol;
111111
var x;
@@ -131,7 +131,7 @@ tape( 'the function returns `n` and stores `r` as two double-precision floating
131131
t.end();
132132
});
133133

134-
tape( 'the function returns `n` and stores `r` as two double-precision floating points numbers in `y` such that `x - nπ/2 = r` (negative)', opts, function test( t ) {
134+
tape( 'the function returns `n` and stores `r` as two double-precision floating point numbers in `y` such that `x - nπ/2 = r` (negative)', opts, function test( t ) {
135135
var delta;
136136
var tol;
137137
var x;
@@ -157,7 +157,7 @@ tape( 'the function returns `n` and stores `r` as two double-precision floating
157157
t.end();
158158
});
159159

160-
tape( 'the function returns `n` and stores `r` as two double-precision floating points numbers in `y` such that `x - nπ/2 = r` (tiny negative)', opts, function test( t ) {
160+
tape( 'the function returns `n` and stores `r` as two double-precision floating point numbers in `y` such that `x - nπ/2 = r` (tiny negative)', opts, function test( t ) {
161161
var delta;
162162
var tol;
163163
var x;
@@ -183,7 +183,7 @@ tape( 'the function returns `n` and stores `r` as two double-precision floating
183183
t.end();
184184
});
185185

186-
tape( 'the function returns `n` and stores `r` as two double-precision floating points numbers in `y` such that `x - nπ/2 = r` (multiples of π/4)', opts, function test( t ) {
186+
tape( 'the function returns `n` and stores `r` as two double-precision floating point numbers in `y` such that `x - nπ/2 = r` (multiples of π/4)', opts, function test( t ) {
187187
var delta;
188188
var tol;
189189
var x;
@@ -209,7 +209,7 @@ tape( 'the function returns `n` and stores `r` as two double-precision floating
209209
t.end();
210210
});
211211

212-
tape( 'for large positive input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating points numbers in `y`', opts, function test( t ) {
212+
tape( 'for large positive input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating point numbers in `y`', opts, function test( t ) {
213213
var x;
214214
var y;
215215
var n;
@@ -227,7 +227,7 @@ tape( 'for large positive input values, the function returns the last three bina
227227
t.end();
228228
});
229229

230-
tape( 'for large negative input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating points numbers in `y`', opts, function test( t ) {
230+
tape( 'for large negative input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating point numbers in `y`', opts, function test( t ) {
231231
var x;
232232
var y;
233233
var n;
@@ -245,7 +245,7 @@ tape( 'for large negative input values, the function returns the last three bina
245245
t.end();
246246
});
247247

248-
tape( 'for huge positive input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating points numbers in `y`', opts, function test( t ) {
248+
tape( 'for huge positive input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating point numbers in `y`', opts, function test( t ) {
249249
var x;
250250
var y;
251251
var n;
@@ -263,7 +263,7 @@ tape( 'for huge positive input values, the function returns the last three binar
263263
t.end();
264264
});
265265

266-
tape( 'for huge negative input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating points numbers in `y`', opts, function test( t ) {
266+
tape( 'for huge negative input values, the function returns the last three binary digits of `n` and stores `r` as two double-precision floating point numbers in `y`', opts, function test( t ) {
267267
var x;
268268
var y;
269269
var n;

0 commit comments

Comments
 (0)