You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ( !isLayout( order ) ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
347
-
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. First argument must be a valid order. Value: `%s`.', order ) );</span>
348
-
<spanclass="cstat-no" title="statement not covered" > }</span>
349
-
if ( !isMatrixTriangle( uplo ) ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
350
-
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. Second argument must be a valid side. Value: `%s`.', uplo ) );</span>
351
-
<spanclass="cstat-no" title="statement not covered" > }</span>
352
-
if ( !isTransposeOperation( trans ) ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
353
-
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. Third argument must be a valid transpose operation. Value: `%s`.', trans ) );</span>
354
-
<spanclass="cstat-no" title="statement not covered" > }</span>
355
-
if ( !isDiagonalType( diag ) ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
356
-
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. Second argument must be a valid diagonal type. Value: `%s`.', diag ) );</span>
357
-
<spanclass="cstat-no" title="statement not covered" > }</span>
358
-
if ( isRowMajor( order ) && LDA < max( 1, N ) ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
359
-
<spanclass="cstat-no" title="statement not covered" > throw new RangeError( format( 'invalid argument. Sixth argument must be greater than or equal to max(1,%d). Value: `%d`.', N, LDA ) );</span>
360
-
<spanclass="cstat-no" title="statement not covered" > }</span>
346
+
if ( !isLayout( order ) ) {
347
+
throw new TypeError( format( 'invalid argument. First argument must be a valid order. Value: `%s`.', order ) );
348
+
}
349
+
if ( !isMatrixTriangle( uplo ) ) {
350
+
throw new TypeError( format( 'invalid argument. Second argument must be a valid side. Value: `%s`.', uplo ) );
351
+
}
352
+
if ( !isTransposeOperation( trans ) ) {
353
+
throw new TypeError( format( 'invalid argument. Third argument must be a valid transpose operation. Value: `%s`.', trans ) );
354
+
}
355
+
if ( !isDiagonalType( diag ) ) {
356
+
throw new TypeError( format( 'invalid argument. Second argument must be a valid diagonal type. Value: `%s`.', diag ) );
357
+
}
358
+
if ( isRowMajor( order ) && LDA < max( 1, N ) ) {
359
+
throw new RangeError( format( 'invalid argument. Sixth argument must be greater than or equal to max(1,%d). Value: `%d`.', N, LDA ) );
360
+
}
361
361
if ( normin !== 'yes' && normin !== 'no' ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
362
362
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. Fifth argument must be either yes or no. Value: `%d`.', normin ) );</span>
363
363
<spanclass="cstat-no" title="statement not covered" > }</span>
364
-
if ( isColumnMajor( order ) ) <spanclass="branch-0 cbranch-no" title="branch not covered" >{</span>
365
-
<spanclass="cstat-no" title="statement not covered" > sa1 = 1;</span>
366
-
<spanclass="cstat-no" title="statement not covered" > sa2 = LDA;</span>
0 commit comments