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 18, 2024
1 parent f1e8ae1 commit e3a3679
Show file tree
Hide file tree
Showing 27 changed files with 157 additions and 157 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var real = require( '@stdlib/complex/float64/real' );
var imag = require( '@stdlib/complex/float64/imag' );
var base = require( '@stdlib/math/base/ops/cmul' );
var base = require( '@stdlib/complex/float64/base/mul' );
var tryRequire = require( '@stdlib/utils/try-require' );
var pkg = require( './../package.json' ).name;

Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/zaxpy/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var dcabs1 = require( '@stdlib/blas/base/dcabs1' );
var cmul = require( '@stdlib/math/base/ops/cmul' );
var cmul = require( '@stdlib/complex/float64/base/mul' );
var cadd = require( '@stdlib/complex/float64/base/add' );


Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/zscal/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// MODULES //

var cmul = require( '@stdlib/math/base/ops/cmul' );
var cmul = require( '@stdlib/complex/float64/base/mul' );


// MAIN //
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/zscal/lib/zscal.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// MODULES //

var cmul = require( '@stdlib/math/base/ops/cmul' );
var cmul = require( '@stdlib/complex/float64/base/mul' );


// MAIN //
Expand Down
16 changes: 8 additions & 8 deletions lib/node_modules/@stdlib/blas/base/zscal/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"libpath": [],
"dependencies": [
"@stdlib/blas/base/shared",
"@stdlib/math/base/ops/cmul",
"@stdlib/complex/float64/base/mul",
"@stdlib/complex/float64/ctor"
]
},
Expand All @@ -86,7 +86,7 @@
"libpath": [],
"dependencies": [
"@stdlib/blas/base/shared",
"@stdlib/math/base/ops/cmul",
"@stdlib/complex/float64/base/mul",
"@stdlib/complex/float64/ctor"
]
},
Expand Down Expand Up @@ -199,7 +199,7 @@
"libpath": [],
"dependencies": [
"@stdlib/blas/base/shared",
"@stdlib/math/base/ops/cmul",
"@stdlib/complex/float64/base/mul",
"@stdlib/complex/float64/ctor"
]
},
Expand All @@ -218,7 +218,7 @@
"libpath": [],
"dependencies": [
"@stdlib/blas/base/shared",
"@stdlib/math/base/ops/cmul",
"@stdlib/complex/float64/base/mul",
"@stdlib/complex/float64/ctor"
]
},
Expand Down Expand Up @@ -379,7 +379,7 @@
"@stdlib/napi/argv-strided-complex128array",
"@stdlib/napi/argv-complex128",
"@stdlib/complex/float64/ctor",
"@stdlib/math/base/ops/cmul"
"@stdlib/complex/float64/base/mul"
]
},
{
Expand All @@ -397,7 +397,7 @@
"libpath": [],
"dependencies": [
"@stdlib/blas/base/shared",
"@stdlib/math/base/ops/cmul",
"@stdlib/complex/float64/base/mul",
"@stdlib/complex/float64/ctor"
]
},
Expand All @@ -416,7 +416,7 @@
"libpath": [],
"dependencies": [
"@stdlib/blas/base/shared",
"@stdlib/math/base/ops/cmul",
"@stdlib/complex/float64/base/mul",
"@stdlib/complex/float64/ctor"
]
},
Expand All @@ -436,7 +436,7 @@
"libpath": [],
"dependencies": [
"@stdlib/blas/base/shared",
"@stdlib/math/base/ops/cmul",
"@stdlib/complex/float64/base/mul",
"@stdlib/complex/float64/ctor"
]
}
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/zscal/src/zscal.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "stdlib/blas/base/zscal.h"
#include "stdlib/blas/base/shared.h"
#include "stdlib/complex/float64/ctor.h"
#include "stdlib/math/base/ops/cmul.h"
#include "stdlib/complex/float64/base/mul.h"
#include <stdint.h>

