Skip to content

Commit b5bd415

Browse files
committed
Update artifacts
1 parent 0ffae22 commit b5bd415

File tree

8 files changed

+33
-27
lines changed

8 files changed

+33
-27
lines changed

lapack/base/dlange/base.js.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
819819
* @param {integer} strideA1 - stride of the first dimension of `A`
820820
* @param {integer} strideA2 - stride of the second dimension of `A`
821821
* @param {NonNegativeInteger} offsetA - starting index of `A`
822-
* @param {Float64Array} work - only used to compute the infinity norm, expects `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
822+
* @param {Float64Array} work - work array, should have `M` indexed elements
823823
* @param {integer} strideWork - stride length of `work`
824824
* @param {NonNegativeInteger} offsetWork - starting index of `work`
825825
* @returns {number} required norm value
@@ -944,7 +944,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
944944
* @param {integer} strideA1 - stride of the first dimension of `A`
945945
* @param {integer} strideA2 - stride of the second dimension of `A`
946946
* @param {NonNegativeInteger} offsetA - starting index of `A`
947-
* @param {Float64Array} work - only used to compute the infinity norm, expects `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
947+
* @param {Float64Array} work - only used to compute the infinity norm, should have `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
948948
* @param {integer} strideWork - stride length of `work`
949949
* @param {NonNegativeInteger} offsetWork - starting index of `work`
950950
* @returns {number} required norm value
@@ -991,7 +991,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
991991
<div class='footer quiet pad2 space-top1 center small'>
992992
Code coverage generated by
993993
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
994-
at 2025-06-04T19:52:25.758Z
994+
at 2025-06-06T05:27:08.991Z
995995
</div>
996996
<script src="../../../../prettify.js"></script>
997997
<script>

lapack/base/dlange/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[626,626,100,46,48,95.8333,7,7,100,626,626,100,"5cbf09d9b8d89b7a4656d9e1b89c102dec537b09","2025-06-04 19:51:06 +0000"]
1+
[628,628,100,46,48,95.8333,7,7,100,628,628,100,"6e0d355ec6fde705de38280fc4ba9f45c3281f74","2025-06-06 05:25:09 +0000"]

lapack/base/dlange/dlange.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'>92/92</span>
28+
<span class='fraction'>93/93</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'>92/92</span>
49+
<span class='fraction'>93/93</span>
5050
</div>
5151

5252

@@ -155,7 +155,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
155155
<a name='L90'></a><a href='#L90'>90</a>
156156
<a name='L91'></a><a href='#L91'>91</a>
157157
<a name='L92'></a><a href='#L92'>92</a>
158-
<a name='L93'></a><a href='#L93'>93</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
158+
<a name='L93'></a><a href='#L93'>93</a>
159+
<a name='L94'></a><a href='#L94'>94</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
160+
<span class="cline-any cline-yes">2x</span>
159161
<span class="cline-any cline-yes">2x</span>
160162
<span class="cline-any cline-yes">2x</span>
161163
<span class="cline-any cline-yes">2x</span>
@@ -275,6 +277,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
275277
var max = require( '@stdlib/math/base/special/max' );
276278
var format = require( '@stdlib/string/format' );
277279
var isOperation = require( './isoperation.js' );
280+
var NORMS = require( './norms.json' ).norms;
278281
var base = require( './base.js' );
279282
&nbsp;
280283
&nbsp;
@@ -297,7 +300,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
297300
* @param {NonNegativeInteger} N - number of columns in `A`
298301
* @param {Float64Array} A - input array
299302
* @param {PositiveInteger} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
300-
* @param {Float64Array} work - only used to compute the infinity norm, expects `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
303+
* @param {Float64Array} work - only used to compute the infinity norm, should have `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
301304
* @throws {TypeError} first argument must be a valid order
302305
* @throws {TypeError} second argument must be a valid operation
303306
* @throws {RangeError} sixth argument must be greater than or equal to max(1,N)
@@ -320,7 +323,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
320323
throw new TypeError( format( 'invalid argument. First argument must be a valid order. Value: `%s`.', order ) );
321324
}
322325
if ( !isOperation( norm ) ) {
323-
throw new TypeError( format( 'invalid argument. Second argument must be a valid operation. Value: `%s`.', norm ) );
326+
throw new TypeError( format( 'invalid argument. Second argument must be one of the following: "%s". Value: `%s`.', NORMS.join( '", "' ), norm ) );
324327
}
325328
if ( isRowMajor( order ) &amp;&amp; LDA &lt; max( 1, N ) ) {
326329
throw new RangeError( format( 'invalid argument. Sixth argument must be greater than or equal to max(1,%d). Value: `%d`.', N, LDA ) );
@@ -346,7 +349,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
346349
<div class='footer quiet pad2 space-top1 center small'>
347350
Code coverage generated by
348351
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
349-
at 2025-06-04T19:52:25.758Z
352+
at 2025-06-06T05:27:08.991Z
350353
</div>
351354
<script src="../../../../prettify.js"></script>
352355
<script>

lapack/base/dlange/index.html

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

3131

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

5252

@@ -99,13 +99,13 @@ <h1><a href="../../../../index.html">All files</a> lapack/base/dlange/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="92" class="abs high">92/92</td>
102+
<td data-value="93" class="abs high">93/93</td>
103103
<td data-value="100" class="pct high">100%</td>
104104
<td data-value="11" class="abs high">11/11</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="92" class="abs high">92/92</td>
108+
<td data-value="93" class="abs high">93/93</td>
109109
</tr>
110110

111111
<tr>
@@ -159,13 +159,13 @@ <h1><a href="../../../../index.html">All files</a> lapack/base/dlange/lib</h1>
159159
<div class="chart"><div class="cover-fill cover-full" style="width: 100%"></div><div class="cover-empty" style="width: 0%"></div></div>
160160
</td>
161161
<td data-value="100" class="pct high">100%</td>
162-
<td data-value="72" class="abs high">72/72</td>
162+
<td data-value="73" class="abs high">73/73</td>
163163
<td data-value="100" class="pct high">100%</td>
164164
<td data-value="4" class="abs high">4/4</td>
165165
<td data-value="100" class="pct high">100%</td>
166166
<td data-value="1" class="abs high">1/1</td>
167167
<td data-value="100" class="pct high">100%</td>
168-
<td data-value="72" class="abs high">72/72</td>
168+
<td data-value="73" class="abs high">73/73</td>
169169
</tr>
170170

171171
</tbody>
@@ -176,7 +176,7 @@ <h1><a href="../../../../index.html">All files</a> lapack/base/dlange/lib</h1>
176176
<div class='footer quiet pad2 space-top1 center small'>
177177
Code coverage generated by
178178
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
179-
at 2025-06-04T19:52:25.758Z
179+
at 2025-06-06T05:27:08.991Z
180180
</div>
181181
<script src="../../../../prettify.js"></script>
182182
<script>

lapack/base/dlange/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
244244
<div class='footer quiet pad2 space-top1 center small'>
245245
Code coverage generated by
246246
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
247-
at 2025-06-04T19:52:25.758Z
247+
at 2025-06-06T05:27:08.991Z
248248
</div>
249249
<script src="../../../../prettify.js"></script>
250250
<script>

lapack/base/dlange/isoperation.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
214214
&nbsp;
215215
// VARIABLES //
216216
&nbsp;
217-
var NORMS = [ 'max', 'infinity', 'one', 'frobenius' ];
217+
var NORMS = require( './norms.json' ).norms;
218218
&nbsp;
219219
&nbsp;
220220
// MAIN //
@@ -256,7 +256,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
256256
<div class='footer quiet pad2 space-top1 center small'>
257257
Code coverage generated by
258258
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
259-
at 2025-06-04T19:52:25.758Z
259+
at 2025-06-06T05:27:08.991Z
260260
</div>
261261
<script src="../../../../prettify.js"></script>
262262
<script>

lapack/base/dlange/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-06-04T19:52:25.758Z
178+
at 2025-06-06T05:27:08.991Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

lapack/base/dlange/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'>72/72</span>
28+
<span class='fraction'>73/73</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'>72/72</span>
49+
<span class='fraction'>73/73</span>
5050
</div>
5151

5252

@@ -135,7 +135,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
135135
<a name='L70'></a><a href='#L70'>70</a>
136136
<a name='L71'></a><a href='#L71'>71</a>
137137
<a name='L72'></a><a href='#L72'>72</a>
138-
<a name='L73'></a><a href='#L73'>73</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
138+
<a name='L73'></a><a href='#L73'>73</a>
139+
<a name='L74'></a><a href='#L74'>74</a></td><td class="line-coverage quiet"><span class="cline-any cline-yes">2x</span>
140+
<span class="cline-any cline-yes">2x</span>
139141
<span class="cline-any cline-yes">2x</span>
140142
<span class="cline-any cline-yes">2x</span>
141143
<span class="cline-any cline-yes">2x</span>
@@ -231,6 +233,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
231233
&nbsp;
232234
var format = require( '@stdlib/string/format' );
233235
var isOperation = require( './isoperation.js' );
236+
var NORMS = require( './norms.json' ).norms;
234237
var base = require( './base.js' );
235238
&nbsp;
236239
&nbsp;
@@ -253,7 +256,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
253256
* @param {integer} strideA1 - stride of the first dimension of `A`
254257
* @param {integer} strideA2 - stride of the second dimension of `A`
255258
* @param {NonNegativeInteger} offsetA - starting index of `A`
256-
* @param {Float64Array} work - only used to compute the infinity norm, expects `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
259+
* @param {Float64Array} work - only used to compute the infinity norm, should have `M` indexed elements if computing the infinity norm otherwise it's fine to pass a dummy array
257260
* @param {integer} strideWork - stride length of `work`
258261
* @param {NonNegativeInteger} offsetWork - starting index of `work`
259262
* @throws {TypeError} first argument must be a valid operation
@@ -270,7 +273,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
270273
*/
271274
function dlange( norm, M, N, A, strideA1, strideA2, offsetA, work, strideWork, offsetWork ) { // eslint-disable-line max-len
272275
if ( !isOperation( norm ) ) {
273-
throw new TypeError( format( 'invalid argument. First argument must be a valid operation. Value: `%s`.', norm ) );
276+
throw new TypeError( format( 'invalid argument. Second argument must be one of the following: "%s". Value: `%s`.', NORMS.join( '", "' ), norm ) );
274277
}
275278
return base( norm, M, N, A, strideA1, strideA2, offsetA, work, strideWork, offsetWork ); // eslint-disable-line max-len
276279
}
@@ -286,7 +289,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
286289
<div class='footer quiet pad2 space-top1 center small'>
287290
Code coverage generated by
288291
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
289-
at 2025-06-04T19:52:25.758Z
292+
at 2025-06-06T05:27:08.991Z
290293
</div>
291294
<script src="../../../../prettify.js"></script>
292295
<script>

0 commit comments

Comments
 (0)