| 460 | |
| 461 | template <class T> |
| 462 | static bool |
| 463 | lessThanEqual22(Matrix22<T> &mat1, const Matrix22<T> &mat2) |
| 464 | { |
| 465 | for(int i = 0; i < 2; ++i){ |
| 466 | for(int j = 0; j < 2; ++j){ |
| 467 | if(mat1[i][j] > mat2[i][j]){ |
| 468 | return false; |
| 469 | } |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | return true; |
| 474 | } |
| 475 | |
| 476 | template <class T> |
| 477 | static bool |
nothing calls this directly
no outgoing calls
no test coverage detected