Skip to content

Commit 8ebb1aa

Browse files
committed
Update artifacts
1 parent a5cefd9 commit 8ebb1aa

20 files changed

+134
-332
lines changed

ndarray/base/nullary-strided1d/0d.js.html

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">96.36% </span>
26+
<span class="strong">96.22% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>106/110</span>
28+
<span class='fraction'>102/106</span>
2929
</div>
3030

3131

@@ -44,9 +44,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
4444

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">96.36% </span>
47+
<span class="strong">96.22% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>106/110</span>
49+
<span class='fraction'>102/106</span>
5050
</div>
5151

5252

@@ -169,15 +169,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
169169
<a name='L104'></a><a href='#L104'>104</a>
170170
<a name='L105'></a><a href='#L105'>105</a>
171171
<a name='L106'></a><a href='#L106'>106</a>
172-
<a name='L107'></a><a href='#L107'>107</a>
173-
<a name='L108'></a><a href='#L108'>108</a>
174-
<a name='L109'></a><a href='#L109'>109</a>
175-
<a name='L110'></a><a href='#L110'>110</a>
176-
<a name='L111'></a><a href='#L111'>111</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
177-
<span class="cline-any cline-yes">1x</span>
178-
<span class="cline-any cline-yes">1x</span>
179-
<span class="cline-any cline-yes">1x</span>
180-
<span class="cline-any cline-yes">1x</span>
172+
<a name='L107'></a><a href='#L107'>107</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
181173
<span class="cline-any cline-yes">1x</span>
182174
<span class="cline-any cline-yes">1x</span>
183175
<span class="cline-any cline-yes">1x</span>
@@ -363,7 +355,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
363355
* };
364356
*
365357
* // Define an input strategy:
366-
* function inputStrategy( x ) {
358+
* function strategy( x ) {
367359
* return {
368360
* 'dtype': x.dtype,
369361
* 'data': x.data,
@@ -374,18 +366,14 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
374366
* };
375367
* }
376368
*
377-
* var strategy = {
378-
* 'input': inputStrategy
379-
* };
380-
*
381369
* // Apply strided function:
382370
* nullary0d( wrapper, [ x, sortOrder ], strategy, {} );
383371
*
384372
* var v = x.data;
385373
* // returns [ 1.0, 2.0, 3.0, 4.0 ]
386374
*/
387375
<span class="cstat-no" title="statement not covered" ><span class="fstat-no" title="function not covered" >function nullary0d( fcn, arrays, strategyX, opts ) {</span></span>
388-
<span class="cstat-no" title="statement not covered" > arrays[ 0 ] = strategyX.input( arrays[ 0 ] );</span>
376+
<span class="cstat-no" title="statement not covered" > arrays[ 0 ] = strategyX( arrays[ 0 ] );</span>
389377
<span class="cstat-no" title="statement not covered" > fcn( arrays, opts );</span>
390378
<span class="cstat-no" title="statement not covered" >}</span>
391379
&nbsp;
@@ -400,7 +388,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
400388
<div class='footer quiet pad2 space-top1 center small'>
401389
Code coverage generated by
402390
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
403-
at 2025-07-29T08:42:25.108Z
391+
at 2025-07-30T10:07:56.994Z
404392
</div>
405393
<script src="../../../../prettify.js"></script>
406394
<script>

ndarray/base/nullary-strided1d/1d.js.html

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">81.06% </span>
26+
<span class="strong">80.6% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>137/169</span>
28+
<span class='fraction'>133/165</span>
2929
</div>
3030

3131

@@ -44,9 +44,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
4444

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">81.06% </span>
47+
<span class="strong">80.6% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>137/169</span>
49+
<span class='fraction'>133/165</span>
5050
</div>
5151

5252

@@ -228,15 +228,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
228228
<a name='L163'></a><a href='#L163'>163</a>
229229
<a name='L164'></a><a href='#L164'>164</a>
230230
<a name='L165'></a><a href='#L165'>165</a>
231-
<a name='L166'></a><a href='#L166'>166</a>
232-
<a name='L167'></a><a href='#L167'>167</a>
233-
<a name='L168'></a><a href='#L168'>168</a>
234-
<a name='L169'></a><a href='#L169'>169</a>
235-
<a name='L170'></a><a href='#L170'>170</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
236-
<span class="cline-any cline-yes">1x</span>
237-
<span class="cline-any cline-yes">1x</span>
238-
<span class="cline-any cline-yes">1x</span>
239-
<span class="cline-any cline-yes">1x</span>
231+
<a name='L166'></a><a href='#L166'>166</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
240232
<span class="cline-any cline-yes">1x</span>
241233
<span class="cline-any cline-yes">1x</span>
242234
<span class="cline-any cline-yes">1x</span>
@@ -512,7 +504,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
512504
* ];
513505
*
514506
* // Define an input strategy:
515-
* function inputStrategy( x ) {
507+
* function strategy( x ) {
516508
* return {
517509
* 'dtype': x.dtype,
518510
* 'data': x.data,
@@ -523,10 +515,6 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
523515
* };
524516
* }
525517
*
526-
* var strategy = {
527-
* 'input': inputStrategy
528-
* };
529-
*
530518
* // Apply strided function:
531519
* nullary1d( wrapper, [ x, sortOrder ], views, [ 3 ], [ 4 ], strategy, {} );
532520
*
@@ -560,7 +548,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
560548
<span class="cstat-no" title="statement not covered" > // Iterate over the loop dimensions...</span>
561549
<span class="cstat-no" title="statement not covered" > for ( i0 = 0; i0 &lt; S0; i0++ ) {</span>
562550
<span class="cstat-no" title="statement not covered" > setViewOffsets( views, iv );</span>
563-
<span class="cstat-no" title="statement not covered" > v[ 0 ] = strategyX.input( views[ 0 ] );</span>
551+
<span class="cstat-no" title="statement not covered" > v[ 0 ] = strategyX( views[ 0 ] );</span>
564552
<span class="cstat-no" title="statement not covered" > fcn( v, opts );</span>
565553
<span class="cstat-no" title="statement not covered" > incrementOffsets( iv, dv0 );</span>
566554
<span class="cstat-no" title="statement not covered" > }</span>
@@ -577,7 +565,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
577565
<div class='footer quiet pad2 space-top1 center small'>
578566
Code coverage generated by
579567
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
580-
at 2025-07-29T08:42:25.108Z
568+
at 2025-07-30T10:07:56.994Z
581569
</div>
582570
<script src="../../../../prettify.js"></script>
583571
<script>

ndarray/base/nullary-strided1d/2d.js.html

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">68.65% </span>
26+
<span class="strong">68.02% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>138/201</span>
28+
<span class='fraction'>134/197</span>
2929
</div>
3030

3131

@@ -44,9 +44,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
4444

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">68.65% </span>
47+
<span class="strong">68.02% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>138/201</span>
49+
<span class='fraction'>134/197</span>
5050
</div>
5151

5252

@@ -260,15 +260,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
260260
<a name='L195'></a><a href='#L195'>195</a>
261261
<a name='L196'></a><a href='#L196'>196</a>
262262
<a name='L197'></a><a href='#L197'>197</a>
263-
<a name='L198'></a><a href='#L198'>198</a>
264-
<a name='L199'></a><a href='#L199'>199</a>
265-
<a name='L200'></a><a href='#L200'>200</a>
266-
<a name='L201'></a><a href='#L201'>201</a>
267-
<a name='L202'></a><a href='#L202'>202</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
268-
<span class="cline-any cline-yes">1x</span>
269-
<span class="cline-any cline-yes">1x</span>
270-
<span class="cline-any cline-yes">1x</span>
271-
<span class="cline-any cline-yes">1x</span>
263+
<a name='L198'></a><a href='#L198'>198</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
272264
<span class="cline-any cline-yes">1x</span>
273265
<span class="cline-any cline-yes">1x</span>
274266
<span class="cline-any cline-yes">1x</span>
@@ -577,7 +569,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
577569
* ];
578570
*
579571
* // Define an input strategy:
580-
* function inputStrategy( x ) {
572+
* function strategy( x ) {
581573
* return {
582574
* 'dtype': x.dtype,
583575
* 'data': x.data,
@@ -588,10 +580,6 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
588580
* };
589581
* }
590582
*
591-
* var strategy = {
592-
* 'input': inputStrategy
593-
* };
594-
*
595583
* // Apply strided function:
596584
* nullary2d( wrapper, [ x, sortOrder ], views, [ 1, 3 ], [ 12, 4 ], true, strategy, {} );
597585
*
@@ -654,7 +642,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
654642
<span class="cstat-no" title="statement not covered" > for ( i1 = 0; i1 &lt; S1; i1++ ) {</span>
655643
<span class="cstat-no" title="statement not covered" > for ( i0 = 0; i0 &lt; S0; i0++ ) {</span>
656644
<span class="cstat-no" title="statement not covered" > setViewOffsets( views, iv );</span>
657-
<span class="cstat-no" title="statement not covered" > v[ 0 ] = strategyX.input( views[ 0 ] );</span>
645+
<span class="cstat-no" title="statement not covered" > v[ 0 ] = strategyX( views[ 0 ] );</span>
658646
<span class="cstat-no" title="statement not covered" > fcn( v, opts );</span>
659647
<span class="cstat-no" title="statement not covered" > incrementOffsets( iv, dv0 );</span>
660648
<span class="cstat-no" title="statement not covered" > }</span>
@@ -673,7 +661,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
673661
<div class='footer quiet pad2 space-top1 center small'>
674662
Code coverage generated by
675663
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
676-
at 2025-07-29T08:42:25.108Z
664+
at 2025-07-30T10:07:56.994Z
677665
</div>
678666
<script src="../../../../prettify.js"></script>
679667
<script>

ndarray/base/nullary-strided1d/2d_blocked.js.html

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">61.03% </span>
26+
<span class="strong">60.35% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>141/231</span>
28+
<span class='fraction'>137/227</span>
2929
</div>
3030

3131

@@ -44,9 +44,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
4444

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">61.03% </span>
47+
<span class="strong">60.35% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>141/231</span>
49+
<span class='fraction'>137/227</span>
5050
</div>
5151

5252

@@ -290,15 +290,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
290290
<a name='L225'></a><a href='#L225'>225</a>
291291
<a name='L226'></a><a href='#L226'>226</a>
292292
<a name='L227'></a><a href='#L227'>227</a>
293-
<a name='L228'></a><a href='#L228'>228</a>
294-
<a name='L229'></a><a href='#L229'>229</a>
295-
<a name='L230'></a><a href='#L230'>230</a>
296-
<a name='L231'></a><a href='#L231'>231</a>
297-
<a name='L232'></a><a href='#L232'>232</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
298-
<span class="cline-any cline-yes">1x</span>
299-
<span class="cline-any cline-yes">1x</span>
300-
<span class="cline-any cline-yes">1x</span>
301-
<span class="cline-any cline-yes">1x</span>
293+
<a name='L228'></a><a href='#L228'>228</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
302294
<span class="cline-any cline-yes">1x</span>
303295
<span class="cline-any cline-yes">1x</span>
304296
<span class="cline-any cline-yes">1x</span>
@@ -640,7 +632,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
640632
* ];
641633
*
642634
* // Define an input strategy:
643-
* function inputStrategy( x ) {
635+
* function strategy( x ) {
644636
* return {
645637
* 'dtype': x.dtype,
646638
* 'data': x.data,
@@ -651,10 +643,6 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
651643
* };
652644
* }
653645
*
654-
* var strategy = {
655-
* 'input': inputStrategy
656-
* };
657-
*
658646
* // Apply strided function:
659647
* blockednullary2d( wrapper, [ x, sortOrder ], views, [ 1, 3 ], [ 12, 4 ], strategy, {} );
660648
*
@@ -742,7 +730,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
742730
<span class="cstat-no" title="statement not covered" > for ( i1 = 0; i1 &lt; s1; i1++ ) {</span>
743731
<span class="cstat-no" title="statement not covered" > for ( i0 = 0; i0 &lt; s0; i0++ ) {</span>
744732
<span class="cstat-no" title="statement not covered" > setViewOffsets( views, iv );</span>
745-
<span class="cstat-no" title="statement not covered" > v[ 0 ] = strategyX.input( views[ 0 ] );</span>
733+
<span class="cstat-no" title="statement not covered" > v[ 0 ] = strategyX( views[ 0 ] );</span>
746734
<span class="cstat-no" title="statement not covered" > fcn( v, opts );</span>
747735
<span class="cstat-no" title="statement not covered" > incrementOffsets( iv, dv0 );</span>
748736
<span class="cstat-no" title="statement not covered" > }</span>
@@ -763,7 +751,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
763751
<div class='footer quiet pad2 space-top1 center small'>
764752
Code coverage generated by
765753
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
766-
at 2025-07-29T08:42:25.108Z
754+
at 2025-07-30T10:07:56.994Z
767755
</div>
768756
<script src="../../../../prettify.js"></script>
769757
<script>

ndarray/base/nullary-strided1d/3d.js.html

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">63.59% </span>
26+
<span class="strong">62.91% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>138/217</span>
28+
<span class='fraction'>134/213</span>
2929
</div>
3030

3131

@@ -44,9 +44,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
4444

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">63.59% </span>
47+
<span class="strong">62.91% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>138/217</span>
49+
<span class='fraction'>134/213</span>
5050
</div>
5151

5252

@@ -276,15 +276,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
276276
<a name='L211'></a><a href='#L211'>211</a>
277277
<a name='L212'></a><a href='#L212'>212</a>
278278
<a name='L213'></a><a href='#L213'>213</a>
279-
<a name='L214'></a><a href='#L214'>214</a>
280-
<a name='L215'></a><a href='#L215'>215</a>
281-
<a name='L216'></a><a href='#L216'>216</a>
282-
<a name='L217'></a><a href='#L217'>217</a>
283-
<a name='L218'></a><a href='#L218'>218</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
284-
<span class="cline-any cline-yes">1x</span>
285-
<span class="cline-any cline-yes">1x</span>
286-
<span class="cline-any cline-yes">1x</span>
287-
<span class="cline-any cline-yes">1x</span>
279+
<a name='L214'></a><a href='#L214'>214</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
288280
<span class="cline-any cline-yes">1x</span>
289281
<span class="cline-any cline-yes">1x</span>
290282
<span class="cline-any cline-yes">1x</span>
@@ -609,7 +601,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
609601
* ];
610602
*
611603
* // Define an input strategy:
612-
* function inputStrategy( x ) {
604+
* function strategy( x ) {
613605
* return {
614606
* 'dtype': x.dtype,
615607
* 'data': x.data,
@@ -620,10 +612,6 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
620612
* };
621613
* }
622614
*
623-
* var strategy = {
624-
* 'input': inputStrategy
625-
* };
626-
*
627615
* // Apply strided function:
628616
* nullary3d( wrapper, [ x, sortOrder ], views, [ 1, 1, 3 ], [ 12, 12, 4 ], true, strategy, {} );
629617
*
@@ -700,7 +688,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
700688
<span class="cstat-no" title="statement not covered" > for ( i1 = 0; i1 &lt; S1; i1++ ) {</span>
701689
<span class="cstat-no" title="statement not covered" > for ( i0 = 0; i0 &lt; S0; i0++ ) {</span>
702690
<span class="cstat-no" title="statement not covered" > setViewOffsets( views, iv );</span>
703-
<span class="cstat-no" title="statement not covered" > v[ 0 ] = strategyX.input( views[ 0 ] );</span>
691+
<span class="cstat-no" title="statement not covered" > v[ 0 ] = strategyX( views[ 0 ] );</span>
704692
<span class="cstat-no" title="statement not covered" > fcn( v, opts );</span>
705693
<span class="cstat-no" title="statement not covered" > incrementOffsets( iv, dv0 );</span>
706694
<span class="cstat-no" title="statement not covered" > }</span>
@@ -721,7 +709,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">ndarra
721709
<div class='footer quiet pad2 space-top1 center small'>
722710
Code coverage generated by
723711
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
724-
at 2025-07-29T08:42:25.108Z
712+
at 2025-07-30T10:07:56.994Z
725713
</div>
726714
<script src="../../../../prettify.js"></script>
727715
<script>

0 commit comments

Comments
 (0)