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 5325850 commit ad760a9
Show file tree
Hide file tree
Showing 61 changed files with 155 additions and 155 deletions.
16 changes: 8 additions & 8 deletions lib/node_modules/@stdlib/blas/base/scabs1/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf"
"@stdlib/complex/float32/reim"
]
},
{
Expand All @@ -86,7 +86,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf",
"@stdlib/complex/float32/reim",
"@stdlib/complex/realf",
"@stdlib/complex/imagf"
]
Expand Down Expand Up @@ -198,7 +198,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf"
"@stdlib/complex/float32/reim"
]
},
{
Expand All @@ -217,7 +217,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf",
"@stdlib/complex/float32/reim",
"@stdlib/complex/realf",
"@stdlib/complex/imagf"
]
Expand Down Expand Up @@ -374,7 +374,7 @@
"@stdlib/napi/create-double",
"@stdlib/complex/float32/ctor",
"@stdlib/math/base/special/absf",
"@stdlib/complex/reimf"
"@stdlib/complex/float32/reim"
]
},
{
Expand All @@ -393,7 +393,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf"
"@stdlib/complex/float32/reim"
]
},
{
Expand All @@ -412,7 +412,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf",
"@stdlib/complex/float32/reim",
"@stdlib/complex/realf",
"@stdlib/complex/imagf"
]
Expand All @@ -434,7 +434,7 @@
"dependencies": [
"@stdlib/math/base/special/absf",
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf"
"@stdlib/complex/float32/reim"
]
}
]
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/scabs1/src/scabs1.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "stdlib/blas/base/scabs1.h"
#include "stdlib/math/base/special/absf.h"
#include "stdlib/complex/float32/ctor.h"
#include "stdlib/complex/reimf.h"
#include "stdlib/complex/float32/reim.h"

/**
* Computes the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point number.
Expand All @@ -38,6 +38,6 @@
float c_scabs1( const stdlib_complex64_t c ) {
float re;
float im;
stdlib_reimf( c, &re, &im );
stdlib_complex64_reim( c, &re, &im );
return stdlib_base_absf( re ) + stdlib_base_absf( 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 @@ -83,7 +83,7 @@ In addition, the namespace contains the following functions:
- <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">[`reimf( z )`][@stdlib/complex/reimf]</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">[`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>

</div>
Expand Down Expand Up @@ -151,7 +151,7 @@ console.log( objectKeys( ns ) );

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

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

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

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 @@ -35,7 +35,7 @@ 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 reimf = require( '@stdlib/complex/reimf' );
import reimf = require( '@stdlib/complex/float32/reim' );
import reviveComplex = require( '@stdlib/complex/reviver' );
import reviveComplex64 = require( '@stdlib/complex/float32/reviver' );
import reviveComplex128 = require( '@stdlib/complex/float64/reviver' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// MODULES //

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


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

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

Expand All @@ -42,7 +42,7 @@ bool stdlib_base_complex64_is_equal( const stdlib_complex64_t z1, const stdlib_c
float re2;
float im1;
float im2;
stdlib_reimf( z1, &re1, &im1 );
stdlib_reimf( z2, &re2, &im2 );
stdlib_complex64_reim( z1, &re1, &im1 );
stdlib_complex64_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 reimf = require( '@stdlib/complex/reimf' );
var reimf = require( '@stdlib/complex/float32/reim' );


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

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

Expand All @@ -42,7 +42,7 @@ bool stdlib_base_complex64_is_not_equal( const stdlib_complex64_t z1, const stdl
float re2;
float im1;
float im2;
stdlib_reimf( z1, &re1, &im1 );
stdlib_reimf( z2, &re2, &im2 );
stdlib_complex64_reim( z1, &re1, &im1 );
stdlib_complex64_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/float32/base/assert/is-same-value-zero' );
var reimf = require( '@stdlib/complex/reimf' );
var reimf = require( '@stdlib/complex/float32/reim' );


// MAIN //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf",
"@stdlib/complex/float32/reim",
"@stdlib/number/float32/base/assert/is-same-value-zero"
]
},
Expand All @@ -53,7 +53,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf",
"@stdlib/complex/float32/reim",
"@stdlib/number/float32/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/float32/base/assert/is_same_value_zero.h"
#include "stdlib/number/float32/base/assert/is_same_value_zero.h"
#include "stdlib/complex/reimf.h"
#include "stdlib/complex/float32/reim.h"
#include "stdlib/complex/float32/ctor.h"
#include <stdbool.h>

Expand All @@ -43,8 +43,8 @@ bool stdlib_base_complex64_is_same_value_zero( const stdlib_complex64_t z1, cons
float re2;
float im1;
float im2;
stdlib_reimf( z1, &re1, &im1 );
stdlib_reimf( z2, &re2, &im2 );
stdlib_complex64_reim( z1, &re1, &im1 );
stdlib_complex64_reim( z2, &re2, &im2 );
return (
stdlib_base_float32_is_same_value_zero( re1, re2 ) &&
stdlib_base_float32_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/float32/base/assert/is-same-value' );
var reimf = require( '@stdlib/complex/reimf' );
var reimf = require( '@stdlib/complex/float32/reim' );


// MAIN //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf",
"@stdlib/complex/float32/reim",
"@stdlib/number/float32/base/assert/is-same-value"
]
},
Expand All @@ -53,7 +53,7 @@
"libpath": [],
"dependencies": [
"@stdlib/complex/float32/ctor",
"@stdlib/complex/reimf",
"@stdlib/complex/float32/reim",
"@stdlib/number/float32/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/float32/base/assert/is_same_value.h"
#include "stdlib/number/float32/base/assert/is_same_value.h"
#include "stdlib/complex/reimf.h"
#include "stdlib/complex/float32/reim.h"
#include "stdlib/complex/float32/ctor.h"
#include <stdbool.h>

Expand All @@ -43,8 +43,8 @@ bool stdlib_base_complex64_is_same_value( const stdlib_complex64_t z1, const std
float re2;
float im1;
float im2;
stdlib_reimf( z1, &re1, &im1 );
stdlib_reimf( z2, &re2, &im2 );
stdlib_complex64_reim( z1, &re1, &im1 );
stdlib_complex64_reim( z2, &re2, &im2 );
return (
stdlib_base_float32_is_same_value( re1, re2 ) &&
stdlib_base_float32_is_same_value( im1, im2 )
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/complex/float32/conj/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ int main( void ) {
- <span class="package-name">[`@stdlib/complex/float64/conj`][@stdlib/complex/float64/conj]</span><span class="delimiter">: </span><span class="description">return the complex conjugate of a double-precision complex floating-point number.</span>
- <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/reimf`][@stdlib/complex/reimf]</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="package-name">[`@stdlib/complex/float32/reim`][@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>

</section>

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

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

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

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

Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/complex/imagf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,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/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/reimf`][@stdlib/complex/reimf]</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="package-name">[`@stdlib/complex/float32/reim`][@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>

</section>

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

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

[@stdlib/complex/reimf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/reimf
[@stdlib/complex/float32/reim]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/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 @@ -99,6 +99,15 @@ setReadOnly( ns, 'conjf', require( '@stdlib/complex/float32/conj' ) );
*/
setReadOnly( ns, 'Complex64', require( '@stdlib/complex/float32/ctor' ) );

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

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

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

/**
* @name reviveComplex
* @memberof ns
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/complex/realf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,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/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/reimf`][@stdlib/complex/reimf]</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="package-name">[`@stdlib/complex/float32/reim`][@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>

</section>

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

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

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

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

Expand Down
Loading

0 comments on commit ad760a9

Please sign in to comment.