Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: wrong logic
---
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
---
  • Loading branch information
Shabareesh Shetty authored and Shabareesh Shetty committed Jul 22, 2025
commit c6b17b26268b719c3699e2c8a5fc7489aac6822d
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/dtbmv/lib/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
oa = offsetA;
tmp = x[ ix1 ];
if ( nonunit ) {
oa2 = oa + ( sa1 * K );
oa2 = oa + ( sa1 * i1 );
tmp = A[ oa2 ] * x[ ix1 ];
}
for ( i0 = max( 0, i1 - K ); i0 < i1; i0++ ) {
Expand Down Expand Up @@ -154,7 +154,7 @@
}
return x;
}
// ( !isrm && trans !== 'no-transpose' && uplo === 'lower' ) || ( isrm && trans === 'no-transpose' && uplo === 'upper' )

Check warning on line 157 in lib/node_modules/@stdlib/blas/base/dtbmv/lib/base.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "uplo"

Check warning on line 157 in lib/node_modules/@stdlib/blas/base/dtbmv/lib/base.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "isrm"

Check warning on line 157 in lib/node_modules/@stdlib/blas/base/dtbmv/lib/base.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "uplo"

Check warning on line 157 in lib/node_modules/@stdlib/blas/base/dtbmv/lib/base.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unknown word: "isrm"
ix1 = ox;
for ( i1 = 0; i1 < N; i1++ ) {
oa = offsetA + ( sa1 * i1 );
Expand Down