/**
* Makes sure exceptions are thrown for badly shaped input matrices.
*/
private void checkMultInput( Method func, boolean transA , boolean transB ) {
// bad block size
BlockMatrix64F A = new BlockMatrix64F(5,4,3);
BlockMatrix64F B = new BlockMatrix64F(4,6,3);
BlockMatrix64F C = new BlockMatrix64F(5,6,4);
invokeErrorCheck(func, transA , transB , A, B, C);
C.blockLength = 3;
B.blockLength = 4;
invokeErrorCheck(func, transA , transB ,A, B, C);