Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)

To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
This commit is contained in:
Konstantin Pastbin
2025-04-13 16:37:30 +07:00
commit e3e4a1985a
12931 changed files with 13195100 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
#include "testing/testing.hpp"
#include "base/matrix.hpp"
UNIT_TEST(Matrix_Inverse_Simple)
{
math::Matrix<double, 3, 3> m;
m = math::Identity<double, 3>();
m(2, 0) = 2;
math::Matrix<double, 3, 3> m1 = math::Inverse(m);
TEST_EQUAL((m1 * m).Equal(math::Identity<double, 3>()), true, ());
}
UNIT_TEST(Matrix_Inverse_AllElementsNonZero)
{
math::Matrix<double, 3, 3> m;
m(0, 0) = 5; m(0, 1) = 3; m(0, 2) = 6;
m(1, 0) = 1; m(1, 1) = 7; m(1, 2) = 9;
m(2, 0) = 2; m(2, 1) = 13; m(2, 2) = 4;
math::Matrix<double, 3, 3> m1 = math::Inverse(m);
TEST_EQUAL((m1 * m).Equal(math::Identity<double, 3>()), true, ());
}