Skip to content

Commit abb6478

Browse files
committed
Update artifacts
1 parent 7b9a6f4 commit abb6478

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

lapack/base/dlarf1f/base.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
363363
* - `C` is overwritten by `H * C` if side = `left` and `C * H` if side = `right`.
364364
*
365365
* @private
366-
* @param {string} side - use `left` to form `H * C` and `right` to from `C * H`
366+
* @param {string} side - specifies the side of multiplication with `C`. Use `left` to form `H * C` and `right` to from `C * H`.
367367
* @param {NonNegativeInteger} M - number of rows in `C`
368368
* @param {NonNegativeInteger} N - number of columns in `C`
369369
* @param {Float64Array} V - the vector `v` in the representation of `H`
@@ -454,7 +454,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
454454
<div class='footer quiet pad2 space-top1 center small'>
455455
Code coverage generated by
456456
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
457-
at 2025-07-06T04:15:18.086Z
457+
at 2025-07-09T07:58:15.992Z
458458
</div>
459459
<script src="../../../../prettify.js"></script>
460460
<script>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[409,409,100,40,40,100,3,3,100,409,409,100,"29ec29281f03e5cc35fe255738b28593c0107220","2025-07-06 04:14:12 +0000"]
1+
[409,409,100,40,40,100,3,3,100,409,409,100,"1b4bf6c0e2be3eac9361060d2455220c98c5605a","2025-07-09 07:56:44 +0000"]

lapack/base/dlarf1f/dlarf1f.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
314314
* - `C` is overwritten by `H * C` if side = `left` and `C * H` if side = `right`.
315315
*
316316
* @param {string} order - storage layout
317-
* @param {string} side - use `left` to form `H * C` and `right` to from `C * H`
317+
* @param {string} side - specifies the side of multiplication with `C`. Use `left` to form `H * C` and `right` to from `C * H`.
318318
* @param {NonNegativeInteger} M - number of rows in `C`
319319
* @param {NonNegativeInteger} N - number of columns in `C`
320320
* @param {Float64Array} V - the vector `v` in the representation of `H`
@@ -382,7 +382,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
382382
<div class='footer quiet pad2 space-top1 center small'>
383383
Code coverage generated by
384384
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
385-
at 2025-07-06T04:15:18.086Z
385+
at 2025-07-09T07:58:15.992Z
386386
</div>
387387
<script src="../../../../prettify.js"></script>
388388
<script>

lapack/base/dlarf1f/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/dlarf1f/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-07-06T04:15:18.086Z
164+
at 2025-07-09T07:58:15.992Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

lapack/base/dlarf1f/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
265265
<div class='footer quiet pad2 space-top1 center small'>
266266
Code coverage generated by
267267
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
268-
at 2025-07-06T04:15:18.086Z
268+
at 2025-07-09T07:58:15.992Z
269269
</div>
270270
<script src="../../../../prettify.js"></script>
271271
<script>

lapack/base/dlarf1f/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-07-06T04:15:18.086Z
178+
at 2025-07-09T07:58:15.992Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

lapack/base/dlarf1f/ndarray.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
256256
* - `V` should have `1 + (M-1) * abs(strideV)` indexed elements if side = `left` and `1 + (N-1) * abs(strideV)` indexed elements if side = `right`.
257257
* - `C` is overwritten by `H * C` if side = `left` and `C * H` if side = `right`.
258258
*
259-
* @param {string} side - use `left` to form `H * C` and `right` to from `C * H`
259+
* @param {string} side - specifies the side of multiplication with `C`. Use `left` to form `H * C` and `right` to from `C * H`.
260260
* @param {NonNegativeInteger} M - number of rows in `C`
261261
* @param {NonNegativeInteger} N - number of columns in `C`
262262
* @param {Float64Array} V - the vector `v` in the representation of `H`
@@ -301,7 +301,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
301301
<div class='footer quiet pad2 space-top1 center small'>
302302
Code coverage generated by
303303
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
304-
at 2025-07-06T04:15:18.086Z
304+
at 2025-07-09T07:58:15.992Z
305305
</div>
306306
<script src="../../../../prettify.js"></script>
307307
<script>

0 commit comments

Comments
 (0)