* \brief Set the number of rows and columns blocks */
| 536 | * \brief Set the number of rows and columns blocks |
| 537 | */ |
| 538 | inline void resize(Index brow, Index bcol) |
| 539 | { |
| 540 | m_innerBSize = IsColMajor ? brow : bcol; |
| 541 | m_outerBSize = IsColMajor ? bcol : brow; |
| 542 | } |
| 543 | |
| 544 | /** |
| 545 | * \brief set the block size at runtime for fixed-size block layout |
no outgoing calls
no test coverage detected