Skip to content

Commit ac66de0

Browse files
committed
Update artifacts
1 parent ef0fc9f commit ac66de0

File tree

7 files changed

+31
-31
lines changed

7 files changed

+31
-31
lines changed

lapack/base/dgebal/base.js.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -677,10 +677,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
677677
*
678678
* The job parameter can be one of the following:
679679
*
680-
* - 'N': none, return immediately
681-
* - 'P': permute only
682-
* - 'S': scale only
683-
* - 'B': both permute and scale
680+
* - 'none': none, return immediately
681+
* - 'permutate': permute only
682+
* - 'scale': scale only
683+
* - 'both': both permute and scale
684684
*
685685
* The matrix `A` is overwritten by the balanced matrix. Scale factors are stored in the `scale` array.
686686
*
@@ -706,7 +706,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
706706
* var out = new Float64Array( 2 );
707707
* var scale = new Float64Array( 3 );
708708
*
709-
* dgebal( 'B', 3, A, 3, 1, 0, out, 1, 0, scale, 1, 0 );
709+
* dgebal( 'both', 3, A, 3, 1, 0, out, 1, 0, scale, 1, 0 );
710710
* // A =&gt; &lt;Float64Array&gt;[ 1, 12.5, 0, 16, 200, 0, 0, 0, 3 ]
711711
* // out =&gt; &lt;Float64Array&gt;[ 0, 1 ]
712712
* // scale =&gt; &lt;Float64Array&gt;[ 8, 1, 2 ]
@@ -745,7 +745,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
745745
return 0;
746746
}
747747
&nbsp;
748-
if ( job === 'N' ) {
748+
if ( job === 'none' ) {
749749
is = offsetScale;
750750
for ( i = 0; i &lt; N; i++ ) {
751751
scale[ is ] = 1.0;
@@ -761,7 +761,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
761761
k = 0;
762762
l = N - 1;
763763
&nbsp;
764-
if ( job !== 'S' ) {
764+
if ( job !== 'scale' ) {
765765
// Row and column exchange
766766
noconv = true;
767767
while ( noconv ) {
@@ -828,7 +828,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
828828
is += strideScale;
829829
}
830830
&nbsp;
831-
if ( job === 'P' ) {
831+
if ( job === 'permutate' ) {
832832
out[ offsetOut ] = k; // ilo
833833
out[ offsetOut + strideOut ] = l; // ihi
834834
return 0;
@@ -925,7 +925,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
925925
<div class='footer quiet pad2 space-top1 center small'>
926926
Code coverage generated by
927927
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
928-
at 2025-05-13T14:53:27.201Z
928+
at 2025-05-13T18:39:41.446Z
929929
</div>
930930
<script src="../../../../prettify.js"></script>
931931
<script>

lapack/base/dgebal/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[562,572,98.2517,77,80,96.25,3,3,100,562,572,98.2517,"f70eec063734fb5c3215a1a469959bddb524b5bd","2025-05-13 14:51:52 +0000"]
1+
[562,572,98.2517,77,80,96.25,3,3,100,562,572,98.2517,"c9ded9845828c57b17447928be11d48ed4d2ec30","2025-05-13 18:37:14 +0000"]

lapack/base/dgebal/dgebal.js.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -292,10 +292,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
292292
*
293293
* The job parameter can be one of the following:
294294
*
295-
* - 'N': none, return immediately
296-
* - 'P': permute only
297-
* - 'S': scale only
298-
* - 'B': both permute and scale
295+
* - 'none': none, return immediately
296+
* - 'permutate': permute only
297+
* - 'scale': scale only
298+
* - 'both': both permute and scale
299299
* - The matrix `A` is overwritten by the balanced matrix.
300300
*
301301
* @private
@@ -318,7 +318,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
318318
* var out = new Float64Array( 2 );
319319
* var scale = new Float64Array( 3 );
320320
*
321-
* dgebal( 'row-major', 'B', 3, A, 3, out, scale );
321+
* dgebal( 'row-major', 'both', 3, A, 3, out, scale );
322322
* // A =&gt; &lt;Float64Array&gt;[ 1, 12.5, 0, 16, 200, 0, 0, 0, 3 ]
323323
* // out =&gt; &lt;Float64Array&gt;[ 0, 1 ]
324324
* // scale =&gt; &lt;Float64Array&gt;[ 8, 1, 2 ]
@@ -330,8 +330,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
330330
if ( !isLayout( order ) ) {
331331
throw new TypeError( format( 'invalid argument. First argument must be a valid order. Value: `%s`.', order ) );
332332
}
333-
if ( job !== 'B' &amp;&amp; job !== 'S' &amp;&amp; job !== 'P' &amp;&amp; job !== 'N' ) {
334-
throw new TypeError( format( 'invalid argument. Second argument must be one of the following: `B`, `S`, `P`, or `N`. Value: `%s`.', job ) );
333+
if ( job !== 'both' &amp;&amp; job !== 'scale' &amp;&amp; job !== 'permutate' &amp;&amp; job !== 'none' ) {
334+
throw new TypeError( format( 'invalid argument. Second argument must be one of the following: `both`, `scale`, `permutate`, or `none`. Value: `%s`.', job ) );
335335
}
336336
if ( isColumnMajor( order ) ) {
337337
sa1 = 1;
@@ -358,7 +358,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
358358
<div class='footer quiet pad2 space-top1 center small'>
359359
Code coverage generated by
360360
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
361-
at 2025-05-13T14:53:27.201Z
361+
at 2025-05-13T18:39:41.446Z
362362
</div>
363363
<script src="../../../../prettify.js"></script>
364364
<script>

lapack/base/dgebal/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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-13T14:53:27.201Z
164+
at 2025-05-13T18:39:41.446Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

lapack/base/dgebal/index.js.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
248248
* var out = new Float64Array( 2 );
249249
* var scale = new Float64Array( 3 );
250250
*
251-
* dgebal( 'row-major', 'B', 3, A, 3, out, scale );
251+
* dgebal( 'row-major', 'both', 3, A, 3, out, scale );
252252
* // A =&gt; &lt;Float64Array&gt;[ 1, 12.5, 0, 16, 200, 0, 0, 0, 3 ]
253253
* // out =&gt; &lt;Float64Array&gt;[ 0, 1 ]
254254
* // scale =&gt; &lt;Float64Array&gt;[ 8, 1, 2 ]
@@ -261,7 +261,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
261261
* var out = new Float64Array( 2 );
262262
* var scale = new Float64Array( 3 );
263263
*
264-
* dgebal.ndarray( 'B', 3, A, 3, 1, 0, out, 1, 0, scale, 1, 0 );
264+
* dgebal.ndarray( 'both', 3, A, 3, 1, 0, out, 1, 0, scale, 1, 0 );
265265
* // A =&gt; &lt;Float64Array&gt;[ 1, 12.5, 0, 16, 200, 0, 0, 0, 3 ]
266266
* // out =&gt; &lt;Float64Array&gt;[ 0, 1 ]
267267
* // scale =&gt; &lt;Float64Array&gt;[ 8, 1, 2 ]
@@ -298,7 +298,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
298298
<div class='footer quiet pad2 space-top1 center small'>
299299
Code coverage generated by
300300
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
301-
at 2025-05-13T14:53:27.201Z
301+
at 2025-05-13T18:39:41.446Z
302302
</div>
303303
<script src="../../../../prettify.js"></script>
304304
<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-13T14:53:27.201Z
178+
at 2025-05-13T18:39:41.446Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

lapack/base/dgebal/ndarray.js.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -258,10 +258,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
258258
*
259259
* The job parameter can be one of the following:
260260
*
261-
* - 'N': none, return immediately
262-
* - 'P': permute only
263-
* - 'S': scale only
264-
* - 'B': both permute and scale
261+
* - 'none': none, return immediately
262+
* - 'permutate': permute only
263+
* - 'scale': scale only
264+
* - 'both': both permute and scale
265265
* - The matrix `A` is overwritten by the balanced matrix.
266266
*
267267
* @private
@@ -287,14 +287,14 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
287287
* var out = new Float64Array( 2 );
288288
* var scale = new Float64Array( 3 );
289289
*
290-
* dgebal( 'B', 3, A, 3, 1, 0, out, 1, 0, scale, 1, 0 );
290+
* dgebal( 'both', 3, A, 3, 1, 0, out, 1, 0, scale, 1, 0 );
291291
* // A =&gt; &lt;Float64Array&gt;[ 1, 12.5, 0, 16, 200, 0, 0, 0, 3 ]
292292
* // out =&gt; &lt;Float64Array&gt;[ 0, 1 ]
293293
* // scale =&gt; &lt;Float64Array&gt;[ 8, 1, 2 ]
294294
*/
295295
function dgebal( job, N, A, strideA1, strideA2, offsetA, out, strideOut, offsetOut, scale, strideScale, offsetScale ) { // eslint-disable-line max-len, max-params
296-
if ( job !== 'B' &amp;&amp; job !== 'S' &amp;&amp; job !== 'P' &amp;&amp; job !== 'N' ) {
297-
throw new TypeError( format( 'invalid argument. Second argument must be one of the following: `B`, `S`, `P`, or `N`. Value: `%s`.', job ) );
296+
if ( job !== 'both' &amp;&amp; job !== 'scale' &amp;&amp; job !== 'permutate' &amp;&amp; job !== 'none' ) {
297+
throw new TypeError( format( 'invalid argument. Second argument must be one of the following: `both`, `scale`, `permutate`, or `none`. Value: `%s`.', job ) );
298298
}
299299
return base( job, N, A, strideA1, strideA2, offsetA, out, strideOut, offsetOut, scale, strideScale, offsetScale ); // eslint-disable-line max-len
300300
}
@@ -310,7 +310,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
310310
<div class='footer quiet pad2 space-top1 center small'>
311311
Code coverage generated by
312312
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
313-
at 2025-05-13T14:53:27.201Z
313+
at 2025-05-13T18:39:41.446Z
314314
</div>
315315
<script src="../../../../prettify.js"></script>
316316
<script>

0 commit comments

Comments
 (0)