1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
// SPDX-FileCopyrightInfo: Copyright © DUNE Project contributors, see file LICENSE.md in module root
// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception
#ifndef DUNE_PYTHON_COMMON_DIMRANGE_HH
#define DUNE_PYTHON_COMMON_DIMRANGE_HH
#include <cstddef>
#include <tuple>
#include <type_traits>
#include <utility>
#include <dune/python/common/fmatrix.hh>
#include <dune/python/common/fvector.hh>
namespace Dune
{
namespace Python
{
namespace detail
{
template< class T, class Enable = void >
struct DimRange;
template< class T >
struct DimRange< T, std::enable_if_t< std::is_arithmetic_v< T > > >
: public std::integral_constant< std::size_t, 1 >
{};
template< class... T >
struct DimRange< std::tuple< T... >, void >
: public std::integral_constant< std::size_t, (DimRange< T >::value + ...) >
{};
template< class K, int n >
struct DimRange< FieldVector< K, n >, void >
: public std::integral_constant< std::size_t, n >
{};
template< class K, int m, int n >
struct DimRange< FieldMatrix< K, m, n >, void >
: public std::integral_constant< std::size_t, m*n >
{};
} // namespace detail
// DimRange
// --------
template< class T >
using DimRange = detail::DimRange< T >;
} // namespace Python
} // namespace Dune
#endif // #ifndef DUNE_PYTHON_COMMON_DIMRANGE_HH
|