| 792 | |
| 793 | |
| 794 | struct MatrixQuadrantInds { |
| 795 | |
| 796 | qindex numUpperLeftRows=0, numUpperRightRows=0; |
| 797 | qindex numLowerLeftRows=0, numLowerRightRows=0; |
| 798 | |
| 799 | qindex numUpperLeftCols=0, numUpperRightCols=0; |
| 800 | qindex numLowerLeftCols=0, numLowerRightCols=0; |
| 801 | |
| 802 | qindex rightStartCol=0; |
| 803 | qindex lowerStartRow=0; |
| 804 | |
| 805 | // these are always fixed at 0, but included for clarity |
| 806 | qindex leftStartCol = 0; |
| 807 | qindex upperStartRow = 0; |
| 808 | }; |
| 809 | |
| 810 | |
| 811 | MatrixQuadrantInds getTruncatedMatrixQuadrantInds(qindex numRows, qindex numCols) { |
nothing calls this directly
no outgoing calls
no test coverage detected