| 1235 | |
| 1236 | COVERAGE(HMM_DeterminantM2, 1) |
| 1237 | static inline float HMM_DeterminantM2(HMM_Mat2 Matrix) |
| 1238 | { |
| 1239 | ASSERT_COVERED(HMM_DeterminantM2); |
| 1240 | return Matrix.Elements[0][0]*Matrix.Elements[1][1] - Matrix.Elements[0][1]*Matrix.Elements[1][0]; |
| 1241 | } |
| 1242 | |
| 1243 | |
| 1244 | COVERAGE(HMM_InvGeneralM2, 1) |
no outgoing calls
no test coverage detected