We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca5b4e commit d0e1274Copy full SHA for d0e1274
lib/node_modules/@stdlib/blas/base/dtrsv/src/dtrsv.c
@@ -61,7 +61,7 @@ void API_SUFFIX(c_dtrsv)( const CBLAS_LAYOUT layout, const CBLAS_UPLO uplo, cons
61
c_xerbla( 5, "c_dtrsv", "Error: invalid argument. Fifth argument must be a nonnegative integer. Value: `%d`.", N );
62
return;
63
}
64
- if ( LDA < max( 1, N ) ) {
+ if ( LDA < N ) {
65
c_xerbla( 7, "c_dtrsv", "Error: invalid argument. Seventh argument must be greater than or equal to max(1,%d). Value: `%d`.", N, LDA );
66
67
0 commit comments