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
<spanclass="cstat-no" title="statement not covered" ><spanclass="fstat-no" title="function not covered" >function dger( order, M, N, alpha, x, strideX, y, strideY, A, LDA ) {</span></span>
273
-
<spanclass="cstat-no" title="statement not covered" > var ord = resolve( order );</span>
274
-
<spanclass="cstat-no" title="statement not covered" > if ( ord === null ) {</span>
298
+
<spanclass="cstat-no" title="statement not covered" > if ( !isLayout( order ) ) {</span>
275
299
<spanclass="cstat-no" title="statement not covered" > throw new TypeError( format( 'invalid argument. First argument must be a valid order. Value: `%s`.', order ) );</span>
276
300
<spanclass="cstat-no" title="statement not covered" > }</span>
277
-
<spanclass="cstat-no" title="statement not covered" > addon( ord, M, N, alpha, x, strideX, y, strideY, A, LDA );</span>
301
+
<spanclass="cstat-no" title="statement not covered" > if ( M < 0 ) {</span>
302
+
<spanclass="cstat-no" title="statement not covered" > throw new RangeError( format( 'invalid argument. Second argument must be a nonnegative integer. Value: `%d`.', M ) );</span>
303
+
<spanclass="cstat-no" title="statement not covered" > }</span>
304
+
<spanclass="cstat-no" title="statement not covered" > if ( N < 0 ) {</span>
305
+
<spanclass="cstat-no" title="statement not covered" > throw new RangeError( format( 'invalid argument. Third argument must be a nonnegative integer. Value: `%d`.', N ) );</span>
306
+
<spanclass="cstat-no" title="statement not covered" > }</span>
307
+
<spanclass="cstat-no" title="statement not covered" > if ( strideX === 0 ) {</span>
308
+
<spanclass="cstat-no" title="statement not covered" > throw new RangeError( format( 'invalid argument. Sixth argument must be non-zero. Value: `%d`.', strideX ) );</span>
309
+
<spanclass="cstat-no" title="statement not covered" > }</span>
310
+
<spanclass="cstat-no" title="statement not covered" > if ( strideY === 0 ) {</span>
311
+
<spanclass="cstat-no" title="statement not covered" > throw new RangeError( format( 'invalid argument. Eighth argument must be non-zero. Value: `%d`.', strideY ) );</span>
312
+
<spanclass="cstat-no" title="statement not covered" > }</span>
313
+
<spanclass="cstat-no" title="statement not covered" > addon( resolve( order ), M, N, alpha, x, strideX, y, strideY, A, LDA );</span>
278
314
<spanclass="cstat-no" title="statement not covered" > return A;</span>
279
315
<spanclass="cstat-no" title="statement not covered" >}</span>
0 commit comments