Skip to content

Commit

Permalink
refactor: update paths
Browse files Browse the repository at this point in the history
Ref: #2260
  • Loading branch information
kgryte committed Jul 16, 2024
1 parent 59aabc1 commit 8908bda
Show file tree
Hide file tree
Showing 145 changed files with 369 additions and 369 deletions.
16 changes: 8 additions & 8 deletions lib/node_modules/@stdlib/blas/base/dcabs1/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
},
{
Expand All @@ -86,7 +86,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim",
"@stdlib/complex/float64/reim",
"@stdlib/complex/real",
"@stdlib/complex/imag"
]
Expand Down Expand Up @@ -198,7 +198,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
},
{
Expand All @@ -217,7 +217,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim",
"@stdlib/complex/float64/reim",
"@stdlib/complex/real",
"@stdlib/complex/imag"
]
Expand Down Expand Up @@ -374,7 +374,7 @@
"@stdlib/napi/create-double",
"@stdlib/complex/float64/ctor",
"@stdlib/math/base/special/abs",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
},
{
Expand All @@ -393,7 +393,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
},
{
Expand All @@ -412,7 +412,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim",
"@stdlib/complex/float64/reim",
"@stdlib/complex/real",
"@stdlib/complex/imag"
]
Expand All @@ -434,7 +434,7 @@
"dependencies": [
"@stdlib/math/base/special/abs",
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
}
]
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/dcabs1/src/dcabs1.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "stdlib/blas/base/dcabs1.h"
#include "stdlib/math/base/special/abs.h"
#include "stdlib/complex/float64/ctor.h"
#include "stdlib/complex/reim.h"
#include "stdlib/complex/float64/reim.h"

