Skip to content

Commit e287f64

Browse files
committed
Update artifacts
1 parent e0ecbed commit e287f64

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+520
-160
lines changed

ndarray/base/binary-reduce-strided1d/0d.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -332,8 +332,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
332332
* @private
333333
* @param {Function} fcn - wrapper for a one-dimensional strided array reduction function
334334
* @param {Array&lt;Object&gt;} arrays - ndarrays
335-
* @param {Function} strategy1 - first input ndarray reshape strategy
336-
* @param {Function} strategy2 - second input ndarray reshape strategy
335+
* @param {Function} strategyX - first input ndarray reshape strategy
336+
* @param {Function} strategyY - second input ndarray reshape strategy
337337
* @param {Options} opts - function options
338338
* @returns {void}
339339
*
@@ -407,9 +407,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
407407
* var v = z.data;
408408
* // returns &lt;Float64Array&gt;[ 30.0 ]
409409
*/
410-
<span class="cstat-no" title="statement not covered" ><span class="fstat-no" title="function not covered" >function binary0d( fcn, arrays, strategy1, strategy2, opts ) {</span></span>
411-
<span class="cstat-no" title="statement not covered" > arrays[ 0 ] = strategy1( arrays[ 0 ] );</span>
412-
<span class="cstat-no" title="statement not covered" > arrays[ 1 ] = strategy2( arrays[ 1 ] );</span>
410+
<span class="cstat-no" title="statement not covered" ><span class="fstat-no" title="function not covered" >function binary0d( fcn, arrays, strategyX, strategyY, opts ) {</span></span>
411+
<span class="cstat-no" title="statement not covered" > arrays[ 0 ] = strategyX( arrays[ 0 ] );</span>
412+
<span class="cstat-no" title="statement not covered" > arrays[ 1 ] = strategyY( arrays[ 1 ] );</span>
413413
<span class="cstat-no" title="statement not covered" > arrays[ 2 ].data[ arrays[ 2 ].offset ] = fcn( without( arrays, 2 ), opts );</span>
414414
<span class="cstat-no" title="statement not covered" >}</span>
415415
&nbsp;
@@ -424,7 +424,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
424424
<div class='footer quiet pad2 space-top1 center small'>
425425
Code coverage generated by
426426
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
427-
at 2025-08-06T10:51:21.062Z
427+
at 2025-08-12T11:01:43.459Z
428428
</div>
429429
<script src="../../../../prettify.js"></script>
430430
<script>

ndarray/base/binary-reduce-strided1d/0d_accessors.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -344,8 +344,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
344344
* @private
345345
* @param {Function} fcn - wrapper for a one-dimensional strided array reduction function
346346
* @param {Array&lt;Object&gt;} arrays - ndarrays
347-
* @param {Function} strategy1 - first input ndarray reshape strategy
348-
* @param {Function} strategy2 - second input ndarray reshape strategy
347+
* @param {Function} strategyX - first input ndarray reshape strategy
348+
* @param {Function} strategyY - second input ndarray reshape strategy
349349
* @param {Options} opts - function options
350350
* @returns {void}
351351
*
@@ -424,10 +424,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
424424
* var v = z.data.get( 0 );
425425
* // returns 30.0
426426
*/
427-
<span class="cstat-no" title="statement not covered" ><span class="fstat-no" title="function not covered" >function binary0d( fcn, arrays, strategy1, strategy2, opts ) {</span></span>
427+
<span class="cstat-no" title="statement not covered" ><span class="fstat-no" title="function not covered" >function binary0d( fcn, arrays, strategyX, strategyY, opts ) {</span></span>
428428
<span class="cstat-no" title="statement not covered" > var z = arrays[ 2 ];</span>
429-
<span class="cstat-no" title="statement not covered" > arrays[ 0 ] = strategy1( arrays[ 0 ] );</span>
430-
<span class="cstat-no" title="statement not covered" > arrays[ 1 ] = strategy2( arrays[ 1 ] );</span>
429+
<span class="cstat-no" title="statement not covered" > arrays[ 0 ] = strategyX( arrays[ 0 ] );</span>
430+
<span class="cstat-no" title="statement not covered" > arrays[ 1 ] = strategyY( arrays[ 1 ] );</span>
431431
<span class="cstat-no" title="statement not covered" > z.accessors[ 1 ]( z.data, z.offset, fcn( without( arrays, 2 ), opts ) );</span>
432432
<span class="cstat-no" title="statement not covered" >}</span>
433433
&nbsp;
@@ -442,7 +442,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
442442
<div class='footer quiet pad2 space-top1 center small'>
443443
Code coverage generated by
444444
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
445-
at 2025-08-06T10:51:21.062Z
445+
at 2025-08-12T11:01:43.459Z
446446
</div>
447447
<script src="../../../../prettify.js"></script>
448448
<script>

0 commit comments

Comments
 (0)