/**
Expand All @@ -42,7 +42,7 @@ void API_SUFFIX(c_zscal)( const CBLAS_INT N, const stdlib_complex128_t za, void
}
for ( i = 0; i < N; i++, ip1 += is1 ) {
z = *( (stdlib_complex128_t *)ip1 );
*( (stdlib_complex128_t *)ip1 ) = stdlib_base_cmul( za, z );
*( (stdlib_complex128_t *)ip1 ) = stdlib_base_complex128_mul( za, z );
}
return;
}
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/complex/float32/base/mul/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ int main( void ) {
## See Also

- <span class="package-name">[`@stdlib/complex/float32/base/add`][@stdlib/complex/float32/base/add]</span><span class="delimiter">: </span><span class="description">add two single-precision complex floating-point numbers.</span>
- <span class="package-name">[`@stdlib/math/base/ops/cmul`][@stdlib/math/base/ops/cmul]</span><span class="delimiter">: </span><span class="description">multiply two double-precision complex floating-point numbers.</span>
- <span class="package-name">[`@stdlib/complex/float64/base/mul`][@stdlib/complex/float64/base/mul]</span><span class="delimiter">: </span><span class="description">multiply two double-precision complex floating-point numbers.</span>
- <span class="package-name">[`@stdlib/math/base/ops/csubf`][@stdlib/math/base/ops/csubf]</span><span class="delimiter">: </span><span class="description">subtract two single-precision complex floating-point numbers.</span>

</section>
Expand All @@ -228,7 +228,7 @@ int main( void ) {

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

[@stdlib/math/base/ops/cmul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/cmul
[@stdlib/complex/float64/base/mul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/mul

[@stdlib/math/base/ops/csubf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/csubf

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

- <span class="package-name">[`@stdlib/math/base/ops/cdiv`][@stdlib/math/base/ops/cdiv]</span><span class="delimiter">: </span><span class="description">divide two complex numbers.</span>
- <span class="package-name">[`@stdlib/math/base/ops/cmul`][@stdlib/math/base/ops/cmul]</span><span class="delimiter">: </span><span class="description">multiply two double-precision complex floating-point numbers.</span>
- <span class="package-name">[`@stdlib/complex/float64/base/mul`][@stdlib/complex/float64/base/mul]</span><span class="delimiter">: </span><span class="description">multiply two double-precision complex floating-point numbers.</span>
- <span class="package-name">[`@stdlib/math/base/ops/csub`][@stdlib/math/base/ops/csub]</span><span class="delimiter">: </span><span class="description">subtract two double-precision complex floating-point numbers.</span>

</section>
Expand All @@ -226,7 +226,7 @@ int main( void ) {

[@stdlib/math/base/ops/cdiv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/cdiv

[@stdlib/math/base/ops/cmul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/cmul
[@stdlib/complex/float64/base/mul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/mul

[@stdlib/math/base/ops/csub]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/csub

Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/ops/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The namespace contains the following functions:
- <span class="signature">[`cadd( z1, z2 )`][@stdlib/complex/float64/base/add]</span><span class="delimiter">: </span><span class="description">add two double-precision complex floating-point numbers.</span>
- <span class="signature">[`caddf( z1, z2 )`][@stdlib/complex/float32/base/add]</span><span class="delimiter">: </span><span class="description">add two single-precision complex floating-point numbers.</span>
- <span class="signature">[`cdiv( z1, z2 )`][@stdlib/math/base/ops/cdiv]</span><span class="delimiter">: </span><span class="description">divide two double-precision complex floating-point numbers.</span>
- <span class="signature">[`cmul( z1, z2 )`][@stdlib/math/base/ops/cmul]</span><span class="delimiter">: </span><span class="description">multiply two double-precision complex floating-point numbers.</span>
- <span class="signature">[`cmul( z1, z2 )`][@stdlib/complex/float64/base/mul]</span><span class="delimiter">: </span><span class="description">multiply two double-precision complex floating-point numbers.</span>
- <span class="signature">[`cmulf( z1, z2 )`][@stdlib/complex/float32/base/mul]</span><span class="delimiter">: </span><span class="description">multiply two single-precision complex floating-point numbers.</span>
- <span class="signature">[`cneg( z )`][@stdlib/math/base/ops/cneg]</span><span class="delimiter">: </span><span class="description">negate a double-precision complex floating-point number.</span>
- <span class="signature">[`cnegf( z )`][@stdlib/math/base/ops/cnegf]</span><span class="delimiter">: </span><span class="description">negate a single-precision complex floating-point number.</span>
Expand Down Expand Up @@ -160,7 +160,7 @@ console.log( ns.imuldw( 0x80000000|0, 0x40000000|0 ) );

[@stdlib/math/base/ops/cdiv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/cdiv

[@stdlib/math/base/ops/cmul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/cmul
[@stdlib/complex/float64/base/mul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/mul

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

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

- <span class="package-name">[`@stdlib/complex/float64/base/add`][@stdlib/complex/float64/base/add]</span><span class="delimiter">: </span><span class="description">add two double-precision complex floating-point numbers.</span>
- <span class="package-name">[`@stdlib/math/base/ops/cmul`][@stdlib/math/base/ops/cmul]</span><span class="delimiter">: </span><span class="description">multiply two double-precision complex floating-point numbers.</span>
- <span class="package-name">[`@stdlib/complex/float64/base/mul`][@stdlib/complex/float64/base/mul]</span><span class="delimiter">: </span><span class="description">multiply two double-precision complex floating-point numbers.</span>
- <span class="package-name">[`@stdlib/math/base/ops/csub`][@stdlib/math/base/ops/csub]</span><span class="delimiter">: </span><span class="description">subtract two double-precision complex floating-point numbers.</span>

</section>
Expand All @@ -257,7 +257,7 @@ int main( void ) {

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

[@stdlib/math/base/ops/cmul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/cmul
[@stdlib/complex/float64/base/mul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/mul

[@stdlib/math/base/ops/csub]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/csub

Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/ops/csub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ int main( void ) {

- <span class="package-name">[`@stdlib/complex/float64/base/add`][@stdlib/complex/float64/base/add]</span><span class="delimiter">: </span><span class="description">add two double-precision complex floating-point numbers.</span>
- <span class="package-name">[`@stdlib/math/base/ops/cdiv`][@stdlib/math/base/ops/cdiv]</span><span class="delimiter">: </span><span class="description">divide two complex numbers.</span>
- <span class="package-name">[`@stdlib/math/base/ops/cmul`][@stdlib/math/base/ops/cmul]</span><span class="delimiter">: </span><span class="description">multiply two double-precision complex floating-point numbers.</span>
- <span class="package-name">[`@stdlib/complex/float64/base/mul`][@stdlib/complex/float64/base/mul]</span><span class="delimiter">: </span><span class="description">multiply two double-precision complex floating-point numbers.</span>

</section>

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

[@stdlib/math/base/ops/cdiv]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/cdiv

[@stdlib/math/base/ops/cmul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/ops/cmul
[@stdlib/complex/float64/base/mul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float64/base/mul

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import addf = require( '@stdlib/math/base/ops/addf' );
import cadd = require( '@stdlib/complex/float64/base/add' );
import caddf = require( '@stdlib/complex/float32/base/add' );
import cdiv = require( '@stdlib/math/base/ops/cdiv' );
import cmul = require( '@stdlib/math/base/ops/cmul' );
import cmul = require( '@stdlib/complex/float64/base/mul' );
import cmulf = require( '@stdlib/complex/float32/base/mul' );
import cneg = require( '@stdlib/math/base/ops/cneg' );
import cnegf = require( '@stdlib/math/base/ops/cnegf' );
Expand Down
18 changes: 9 additions & 9 deletions lib/node_modules/@stdlib/math/base/ops/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ setReadOnly( ns, 'cmulf', require( '@stdlib/complex/float32/base/mul' ) );
*/
setReadOnly( ns, 'cadd', require( '@stdlib/complex/float64/base/add' ) );

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

