Skip to content

Commit 3c93681

Browse files
committed
Update artifacts
1 parent d150bcb commit 3c93681

File tree

7 files changed

+59
-44
lines changed

7 files changed

+59
-44
lines changed

lapack/base/dgebal/base.js.html

Lines changed: 11 additions & 8 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">lapack
2323
<div class='clearfix'>
2424

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">97.19% </span>
26+
<span class="strong">97.2% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>277/285</span>
28+
<span class='fraction'>278/286</span>
2929
</div>
3030

3131

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

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">97.19% </span>
47+
<span class="strong">97.2% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>277/285</span>
49+
<span class='fraction'>278/286</span>
5050
</div>
5151

5252

@@ -348,7 +348,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
348348
<a name='L283'></a><a href='#L283'>283</a>
349349
<a name='L284'></a><a href='#L284'>284</a>
350350
<a name='L285'></a><a href='#L285'>285</a>
351-
<a name='L286'></a><a href='#L286'>286</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
351+
<a name='L286'></a><a href='#L286'>286</a>
352+
<a name='L287'></a><a href='#L287'>287</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
353+
<span class="cline-any cline-yes">3x</span>
352354
<span class="cline-any cline-yes">3x</span>
353355
<span class="cline-any cline-yes">3x</span>
354356
<span class="cline-any cline-yes">3x</span>
@@ -691,7 +693,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
691693
* @param {integer} strideA1 - stride of the first dimension of `A`
692694
* @param {integer} strideA2 - stride of the second dimension of `A`
693695
* @param {NonNegativeInteger} offsetA - starting index for `A`
694-
* @param {Float64Array} out - stores the first and last row/column of the balanced submatrix
696+
* @param {Int32Array} out - stores the first and last row/column of the balanced submatrix
695697
* @param {integer} strideOut - stride of `out`
696698
* @param {NonNegativeInteger} offsetOut - starting index for `out`
697699
* @param {Float64Array} scale - array containing permutation and scaling information
@@ -701,9 +703,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
701703
*
702704
* @example
703705
* var Float64Array = require( '@stdlib/array/float64' );
706+
* var Int32Array = require( '@stdlib/array/int32' );
704707
*
705708
* var A = new Float64Array( [ 1.0, 100.0, 0.0, 2.0, 200.0, 0.0, 0.0, 0.0, 3.0 ] );
706-
* var out = new Float64Array( 2 );
709+
* var out = new Int32Array( 2 );
707710
* var scale = new Float64Array( 3 );
708711
*
709712
* dgebal( 'both', 3, A, 3, 1, 0, out, 1, 0, scale, 1, 0 );
@@ -925,7 +928,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
925928
<div class='footer quiet pad2 space-top1 center small'>
926929
Code coverage generated by
927930
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
928-
at 2025-05-16T08:19:41.984Z
931+
at 2025-05-16T08:28:40.597Z
929932
</div>
930933
<script src="../../../../prettify.js"></script>
931934
<script>

lapack/base/dgebal/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[564,572,98.6014,77,80,96.25,3,3,100,564,572,98.6014,"2ca9245621659d5cd192ecd497fe784a476d4127","2025-05-16 08:15:15 +0000"]
1+
[569,577,98.6135,77,80,96.25,3,3,100,569,577,98.6135,"a69fa0bc9195aa361a6e587216d4d65b2edec29d","2025-05-16 08:24:40 +0000"]

lapack/base/dgebal/dgebal.js.html

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
2525
<div class='fl pad1y space-right2'>
2626
<span class="strong">100% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>96/96</span>
28+
<span class='fraction'>97/97</span>
2929
</div>
3030

3131

@@ -46,7 +46,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
4646
<div class='fl pad1y space-right2'>
4747
<span class="strong">100% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>96/96</span>
49+
<span class='fraction'>97/97</span>
5050
</div>
5151

5252

