You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tape('the function correctly evaluates the hypergeometric function',opts,functiontest(t){
155
150
varexpected;
156
-
vardelta;
157
-
vartol;
158
151
vara;
159
152
varb;
160
153
varc;
@@ -174,19 +167,13 @@ tape( 'the function correctly evaluates the hypergeometric function', opts, func
174
167
t.strictEqual(v,PINF,'returns expected value');
175
168
continue;
176
169
}
177
-
delta=abs(v-expected[i]);
178
-
179
-
// NOTE: the tolerance here is larger than for the JavaScript implementation due to compiler optimizations which may be performed resulting in result divergence. For discussion, see https://github.com/stdlib-js/stdlib/pull/2298#discussion_r1624765205
tape('the function correctly evaluates the hypergeometric function',opts,functiontest(t){
187
176
varexpected;
188
-
vardelta;
189
-
vartol;
190
177
vara;
191
178
varb;
192
179
varc;
@@ -206,19 +193,13 @@ tape( 'the function correctly evaluates the hypergeometric function', opts, func
206
193
t.strictEqual(v,PINF,'returns expected value');
207
194
continue;
208
195
}
209
-
delta=abs(v-expected[i]);
210
-
211
-
// NOTE: the tolerance here is larger than for the JavaScript implementation due to compiler optimizations which may be performed resulting in result divergence. For discussion, see https://github.com/stdlib-js/stdlib/pull/2298#discussion_r1624765205
tape('the function correctly evaluates the hypergeometric function',opts,functiontest(t){
219
202
varexpected;
220
-
vardelta;
221
-
vartol;
222
203
vara;
223
204
varb;
224
205
varc;
@@ -238,19 +219,13 @@ tape( 'the function correctly evaluates the hypergeometric function', opts, func
238
219
t.strictEqual(v,PINF,'returns expected value');
239
220
continue;
240
221
}
241
-
delta=abs(v-expected[i]);
242
-
243
-
// NOTE: the tolerance here is larger than for the JavaScript implementation due to compiler optimizations which may be performed resulting in result divergence. For discussion, see https://github.com/stdlib-js/stdlib/pull/2298#discussion_r1624765205
tape('the function correctly evaluates the hypergeometric function',opts,functiontest(t){
251
228
varexpected;
252
-
vardelta;
253
-
vartol;
254
229
vara;
255
230
varb;
256
231
varc;
@@ -270,19 +245,13 @@ tape( 'the function correctly evaluates the hypergeometric function', opts, func
270
245
t.strictEqual(v,PINF,'returns expected value');
271
246
continue;
272
247
}
273
-
delta=abs(v-expected[i]);
274
-
275
-
// NOTE: the tolerance here is larger than for the JavaScript implementation due to compiler optimizations which may be performed resulting in result divergence. For discussion, see https://github.com/stdlib-js/stdlib/pull/2298#discussion_r1624765205
tape('the function correctly evaluates the hypergeometric function',opts,functiontest(t){
283
254
varexpected;
284
-
vardelta;
285
-
vartol;
286
255
vara;
287
256
varb;
288
257
varc;
@@ -298,11 +267,7 @@ tape( 'the function correctly evaluates the hypergeometric function', opts, func
298
267
299
268
for(i=0;i<x.length;i++){
300
269
v=hyp2f1(a[i],b[i],c[i],x[i]);
301
-
delta=abs(v-expected[i]);
302
-
303
-
// NOTE: the tolerance here is larger than for the JavaScript implementation due to compiler optimizations which may be performed resulting in result divergence. For discussion, see https://github.com/stdlib-js/stdlib/pull/2298#discussion_r1624765205
0 commit comments