/**
* Computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point number.
Expand All @@ -38,6 +38,6 @@
double c_dcabs1( const stdlib_complex128_t z ) {
double re;
double im;
stdlib_reim( z, &re, &im );
stdlib_complex128_reim( z, &re, &im );
return stdlib_base_abs( re ) + stdlib_base_abs( im );
}
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/complex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ In addition, the namespace contains the following functions:
- <span class="signature">[`imagf( z )`][@stdlib/complex/imagf]</span><span class="delimiter">: </span><span class="description">return the imaginary component of a single-precision complex floating-point number.</span>
- <span class="signature">[`real( z )`][@stdlib/complex/real]</span><span class="delimiter">: </span><span class="description">return the real component of a double-precision complex floating-point number.</span>
- <span class="signature">[`realf( z )`][@stdlib/complex/realf]</span><span class="delimiter">: </span><span class="description">return the real component of a single-precision complex floating-point number.</span>
- <span class="signature">[`reim( z )`][@stdlib/complex/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a double-precision complex floating-point number.</span>
- <span class="signature">[`reim( z )`][@stdlib/complex/float64/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a double-precision complex floating-point number.</span>
- <span class="signature">[`reimf( z )`][@stdlib/complex/float32/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a single-precision complex floating-point number.</span>
- <span class="signature">[`reviveComplex( key, value )`][@stdlib/complex/reviver]</span><span class="delimiter">: </span><span class="description">revive a JSON-serialized complex number.</span>

Expand Down Expand Up @@ -149,7 +149,7 @@ console.log( objectKeys( ns ) );

[@stdlib/complex/realf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/realf

[@stdlib/complex/reim]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/reim
[@stdlib/complex/float64/reim]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/reim

[@stdlib/complex/float32/reim]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/reim

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/complex/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import imagf = require( '@stdlib/complex/imagf' );
import complexPromotionRules = require( '@stdlib/complex/promotion-rules' );
import real = require( '@stdlib/complex/real' );
import realf = require( '@stdlib/complex/realf' );
import reim = require( '@stdlib/complex/reim' );
import reim = require( '@stdlib/complex/float64/reim' );
import reimf = require( '@stdlib/complex/float32/reim' );
import reviveComplex = require( '@stdlib/complex/reviver' );
import reviveComplex64 = require( '@stdlib/complex/float32/reviver' );
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/complex/float32/reim/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ int main( void ) {
- <span class="package-name">[`@stdlib/complex/imagf`][@stdlib/complex/imagf]</span><span class="delimiter">: </span><span class="description">return the imaginary component of a single-precision complex floating-point number.</span>
- <span class="package-name">[`@stdlib/complex/realf`][@stdlib/complex/realf]</span><span class="delimiter">: </span><span class="description">return the real component of a single-precision complex floating-point number.</span>
- <span class="package-name">[`@stdlib/complex/reim`][@stdlib/complex/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a double-precision complex floating-point number.</span>
- <span class="package-name">[`@stdlib/complex/float64/reim`][@stdlib/complex/float64/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a double-precision complex floating-point number.</span>
</section>
Expand All @@ -239,7 +239,7 @@ int main( void ) {
[@stdlib/complex/realf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/realf
[@stdlib/complex/reim]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/reim
[@stdlib/complex/float64/reim]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/reim
<!-- </related-links> -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// MODULES //

var reim = require( '@stdlib/complex/reim' );
var reim = require( '@stdlib/complex/float64/reim' );


// MAIN //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
},
{
Expand All @@ -52,7 +52,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

#include "stdlib/complex/float64/base/assert/is_equal.h"
#include "stdlib/complex/reim.h"
#include "stdlib/complex/float64/reim.h"
#include "stdlib/complex/float64/ctor.h"
#include <stdbool.h>

Expand All @@ -42,7 +42,7 @@ bool stdlib_base_complex128_is_equal( const stdlib_complex128_t z1, const stdlib
double re2;
double im1;
double im2;
stdlib_reim( z1, &re1, &im1 );
stdlib_reim( z2, &re2, &im2 );
stdlib_complex128_reim( z1, &re1, &im1 );
stdlib_complex128_reim( z2, &re2, &im2 );
return ( re1 == re2 && im1 == im2 );
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// MODULES //

var reim = require( '@stdlib/complex/reim' );
var reim = require( '@stdlib/complex/float64/reim' );


// MAIN //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
},
{
Expand All @@ -52,7 +52,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim"
"@stdlib/complex/float64/reim"
]
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

#include "stdlib/complex/float64/base/assert/is_not_equal.h"
#include "stdlib/complex/reim.h"
#include "stdlib/complex/float64/reim.h"
#include "stdlib/complex/float64/ctor.h"
#include <stdbool.h>

Expand All @@ -42,7 +42,7 @@ bool stdlib_base_complex128_is_not_equal( const stdlib_complex128_t z1, const st
double re2;
double im1;
double im2;
stdlib_reim( z1, &re1, &im1 );
stdlib_reim( z2, &re2, &im2 );
stdlib_complex128_reim( z1, &re1, &im1 );
stdlib_complex128_reim( z2, &re2, &im2 );
return ( re1 != re2 || im1 != im2 );
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var isSame = require( '@stdlib/number/float64/base/assert/is-same-value-zero' );
var reim = require( '@stdlib/complex/reim' );
var reim = require( '@stdlib/complex/float64/reim' );


// MAIN //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim",
"@stdlib/complex/float64/reim",
"@stdlib/number/float64/base/assert/is-same-value-zero"
]
},
Expand All @@ -53,7 +53,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim",
"@stdlib/complex/float64/reim",
"@stdlib/number/float64/base/assert/is-same-value-zero"
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include "stdlib/complex/float64/base/assert/is_same_value_zero.h"
#include "stdlib/number/float64/base/assert/is_same_value_zero.h"
#include "stdlib/complex/reim.h"
#include "stdlib/complex/float64/reim.h"
#include "stdlib/complex/float64/ctor.h"
#include <stdbool.h>

Expand All @@ -43,8 +43,8 @@ bool stdlib_base_complex128_is_same_value_zero( const stdlib_complex128_t z1, co
double re2;
double im1;
double im2;
stdlib_reim( z1, &re1, &im1 );
stdlib_reim( z2, &re2, &im2 );
stdlib_complex128_reim( z1, &re1, &im1 );
stdlib_complex128_reim( z2, &re2, &im2 );
return (
stdlib_base_float64_is_same_value_zero( re1, re2 ) &&
stdlib_base_float64_is_same_value_zero( im1, im2 )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var isSame = require( '@stdlib/number/float64/base/assert/is-same-value' );
var reim = require( '@stdlib/complex/reim' );
var reim = require( '@stdlib/complex/float64/reim' );


// MAIN //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim",
"@stdlib/complex/float64/reim",
"@stdlib/number/float64/base/assert/is-same-value"
]
},
Expand All @@ -53,7 +53,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float64/ctor",
"@stdlib/complex/reim",
"@stdlib/complex/float64/reim",
"@stdlib/number/float64/base/assert/is-same-value"
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include "stdlib/complex/float64/base/assert/is_same_value.h"
#include "stdlib/number/float64/base/assert/is_same_value.h"
#include "stdlib/complex/reim.h"
#include "stdlib/complex/float64/reim.h"
#include "stdlib/complex/float64/ctor.h"
#include <stdbool.h>

Expand All @@ -43,8 +43,8 @@ bool stdlib_base_complex128_is_same_value( const stdlib_complex128_t z1, const s
double re2;
double im1;
double im2;
stdlib_reim( z1, &re1, &im1 );
stdlib_reim( z2, &re2, &im2 );
stdlib_complex128_reim( z1, &re1, &im1 );
stdlib_complex128_reim( z2, &re2, &im2 );
return (
stdlib_base_float64_is_same_value( re1, re2 ) &&
stdlib_base_float64_is_same_value( im1, im2 )
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/complex/float64/conj/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ int main( void ) {

- <span class="package-name">[`@stdlib/complex/imag`][@stdlib/complex/imag]</span><span class="delimiter">: </span><span class="description">return the imaginary component of a double-precision complex floating-point number.</span>
- <span class="package-name">[`@stdlib/complex/real`][@stdlib/complex/real]</span><span class="delimiter">: </span><span class="description">return the real component of a double-precision complex floating-point number.</span>
- <span class="package-name">[`@stdlib/complex/reim`][@stdlib/complex/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a double-precision complex floating-point number.</span>
- <span class="package-name">[`@stdlib/complex/float64/reim`][@stdlib/complex/float64/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a double-precision complex floating-point number.</span>

</section>

Expand All @@ -249,7 +249,7 @@ int main( void ) {

[@stdlib/complex/real]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/real

[@stdlib/complex/reim]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/reim
[@stdlib/complex/float64/reim]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/reim

<!-- </related-links> -->

Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/complex/imag/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ int main( void ) {
## See Also

- <span class="package-name">[`@stdlib/complex/real`][@stdlib/complex/real]</span><span class="delimiter">: </span><span class="description">return the real component of a double-precision complex floating-point number.</span>
- <span class="package-name">[`@stdlib/complex/reim`][@stdlib/complex/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a double-precision complex floating-point number.</span>
- <span class="package-name">[`@stdlib/complex/float64/reim`][@stdlib/complex/float64/reim]</span><span class="delimiter">: </span><span class="description">return the real and imaginary components of a double-precision complex floating-point number.</span>

</section>

Expand All @@ -221,7 +221,7 @@ int main( void ) {

[@stdlib/complex/real]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/real

[@stdlib/complex/reim]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/reim
[@stdlib/complex/float64/reim]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/reim

<!-- </related-links> -->

Expand Down
18 changes: 9 additions & 9 deletions lib/node_modules/@stdlib/complex/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,15 @@ setReadOnly( ns, 'conj', require( '@stdlib/complex/float64/conj' ) );
*/
setReadOnly( ns, 'Complex128', require( '@stdlib/complex/float64/ctor' ) );

/**
* @name reim
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/float64/reim}
*/
setReadOnly( ns, 'reim', require( '@stdlib/complex/float64/reim' ) );

/**
* @name reviveComplex128
* @memberof ns
Expand Down Expand Up @@ -189,15 +198,6 @@ setReadOnly( ns, 'real', require( '@stdlib/complex/real' ) );
*/
setReadOnly( ns, 'realf', require( '@stdlib/complex/realf' ) );

/**
* @name reim
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/reim}
*/
setReadOnly( ns, 'reim', require( '@stdlib/complex/reim' ) );

/**
* @name reviveComplex
* @memberof ns
Expand Down
Loading

0 comments on commit 8908bda

Please sign in to comment.