@@ -159,7 +159,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
159159
<a name='L94'></a><a href='#L94'>94</a>
160160
<a name='L95'></a><a href='#L95'>95</a>
161161
<a name='L96'></a><a href='#L96'>96</a>
162-
<a name='L97'></a><a href='#L97'>97</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
162+
<a name='L97'></a><a href='#L97'>97</a>
163+
<a name='L98'></a><a href='#L98'>98</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
164+
<span class="cline-any cline-yes">2x</span>
163165
<span class="cline-any cline-yes">2x</span>
164166
<span class="cline-any cline-yes">2x</span>
165167
<span class="cline-any cline-yes">2x</span>
@@ -304,7 +306,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
304306
* @param {NonNegativeInteger} N - number of rows/columns in matrix `A`
305307
* @param {Float64Array} A - input matrix to be balanced
306308
* @param {NonNegativeInteger} LDA - leading dimension of `A`
307-
* @param {Float64Array} out - stores the first and last row/column of the balanced submatrix
309+
* @param {Int32Array} out - stores the first and last row/column of the balanced submatrix
308310
* @param {Float64Array} scale - array containing permutation and scaling information
309311
* @throws {TypeError} first argument must be a valid order
310312
* @throws {TypeError} second argument must be a valid job
@@ -313,9 +315,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
313315
*
314316
* @example
315317
* var Float64Array = require( '@stdlib/array/float64' );
318+
* var Int32Array = require( '@stdlib/array/int32' );
316319
*
317320
* var A = new Float64Array( [ 1.0, 100.0, 0.0, 2.0, 200.0, 0.0, 0.0, 0.0, 3.0 ] );
318-
* var out = new Float64Array( 2 );
321+
* var out = new Int32Array( 2 );
319322
* var scale = new Float64Array( 3 );
320323
*
321324
* dgebal( 'row-major', 'both', 3, A, 3, out, scale );
@@ -358,7 +361,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
358361
<div class='footer quiet pad2 space-top1 center small'>
359362
Code coverage generated by
360363
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
361-
at 2025-05-16T08:19:41.984Z
364+
at 2025-05-16T08:28:40.597Z
362365
</div>
363366
<script src="../../../../prettify.js"></script>
364367
<script>

lapack/base/dgebal/index.html

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

2525
<div class='fl pad1y space-right2'>
26-
<span class="strong">98.6% </span>
26+
<span class="strong">98.61% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>564/572</span>
28+
<span class='fraction'>569/577</span>
2929
</div>
3030

3131

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

4545

4646
<div class='fl pad1y space-right2'>
47-
<span class="strong">98.6% </span>
47+
<span class="strong">98.61% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>564/572</span>
49+
<span class='fraction'>569/577</span>
5050
</div>
5151

5252

@@ -80,17 +80,17 @@ <h1><a href="../../../../index.html">All files</a> lapack/base/dgebal/lib</h1>
8080
</thead>
8181
<tbody><tr>
8282
<td class="file high" data-value="base.js"><a href="base.js.html">base.js</a></td>
83-
<td data-value="97.19" class="pic high">
83+
<td data-value="97.2" class="pic high">
8484
<div class="chart"><div class="cover-fill" style="width: 97%"></div><div class="cover-empty" style="width: 3%"></div></div>
8585
</td>
86-
<td data-value="97.19" class="pct high">97.19%</td>
87-
<td data-value="285" class="abs high">277/285</td>
86+
<td data-value="97.2" class="pct high">97.2%</td>
87+
<td data-value="286" class="abs high">278/286</td>
8888
<td data-value="94.54" class="pct high">94.54%</td>
8989
<td data-value="55" class="abs high">52/55</td>
9090
<td data-value="100" class="pct high">100%</td>
9191
<td data-value="1" class="abs high">1/1</td>
92-
<td data-value="97.19" class="pct high">97.19%</td>
93-
<td data-value="285" class="abs high">277/285</td>
92+
<td data-value="97.2" class="pct high">97.2%</td>
93+
<td data-value="286" class="abs high">278/286</td>
9494
</tr>
9595

9696
<tr>
@@ -99,13 +99,13 @@ <h1><a href="../../../../index.html">All files</a> lapack/base/dgebal/lib</h1>
9999
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
100100
</td>
101101
<td data-value="100" class="pct high">100%</td>
102-
<td data-value="96" class="abs high">96/96</td>
102+
<td data-value="97" class="abs high">97/97</td>
103103
<td data-value="100" class="pct high">100%</td>
104104
<td data-value="14" class="abs high">14/14</td>
105105
<td data-value="100" class="pct high">100%</td>
106106
<td data-value="1" class="abs high">1/1</td>
107107
<td data-value="100" class="pct high">100%</td>
108-
<td data-value="96" class="abs high">96/96</td>
108+
<td data-value="97" class="abs high">97/97</td>
109109
</tr>
110110

