This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* \file is_almost_equal_ulps.hpp | |
* \brief Constexpr implementation of a floating number point comparison based on units in last place (ULPs) | |
* \mainpage Contains traits and a constexpr function for comparing two floating point numbers based on units | |
* in the last place (ULP) similar to the implementation in GoogleTest but more modular and constexpr: | |
* https://github.com/google/googletest/blob/main/googletest/include/gtest/internal/gtest-internal.h | |
*/ | |
#ifndef IS_ALMOST_EQUAL_ULPS_HPP | |
#define IS_ALMOST_EQUAL_ULPS_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* \file mpi_type.hpp | |
* \brief Function for automatically determining MPI data type to a constexpr | |
* \mainpage Contains a template function that helps determining the corresponding MPI message data type | |
* that can be found on \ref https://www.mpich.org/static/docs/latest/www3/Constants.html | |
* to a constexpr. This way the code may already be simplified at compile time. | |
*/ | |
#ifndef MPI_TYPE_HPP_INCLUDED | |
#define MPI_TYPE_HPP_INCLUDED |