/**
* @name add
* @memberof ns
Expand Down Expand Up @@ -117,15 +126,6 @@ setReadOnly( ns, 'addf', require( '@stdlib/math/base/ops/addf' ) );
*/
setReadOnly( ns, 'cdiv', require( '@stdlib/math/base/ops/cdiv' ) );

/**
* @name cmul
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/math/base/ops/cmul}
*/
setReadOnly( ns, 'cmul', require( '@stdlib/math/base/ops/cmul' ) );

/**
* @name cneg
* @memberof ns
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/strided/ops/mul/lib/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var mul = require( '@stdlib/math/base/ops/mul' );
var cmul = require( '@stdlib/math/base/ops/cmul' );
var cmul = require( '@stdlib/complex/float64/base/mul' );
var cmulf = require( '@stdlib/complex/float32/base/mul' );
var callbacks = require( '@stdlib/strided/base/binary-signature-callbacks' );
var types = require( './types.js' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"dependencies": [
"@stdlib/math/base/ops/mul",
"@stdlib/math/base/ops/mulf",
"@stdlib/math/base/ops/cmul",
"@stdlib/complex/float64/base/mul",
"@stdlib/complex/float32/base/mul",
"@stdlib/strided/base/function-object",
"@stdlib/strided/base/binary",
Expand Down
Loading

0 comments on commit e3a3679

Please sign in to comment.