111111
<tr>
@@ -114,13 +114,13 @@ <h1><a href="../../../../index.html">All files</a> lapack/base/dgebal/lib</h1>
114114
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
115115
</td>
116116
<td data-value="100" class="pct high">100%</td>
117-
<td data-value="76" class="abs high">76/76</td>
117+
<td data-value="78" class="abs high">78/78</td>
118118
<td data-value="100" class="pct high">100%</td>
119119
<td data-value="3" class="abs high">3/3</td>
120120
<td data-value="100" class="pct high">100%</td>
121121
<td data-value="0" class="abs high">0/0</td>
122122
<td data-value="100" class="pct high">100%</td>
123-
<td data-value="76" class="abs high">76/76</td>
123+
<td data-value="78" class="abs high">78/78</td>
124124
</tr>
125125

126126
<tr>
@@ -144,13 +144,13 @@ <h1><a href="../../../../index.html">All files</a> lapack/base/dgebal/lib</h1>
144144
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
145145
</td>
146146
<td data-value="100" class="pct high">100%</td>
147-
<td data-value="80" class="abs high">80/80</td>
147+
<td data-value="81" class="abs high">81/81</td>
148148
<td data-value="100" class="pct high">100%</td>
149149
<td data-value="7" class="abs high">7/7</td>
150150
<td data-value="100" class="pct high">100%</td>
151151
<td data-value="1" class="abs high">1/1</td>
152152
<td data-value="100" class="pct high">100%</td>
153-
<td data-value="80" class="abs high">80/80</td>
153+
<td data-value="81" class="abs high">81/81</td>
154154
</tr>
155155

156156
</tbody>
@@ -161,7 +161,7 @@ <h1><a href="../../../../index.html">All files</a> lapack/base/dgebal/lib</h1>
161161
<div class='footer quiet pad2 space-top1 center small'>
162162
Code coverage generated by
163163
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
164-
at 2025-05-16T08:19:41.984Z
164+
at 2025-05-16T08:28:40.597Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

lapack/base/dgebal/index.js.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
2525
<div class='fl pad1y space-right2'>
2626
<span class="strong">100% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>76/76</span>
28+
<span class='fraction'>78/78</span>
2929
</div>
3030

3131

@@ -46,7 +46,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
4646
<div class='fl pad1y space-right2'>
4747
<span class="strong">100% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>76/76</span>
49+
<span class='fraction'>78/78</span>
5050
</div>
5151

5252

@@ -139,7 +139,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
139139
<a name='L74'></a><a href='#L74'>74</a>
140140
<a name='L75'></a><a href='#L75'>75</a>
141141
<a name='L76'></a><a href='#L76'>76</a>
142-
<a name='L77'></a><a href='#L77'>77</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
142+
<a name='L77'></a><a href='#L77'>77</a>
143+
<a name='L78'></a><a href='#L78'>78</a>
144+
<a name='L79'></a><a href='#L79'>79</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">3x</span>
145+
<span class="cline-any cline-yes">3x</span>
146+
<span class="cline-any cline-yes">3x</span>
143147
<span class="cline-any cline-yes">3x</span>
144148
<span class="cline-any cline-yes">3x</span>
145149
<span class="cline-any cline-yes">3x</span>
@@ -242,10 +246,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
242246
*
243247
* @example
244248
* var Float64Array = require( '@stdlib/array/float64' );
249+
* var Int32Array = require( '@stdlib/array/int32' );
245250
* var dgebal = require( '@stdlib/lapack/base/dgebal' );
246251
*
247252
* var A = new Float64Array( [ 1.0, 100.0, 0.0, 2.0, 200.0, 0.0, 0.0, 0.0, 3.0 ] );
248-
* var out = new Float64Array( 2 );
253+
* var out = new Int32Array( 2 );
249254
* var scale = new Float64Array( 3 );
250255
*
251256
* dgebal( 'row-major', 'both', 3, A, 3, out, scale );
@@ -255,10 +260,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
255260
*
256261
* @example
257262
* var Float64Array = require( '@stdlib/array/float64' );
263+
* var Int32Array = require( '@stdlib/array/int32' );
258264
* var dgebal = require( '@stdlib/lapack/base/dgebal' );
259265
*
260266
* var A = new Float64Array( [ 1.0, 100.0, 0.0, 2.0, 200.0, 0.0, 0.0, 0.0, 3.0 ] );
261-
* var out = new Float64Array( 2 );
267+
* var out = new Int32Array( 2 );
262268
* var scale = new Float64Array( 3 );
263269
*
264270
* dgebal.ndarray( 'both', 3, A, 3, 1, 0, out, 1, 0, scale, 1, 0 );
@@ -298,7 +304,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
298304
<div class='footer quiet pad2 space-top1 center small'>
299305
Code coverage generated by
300306
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
301-
at 2025-05-16T08:19:41.984Z
307+
at 2025-05-16T08:28:40.597Z
302308
</div>
303309
<script src="../../../../prettify.js"></script>
304310
<script>

