From: Denis Davydov Date: Tue, 30 Oct 2018 12:54:37 +0000 (+0100) Subject: add Utilities::interleave() to interleave an array of ints into a single integer X-Git-Tag: v9.1.0-rc1~582^2~4 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b149cf722cb6ca58e621a1f8309666b72bcb2cc2;p=dealii.git add Utilities::interleave() to interleave an array of ints into a single integer --- diff --git a/include/deal.II/base/utilities.h b/include/deal.II/base/utilities.h index 1174563fa8..3cb5a2e6fc 100644 --- a/include/deal.II/base/utilities.h +++ b/include/deal.II/base/utilities.h @@ -103,6 +103,22 @@ namespace Utilities const std::vector> &points, const int bits_per_dim = 64); + /** + * Interleave first @p bits_per_dim bits from each element of @p index + * (starting from last) into a single unsigned integer. The function is useful + * in debugging and visualization of indices returned by + * inverse_Hilbert_space_filling_curve(). Clearly, the following should hold + * bits\_per\_dim * dim <= 64. + * + * @note There is no need to use this function in order to compare indices + * returned by inverse_Hilbert_space_filling_curve(), that can be easily done + * via std::lexicographical_compare(). + */ + template + std::uint64_t + interleave(const std::array &index, + const int bits_per_dim); + /** * Convert a number @p value to a string, with as many digits as given to * fill with leading zeros. diff --git a/source/base/utilities.cc b/source/base/utilities.cc index 659f82b45c..50a755d2a6 100644 --- a/source/base/utilities.cc +++ b/source/base/utilities.cc @@ -268,6 +268,30 @@ namespace Utilities + template + std::uint64_t + interleave(const std::array &index, + const int bits_per_dim) + { + using Integer = std::uint64_t; + + AssertIndexRange(bits_per_dim * dim, 65); + Assert(bits_per_dim > 0, ExcMessage("bits_per_dim should be positive")); + + const Integer mask = (1 << bits_per_dim) - 1; + + Integer res = 0; + for (unsigned int i = 0; i < dim; ++i) + { + // take @bits_per_dim from each integer and shift them + const Integer v = (mask & index[dim - 1 - i]) << (bits_per_dim * i); + res |= v; + } + return res; + } + + + std::string int_to_string(const unsigned int value, const unsigned int digits) { @@ -1106,6 +1130,12 @@ namespace Utilities const std::vector> &, const int); + template std::uint64_t + interleave<1>(const std::array &, const int); + template std::uint64_t + interleave<2>(const std::array &, const int); + template std::uint64_t + interleave<3>(const std::array &, const int); } // namespace Utilities DEAL_II_NAMESPACE_CLOSE diff --git a/tests/base/utilities_14.cc b/tests/base/utilities_14.cc new file mode 100644 index 0000000000..7298ca6b12 --- /dev/null +++ b/tests/base/utilities_14.cc @@ -0,0 +1,72 @@ +// --------------------------------------------------------------------- +// +// Copyright (C) 2018 by the deal.II authors +// +// This file is part of the deal.II library. +// +// The deal.II library is free software; you can use it, redistribute +// it, and/or modify it under the terms of the GNU Lesser General +// Public License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// The full text of the license can be found in the file LICENSE.md at +// the top level directory of deal.II. +// +// --------------------------------------------------------------------- + + +// test Utilities::interleave() for indices from +// Utilities::inverse_Hilbert_space_filling_curve in 2D on the following points +// with bits=2: + +// 3 | 5---6 9---10 +// | | | | | +// 2 | 4 7---8 11 +// | | | +// 1 | 3---2 13--12 +// | | | +// 0 | 0---1 14--15 +// | +// ------------------ +// 0 1 2 3 + +#include + +#include "../tests.h" + + +void +test() +{ + const std::vector> points = {Point<2>(0, 0), + Point<2>(1, 0), + Point<2>(1, 1), + Point<2>(0, 1), + Point<2>(0, 2), + Point<2>(0, 3), + Point<2>(1, 3), + Point<2>(1, 2), + Point<2>(2, 2), + Point<2>(2, 3), + Point<2>(3, 3), + Point<2>(3, 2), + Point<2>(3, 1), + Point<2>(2, 1), + Point<2>(2, 0), + Point<2>(3, 0)}; + + const int bit_depth = 2; + const auto res = + Utilities::inverse_Hilbert_space_filling_curve(points, bit_depth); + + for (const auto &p : res) + deallog << p[0] << " " << p[1] << " " + << Utilities::interleave<2>(p, bit_depth) << std::endl; +} + +int +main() +{ + initlog(); + + test(); +} diff --git a/tests/base/utilities_14.output b/tests/base/utilities_14.output new file mode 100644 index 0000000000..80e1cd589e --- /dev/null +++ b/tests/base/utilities_14.output @@ -0,0 +1,17 @@ + +DEAL::0 0 0 +DEAL::0 1 1 +DEAL::0 2 2 +DEAL::0 3 3 +DEAL::1 0 4 +DEAL::1 1 5 +DEAL::1 2 6 +DEAL::1 3 7 +DEAL::2 0 8 +DEAL::2 1 9 +DEAL::2 2 10 +DEAL::2 3 11 +DEAL::3 0 12 +DEAL::3 1 13 +DEAL::3 2 14 +DEAL::3 3 15