| 716 | |
| 717 | template <class T> |
| 718 | static bool |
| 719 | lessThan33(Matrix33<T> &mat1, const Matrix33<T> &mat2) |
| 720 | { |
| 721 | for(int i = 0; i < 3; ++i){ |
| 722 | for(int j = 0; j < 3; ++j){ |
| 723 | if(mat1[i][j] > mat2[i][j]){ |
| 724 | return false; |
| 725 | } |
| 726 | } |
| 727 | } |
| 728 | |
| 729 | return (mat1 != mat2); |
| 730 | } |
| 731 | |
| 732 | template <class T> |
| 733 | static bool |
nothing calls this directly
no outgoing calls
no test coverage detected