lapack/base/dgebal/main.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
175175
<div class='footer quiet pad2 space-top1 center small'>
176176
Code coverage generated by
177177
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
178-
at 2025-05-16T08:19:41.984Z
178+
at 2025-05-16T08:28:40.597Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

lapack/base/dgebal/ndarray.js.html

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
2525
<div class='fl pad1y space-right2'>
2626
<span class="strong">100% </span>
2727
<span class="quiet">Statements</span>
28-
<span class='fraction'>80/80</span>
28+
<span class='fraction'>81/81</span>
2929
</div>
3030

3131

@@ -46,7 +46,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
4646
<div class='fl pad1y space-right2'>
4747
<span class="strong">100% </span>
4848
<span class="quiet">Lines</span>
49-
<span class='fraction'>80/80</span>
49+
<span class='fraction'>81/81</span>
5050
</div>
5151

5252

@@ -143,7 +143,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
143143
<a name='L78'></a><a href='#L78'>78</a>
144144
<a name='L79'></a><a href='#L79'>79</a>
145145
<a name='L80'></a><a href='#L80'>80</a>
146-
<a name='L81'></a><a href='#L81'>81</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
146+
<a name='L81'></a><a href='#L81'>81</a>
147+
<a name='L82'></a><a href='#L82'>82</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
148+
<span class="cline-any cline-yes">2x</span>
147149
<span class="cline-any cline-yes">2x</span>
148150
<span class="cline-any cline-yes">2x</span>
149151
<span class="cline-any cline-yes">2x</span>
@@ -271,7 +273,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
271273
* @param {integer} strideA1 - stride of the first dimension of `A`
272274
* @param {integer} strideA2 - stride of the second dimension of `A`
273275
* @param {NonNegativeInteger} offsetA - starting index for `A`
274-
* @param {Float64Array} out - stores the first and last row/column of the balanced submatrix
276+
* @param {Int32Array} out - stores the first and last row/column of the balanced submatrix
275277
* @param {integer} strideOut - stride of `out`
276278
* @param {NonNegativeInteger} offsetOut - starting index for `out`
277279
* @param {Float64Array} scale - array containing permutation and scaling information
@@ -282,9 +284,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
282284
*
283285
* @example
284286
* var Float64Array = require( '@stdlib/array/float64' );
287+
* var Int32Array = require( '@stdlib/array/int32' );
285288
*
286289
* var A = new Float64Array( [ 1.0, 100.0, 0.0, 2.0, 200.0, 0.0, 0.0, 0.0, 3.0 ] );
287-
* var out = new Float64Array( 2 );
290+
* var out = new Int32Array( 2 );
288291
* var scale = new Float64Array( 3 );
289292
*
290293
* dgebal( 'both', 3, A, 3, 1, 0, out, 1, 0, scale, 1, 0 );
@@ -310,7 +313,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
310313
<div class='footer quiet pad2 space-top1 center small'>
311314
Code coverage generated by
312315
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
313-
at 2025-05-16T08:19:41.984Z
316+
at 2025-05-16T08:28:40.597Z
314317
</div>
315318
<script src="../../../../prettify.js"></script>
316319
<script>

0 commit comments

Comments
 (0)