Skip to content

Commit b30f33f

Browse files
committed
refactor: add cont statements
--- 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: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - 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 2f26be3 commit b30f33f

File tree

1 file changed

+7
-0
lines changed
  • lib/node_modules/@stdlib/lapack/base/dlascl/lib

1 file changed

+7
-0
lines changed

lib/node_modules/@stdlib/lapack/base/dlascl/lib/base.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,24 +493,31 @@ function dlascl( type, KL, KU, CFROM, CTO, M, N, A, strideA1, strideA2, offsetA
493493

494494
if ( type === 'general' ) {
495495
scaleGeneral( M, N, A, strideA1, strideA2, offsetA, mul );
496+
continue;
496497
}
497498
if ( type === 'upper' ) {
498499
scaleUpper( M, N, A, strideA1, strideA2, offsetA, isrm, mul );
500+
continue;
499501
}
500502
if ( type === 'lower' ) {
501503
scaleLower( M, N, A, strideA1, strideA2, offsetA, isrm, mul );
504+
continue;
502505
}
503506
if ( type === 'upper-hessenberg' ) {
504507
scaleUpperHHessenberg( M, N, A, strideA1, strideA2, offsetA, isrm, mul );
508+
continue;
505509
}
506510
if ( type === 'symmetric-banded-lower' ) {
507511
scaleSymmetricBandedLower( KL, M, N, A, strideA1, strideA2, offsetA, isrm, mul );
512+
continue;
508513
}
509514
if ( type === 'symmetric-banded-upper' ) {
510515
scaleSymmetricBandedUpper( KU, M, N, A, strideA1, strideA2, offsetA, isrm, mul );
516+
continue;
511517
}
512518
if ( type === 'banded' ) {
513519
scaleBanded( KL, KU, M, N, A, strideA1, strideA2, offsetA, mul );
520+
continue;
514521
}
515522
}
516523

0 commit comments

Comments
 (0)