Path: blob/main/test/mesh_handle/t8_gtest_custom_competence.cxx
921 views
/*
This file is part of t8code.
t8code is a C library to manage a collection (a forest) of multiple
connected adaptive space-trees of general element classes in parallel.
Copyright (C) 2025 the developers
t8code is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
t8code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with t8code; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/**
* \file t8_gtest_custom_competence.cxx
* Checks that custom-defined competences can be used as template parameters for the mesh.
*/
#include <gtest/gtest.h>
#include <t8.h>
#include <mesh_handle/mesh.hxx>
#include <mesh_handle/competences.hxx>
#include <mesh_handle/competence_pack.hxx>
#include <mesh_handle/constructor_wrappers.hxx>
#include <t8_forest/t8_forest_general.h>
#include <t8_types/t8_operators.hxx>
/**
* Custom competence that needs access to the public members of the elements.
* \tparam TUnderlying Use the \ref t8_mesh_handle::element with specified competences as template parameter.
*/
template <typename TUnderlying>
struct dummy_get_level: public t8_crtp_operator<TUnderlying, dummy_get_level>
{
public:
/** Getter for the level of the element. This function needs to access several members
* of the element such that we need the crtp structure here.
* \return Level of the element.
*/
t8_element_level
get_level_dummy () const
{
auto forest = this->underlying ().get_mesh ()->get_forest ();
const t8_eclass_t tree_class = t8_forest_get_tree_class (forest, this->underlying ().get_local_tree_id ());
const t8_element_t *element = t8_forest_get_leaf_element_in_tree (forest, this->underlying ().get_local_tree_id (),
this->underlying ().get_local_element_id ());
return t8_forest_get_scheme (forest)->element_get_level (tree_class, element);
}
};
/** Trivial competence to demonstrate that we can use more than one custom competence.
* \tparam TUnderlying Use the \ref t8_mesh_handle::element with specified competences as template parameter.
*/
template <typename TUnderlying>
struct dummy_trivial: public t8_crtp_operator<TUnderlying, dummy_trivial>
{
public:
/** Dummy getter that always returns 1.
* \return Always returns 1.
*/
int
get_value_dummy () const
{
return 1;
}
};
/** This tests checks that custom defined competences can be used for \ref t8_mesh_handle::mesh
* and that we can use the functionality defined in the competence.
* Also checks that we can use more than one custom competence and that predefined competences can be additionally used.
*/
TEST (t8_gtest_custom_competence, custom_competence)
{
const int level = 1;
// Check mesh with custom defined competence.
using mesh_class_custom = t8_mesh_handle::mesh<t8_mesh_handle::competence_pack<dummy_get_level>>;
const auto mesh
= t8_mesh_handle::handle_hypercube_hybrid_uniform_default<mesh_class_custom> (level, sc_MPI_COMM_WORLD);
for (auto it = mesh->cbegin (); it != mesh->cend (); ++it) {
EXPECT_EQ (it->get_level (), it->get_level_dummy ());
EXPECT_EQ (level, it->get_level_dummy ());
}
// Test with two custom competences and a predefined competence.
using competences = t8_mesh_handle::competence_pack<dummy_get_level, dummy_trivial, t8_mesh_handle::cache_centroid>;
using mesh_class = t8_mesh_handle::mesh<competences>;
auto mesh_more_competences
= t8_mesh_handle::handle_hypercube_hybrid_uniform_default<mesh_class> (level, sc_MPI_COMM_WORLD);
for (auto it = mesh_more_competences->cbegin (); it != mesh_more_competences->cend (); ++it) {
EXPECT_EQ (it->get_level (), it->get_level_dummy ());
EXPECT_EQ (it->get_value_dummy (), 1);
EXPECT_FALSE (it->centroid_cache_filled ());
for (const auto &coordinate : it->get_centroid ()) {
EXPECT_TRUE (coordinate >= 0.0 && coordinate <= 1.0);
}
EXPECT_TRUE (it->centroid_cache_filled ());
}
}