Skip to content

Commit 0da4e78

Browse files
committed
chore: cleanup
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent f47e281 commit 0da4e78

File tree

2 files changed

+0
-128
lines changed

2 files changed

+0
-128
lines changed

lib/node_modules/@stdlib/lapack/base/dgebak/test/test.dgebak.js

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -175,24 +175,8 @@ tape( 'the function returns the array unchanged when M = 0', function test( t )
175175
scale = new Float64Array( [ 1.0, 2.0, 3.0 ] );
176176
V = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
177177

178-
/*
179-
V = [
180-
[ 1.0, 2.0 ],
181-
[ 3.0, 4.0 ],
182-
[ 5.0, 6.0 ]
183-
]
184-
*/
185-
186178
expected = new Float64Array( V );
187179

188-
/*
189-
expected = [
190-
[ 1.0, 2.0 ],
191-
[ 3.0, 4.0 ],
192-
[ 5.0, 6.0 ]
193-
]
194-
*/
195-
196180
actual = dgebak( 'column-major', 'both', 'right', 3, 0, 0, 2, scale, V, 2 );
197181

198182
t.deepEqual( actual, expected, 'returns expected value' );
@@ -208,24 +192,8 @@ tape( 'the function returns the array unchanged when job = none (row-major)', fu
208192
scale = new Float64Array( [ 1.0, 2.0, 3.0 ] );
209193
V = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
210194

211-
/*
212-
V = [
213-
[ 1.0, 2.0 ],
214-
[ 3.0, 4.0 ],
215-
[ 5.0, 6.0 ]
216-
]
217-
*/
218-
219195
expected = new Float64Array( V );
220196

221-
/*
222-
expected = [
223-
[ 1.0, 2.0 ],
224-
[ 3.0, 4.0 ],
225-
[ 5.0, 6.0 ]
226-
]
227-
*/
228-
229197
actual = dgebak( 'row-major', 'none', 'right', 3, 2, 0, 2, scale, V, 2 );
230198

231199
t.deepEqual( actual, expected, 'returns expected value' );
@@ -241,24 +209,8 @@ tape( 'the function returns the array unchanged when job = none (column-major)',
241209
scale = new Float64Array( [ 1.0, 2.0, 3.0 ] );
242210
V = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
243211

244-
/*
245-
V = [
246-
[ 1.0, 2.0 ],
247-
[ 3.0, 4.0 ],
248-
[ 5.0, 6.0 ]
249-
]
250-
*/
251-
252212
expected = new Float64Array( V );
253213

254-
/*
255-
expected = [
256-
[ 1.0, 2.0 ],
257-
[ 3.0, 4.0 ],
258-
[ 5.0, 6.0 ]
259-
]
260-
*/
261-
262214
actual = dgebak( 'column-major', 'none', 'right', 3, 2, 0, 2, scale, V, 3 );
263215

264216
t.deepEqual( actual, expected, 'returns expected value' );

lib/node_modules/@stdlib/lapack/base/dgebak/test/test.ndarray.js

Lines changed: 0 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -175,24 +175,8 @@ tape( 'the function returns the array unchanged when M = 0', function test( t )
175175
scale = new Float64Array( [ 1.0, 2.0, 3.0 ] );
176176
V = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
177177

178-
/*
179-
V = [
180-
[ 1.0, 2.0 ],
181-
[ 3.0, 4.0 ],
182-
[ 5.0, 6.0 ]
183-
]
184-
*/
185-
186178
expected = new Float64Array( V );
187179

188-
/*
189-
expected = [
190-
[ 1.0, 2.0 ],
191-
[ 3.0, 4.0 ],
192-
[ 5.0, 6.0 ]
193-
]
194-
*/
195-
196180
actual = dgebak( 'both', 'right', 3, 0, 0, 2, scale, 1, 0, V, 2, 1, 0 );
197181

198182
t.deepEqual( actual, expected, 'returns expected value' );
@@ -208,24 +192,8 @@ tape( 'the function returns the array unchanged when job = none (row-major)', fu
208192
scale = new Float64Array( [ 1.0, 2.0, 3.0 ] );
209193
V = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
210194

211-
/*
212-
V = [
213-
[ 1.0, 2.0 ],
214-
[ 3.0, 4.0 ],
215-
[ 5.0, 6.0 ]
216-
]
217-
*/
218-
219195
expected = new Float64Array( V );
220196

221-
/*
222-
expected = [
223-
[ 1.0, 2.0 ],
224-
[ 3.0, 4.0 ],
225-
[ 5.0, 6.0 ]
226-
]
227-
*/
228-
229197
actual = dgebak( 'none', 'right', 3, 2, 0, 2, scale, 1, 0, V, 2, 1, 0 );
230198

231199
t.deepEqual( actual, expected, 'returns expected value' );
@@ -241,24 +209,8 @@ tape( 'the function returns the array unchanged when job = none (column-major)',
241209
scale = new Float64Array( [ 1.0, 2.0, 3.0 ] );
242210
V = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
243211

244-
/*
245-
V = [
246-
[ 1.0, 2.0 ],
247-
[ 3.0, 4.0 ],
248-
[ 5.0, 6.0 ]
249-
]
250-
*/
251-
252212
expected = new Float64Array( V );
253213

254-
/*
255-
expected = [
256-
[ 1.0, 2.0 ],
257-
[ 3.0, 4.0 ],
258-
[ 5.0, 6.0 ]
259-
]
260-
*/
261-
262214
actual = dgebak( 'none', 'right', 3, 2, 0, 2, scale, 1, 0, V, 1, 3, 0 );
263215

264216
t.deepEqual( actual, expected, 'returns expected value' );
@@ -834,24 +786,8 @@ tape( 'the function returns the array unchanged when job = none (row-major) (off
834786
scale = new Float64Array( [ 0.0, 0.0, 1.0, 2.0, 3.0 ] );
835787
V = new Float64Array( [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
836788

837-
/*
838-
V = [
839-
[ 1.0, 2.0 ],
840-
[ 3.0, 4.0 ],
841-
[ 5.0, 6.0 ]
842-
]
843-
*/
844-
845789
expected = new Float64Array( V );
846790

847-
/*
848-
expected = [
849-
[ 1.0, 2.0 ],
850-
[ 3.0, 4.0 ],
851-
[ 5.0, 6.0 ]
852-
]
853-
*/
854-
855791
actual = dgebak( 'none', 'right', 3, 2, 0, 2, scale, 1, 2, V, 2, 1, 1 );
856792

857793
t.deepEqual( actual, expected, 'returns expected value' );
@@ -867,24 +803,8 @@ tape( 'the function returns the array unchanged when job = none (column-major) (
867803
scale = new Float64Array( [ 0.0, 0.0, 1.0, 2.0, 3.0 ] );
868804
V = new Float64Array( [ 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
869805

870-
/*
871-
V = [
872-
[ 1.0, 2.0 ],
873-
[ 3.0, 4.0 ],
874-
[ 5.0, 6.0 ]
875-
]
876-
*/
877-
878806
expected = new Float64Array( V );
879807

880-
/*
881-
expected = [
882-
[ 1.0, 2.0 ],
883-
[ 3.0, 4.0 ],
884-
[ 5.0, 6.0 ]
885-
]
886-
*/
887-
888808
actual = dgebak( 'none', 'right', 3, 2, 0, 2, scale, 1, 2, V, 1, 3, 1 );
889809

890810
t.deepEqual( actual, expected, 'returns expected value' );

0 commit comments

Comments
 (0)