From bbe9e481276f70dc18a0206780d7af0a56b90040 Mon Sep 17 00:00:00 2001 From: Christoph Lehmann <christoph.lehmann@ufz.de> Date: Tue, 30 Jan 2024 14:37:35 +0100 Subject: [PATCH] [T] Checking allowed raw data types for IP data I/O --- Tests/ProcessLib/TestReflectIPData.cpp | 40 ++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/Tests/ProcessLib/TestReflectIPData.cpp b/Tests/ProcessLib/TestReflectIPData.cpp index ab9bef289b8..5ace325219c 100644 --- a/Tests/ProcessLib/TestReflectIPData.cpp +++ b/Tests/ProcessLib/TestReflectIPData.cpp @@ -647,3 +647,43 @@ TYPED_TEST(ProcessLib_ReflectIPData, WriteTest) check("scalar2b", num_int_pts, ref.scalar2b); check("scalar3b", num_int_pts, ref.scalar3b); } + +TYPED_TEST(ProcessLib_ReflectIPData, RawDataTypes) +{ + constexpr int dim = TypeParam::value; + constexpr int kv_size = + MathLib::KelvinVector::kelvin_vector_dimensions(dim); + + namespace PRD = ProcessLib::Reflection::detail; + + // scalars + static_assert(PRD::is_raw_data<double>::value); + + // vectors + static_assert(PRD::is_raw_data<Eigen::Vector<double, dim>>::value); + static_assert(PRD::is_raw_data<Eigen::RowVector<double, dim>>::value); + + // Kelvin vectors + static_assert(PRD::is_raw_data<Eigen::Vector<double, kv_size>>::value); + + // matrices + static_assert(PRD::is_raw_data< + Eigen::Matrix<double, dim, dim, Eigen::RowMajor>>::value); + static_assert(PRD::is_raw_data< + Eigen::Matrix<double, dim, kv_size, Eigen::RowMajor>>::value); + static_assert(PRD::is_raw_data< + Eigen::Matrix<double, kv_size, dim, Eigen::RowMajor>>::value); + static_assert( + PRD::is_raw_data< + Eigen::Matrix<double, kv_size, kv_size, Eigen::RowMajor>>::value); + + // column major matrices are not supported in order to avoid confusion of + // storage order + static_assert(!PRD::is_raw_data<Eigen::Matrix<double, dim, dim>>::value); + static_assert( + !PRD::is_raw_data<Eigen::Matrix<double, dim, kv_size>>::value); + static_assert( + !PRD::is_raw_data<Eigen::Matrix<double, kv_size, dim>>::value); + static_assert( + !PRD::is_raw_data<Eigen::Matrix<double, kv_size, kv_size>>::value); +} -- GitLab