Format all C++ and Java code via clang-format

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin
2025-08-17 14:32:37 +07:00
parent 9f0290c0ec
commit bfffa1fff4
2169 changed files with 56441 additions and 64188 deletions

View File

@@ -18,30 +18,26 @@ UNIT_TEST(ToCellId)
{
string s("2130000");
s.append(CellIdT::DEPTH_LEVELS - 1 - s.size(), '0');
TEST_EQUAL((CellIdConverter<Bounds<0, 0, 4, 4>, CellIdT>::ToCellId(1.5, 2.5).ToString()),
s, ());
TEST_EQUAL(CellIdT::FromString(s),
(CellIdConverter<Bounds<0, 0, 4, 4>, CellIdT>::ToCellId(1.5, 2.5)), ());
TEST_EQUAL((CellIdConverter<Bounds<0, 0, 4, 4>, CellIdT>::ToCellId(1.5, 2.5).ToString()), s, ());
TEST_EQUAL(CellIdT::FromString(s), (CellIdConverter<Bounds<0, 0, 4, 4>, CellIdT>::ToCellId(1.5, 2.5)), ());
}
UNIT_TEST(CommonCell)
{
TEST_EQUAL((CellIdConverter<Bounds<0, 0, 4, 4>, CellIdT>::Cover2PointsWithCell(
3.5, 2.5, 2.5, 3.5)),
TEST_EQUAL((CellIdConverter<Bounds<0, 0, 4, 4>, CellIdT>::Cover2PointsWithCell(3.5, 2.5, 2.5, 3.5)),
CellIdT::FromString("3"), ());
TEST_EQUAL((CellIdConverter<Bounds<0, 0, 4, 4>, CellIdT>::Cover2PointsWithCell(
2.25, 1.75, 2.75, 1.25)),
TEST_EQUAL((CellIdConverter<Bounds<0, 0, 4, 4>, CellIdT>::Cover2PointsWithCell(2.25, 1.75, 2.75, 1.25)),
CellIdT::FromString("12"), ());
}
namespace
{
template <typename T1, typename T2>
bool PairsAlmostEqualULPs(pair<T1, T1> const & p1, pair<T2, T2> const & p2)
{
return fabs(p1.first - p2.first) + fabs(p1.second - p2.second) < 0.00001;
}
template <typename T1, typename T2>
bool PairsAlmostEqualULPs(pair<T1, T1> const & p1, pair<T2, T2> const & p2)
{
return fabs(p1.first - p2.first) + fabs(p1.second - p2.second) < 0.00001;
}
} // namespace
UNIT_TEST(CellId_RandomRecode)
{
@@ -50,10 +46,9 @@ UNIT_TEST(CellId_RandomRecode)
{
uint32_t const x = rng() % 2000;
uint32_t const y = rng() % 1000;
m2::PointD const pt =
CellIdConverter<Bounds<0, 0, 2000, 1000>, CellIdT>::FromCellId(
CellIdConverter<Bounds<0, 0, 2000, 1000>, CellIdT>::ToCellId(x, y));
TEST(fabs(pt.x - x) < 0.0002, (x, y, pt));
m2::PointD const pt = CellIdConverter<Bounds<0, 0, 2000, 1000>, CellIdT>::FromCellId(
CellIdConverter<Bounds<0, 0, 2000, 1000>, CellIdT>::ToCellId(x, y));
TEST(fabs(pt.x - x) < 0.0002, (x, y, pt));
TEST(fabs(pt.y - y) < 0.0001, (x, y, pt));
}
}