Skip to content

Commit 0d796b2

Browse files
committed
refactor: use stdlib APIs and adjust test tolerances
Ref: #2298 (comment) Ref: https://github.com/stdlib-js/stdlib/actions/runs/9967632974/job/27541607216
1 parent ecb9b5a commit 0d796b2

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

lib/node_modules/@stdlib/math/base/special/ccis/manifest.json

+9-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@
3939
"@stdlib/math/base/napi/unary",
4040
"@stdlib/complex/float64/ctor",
4141
"@stdlib/complex/float64/reim",
42-
"@stdlib/math/base/special/exp"
42+
"@stdlib/math/base/special/exp",
43+
"@stdlib/math/base/special/cos",
44+
"@stdlib/math/base/special/sin"
4345
]
4446
},
4547
{
@@ -55,7 +57,9 @@
5557
"dependencies": [
5658
"@stdlib/complex/float64/ctor",
5759
"@stdlib/complex/float64/reim",
58-
"@stdlib/math/base/special/exp"
60+
"@stdlib/math/base/special/exp",
61+
"@stdlib/math/base/special/cos",
62+
"@stdlib/math/base/special/sin"
5963
]
6064
},
6165
{
@@ -71,7 +75,9 @@
7175
"dependencies": [
7276
"@stdlib/complex/float64/ctor",
7377
"@stdlib/complex/float64/reim",
74-
"@stdlib/math/base/special/exp"
78+
"@stdlib/math/base/special/exp",
79+
"@stdlib/math/base/special/cos",
80+
"@stdlib/math/base/special/sin"
7581
]
7682
}
7783
]

lib/node_modules/@stdlib/math/base/special/ccis/src/main.c

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#include "stdlib/complex/float64/ctor.h"
2121
#include "stdlib/complex/float64/reim.h"
2222
#include "stdlib/math/base/special/exp.h"
23-
#include <math.h>
24-
23+
#include "stdlib/math/base/special/sin.h"
24+
#include "stdlib/math/base/special/cos.h"
2525

2626
/**
2727
* Evaluates the cis function for a double-precision complex floating-point number.
@@ -68,8 +68,9 @@ stdlib_complex128_t stdlib_base_ccis( const stdlib_complex128_t z ) {
6868

6969
stdlib_complex128_reim( z, &re, &im );
7070

71-
y = sin( re ); //TODO: use stdlib function once available
72-
x = cos( re ); //TODO: use stdlib function once available
71+
// TODO: replace with stdlib/math/base/special/sincos
72+
y = stdlib_base_sin( re );
73+
x = stdlib_base_cos( re );
7374
if( im != 0.0 ){
7475
e = stdlib_base_exp( -im );
7576
y *= e;

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,9 @@ tape( 'the function computes cis(z) for complex z', opts, function test( t ) {
129129
if ( real( q ) === cisre[ i ] ) {
130130
t.strictEqual( real( q ), cisre[ i ], 'returns expected real component' );
131131
} else {
132+
// NOTE: the results may differ slightly from the reference and JavaScript implementations 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
132133
delta = abs( real( q ) - cisre[ i ] );
133-
tol = EPS * abs( cisre[ i ] );
134+
tol = 1.05 * EPS * abs( cisre[ i ] );
134135
t.ok( delta <= tol, 'within tolerance. z: '+re[i]+'+ '+im[i]+'i. real: '+real( q )+'. expected: '+cisre[i]+'. delta: '+delta+'. tol: '+tol+'.' );
135136
}
136137
if ( imag( q ) === cisim[ i ] ) {

0 commit comments

Comments
 (0)