We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d581b91 commit 0c6537fCopy full SHA for 0c6537f
lib/node_modules/@stdlib/math/base/special/dirichlet-eta/test/test.js
@@ -64,7 +64,7 @@ tape( 'the function evaluates the Dirichlet eta function', function test( t ) {
64
delta = abs( v - expected[i] );
65
66
// R: 1.1e5*eps => 2.4424906541753444e-11 => http://finzi.psych.upenn.edu/library/pracma/html/eta.html states that accuracy is 13 digits
67
- // Julia: 68.9*eps => 1.509903313490213e-14
+ // Julia: 68.0*eps => 1.509903313490213e-14
68
tol = 68.0 * EPS * abs( expected[i] );
69
t.ok( delta <= tol, 'within tolerance. s: '+s[i]+'. v: '+v+'. E: '+expected[i]+'. Δ: '+delta+'. tol: '+tol+'.' );
70
}
0 commit comments