piobject metasystem memory and performance optimization

This commit is contained in:
2022-04-22 15:35:25 +03:00
parent db54d0b052
commit 6485d81025
6 changed files with 177 additions and 116 deletions

View File

@@ -376,7 +376,7 @@ TEST(PIMathMatrixT_Test, invert) {
d2 = matrix2.determinant();
matrix3 = matrix1;
matrix1.invert();
ASSERT_TRUE((matrix1 == matrix3) && (d1 == 1/d2));
ASSERT_TRUE((matrix1 == matrix3) && piCompare(d1, 1/d2));
}
TEST(PIMathMatrixT_Test, inverted) {