| 30 | } |
| 31 | |
| 32 | bool matrix_add(const Matrix & matA, const Matrix & matB, Matrix & matC) |
| 33 | { |
| 34 | // check the dimensions of the three matrices |
| 35 | // re-create matC if needed |
| 36 | // do: matC = matA + matB |
| 37 | // return true if everything is right |
| 38 | return true; |
| 39 | } |
| 40 | |
| 41 | int main() |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected