version 0.4.1
derivativetraits.hh
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2021-2025 The Ikarus Developers mueller@ibb.uni-stuttgart.de
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
10#pragma once
11
12#include <dune/functions/common/differentiablefunctionfromcallables.hh>
13
14#include <Eigen/Dense>
15#include <Eigen/Sparse>
16
18
19namespace Ikarus {
20
21namespace Impl {
22 template <typename... Args>
23 struct Functions;
24} // namespace Impl
25
26#ifndef DOXYGEN
27
28enum class FEParameter;
29enum class FESolutions;
30template <FESolutions sol, FEParameter para, typename SV, typename PM>
31class FERequirements;
32
39template <typename TypeListOne, typename TypeListTwo>
41{
42public:
43 DerivativeTraitsFromCallables(const TypeListOne&, const TypeListTwo&) {
44 static_assert(!sizeof(TypeListOne),
45 "This type should not be instantiated. check that your arguments satisfies the template below");
46 }
47};
48
49#endif
50
51template <typename... DerivativeArgs, typename Arg>
52struct DerivativeTraitsFromCallables<Impl::Functions<DerivativeArgs...>, Arg>
53{
60 DerivativeTraitsFromCallables(const Impl::Functions<DerivativeArgs...>& derivativesFunctions, const Arg& parameterI) {
61 }
62
63 using Ranges = std::tuple<std::invoke_result_t<DerivativeArgs, const Arg&>..., Dune::Functions::InvalidRange>;
64 using RawRanges = std::tuple<std::remove_cvref_t<std::invoke_result_t<DerivativeArgs, const Arg&>>...,
65 Dune::Functions::InvalidRange>;
66
67 using Domain = std::remove_cvref_t<Arg>;
68 using Signatures = std::tuple<std::invoke_result_t<DerivativeArgs, const Arg&>(const Arg&)...,
69 Dune::Functions::InvalidRange(const Arg&)>;
70 using RawSignatures =
71 std::tuple<std::remove_cvref_t<std::invoke_result_t<DerivativeArgs, const Arg&>>(std::remove_cvref_t<Arg>)...,
72 Dune::Functions::InvalidRange(std::remove_cvref_t<Arg>)>;
73
74 template <int I>
75 using Signature = std::tuple_element_t<I, Signatures>;
76
77 template <int I>
78 using Range = std::tuple_element_t<I, Ranges>;
79
80 template <int I>
81 using RawRange = std::tuple_element_t<I, RawRanges>;
82
83 template <typename Signature>
84 struct DerivativeTraits
85 {
86 private:
87 static constexpr int indexOfSignature = traits::Index<Signature, RawSignatures>::value + 1;
88
89 public:
90 using Range = std::tuple_element_t<indexOfSignature, Ranges>;
91 };
92};
93
94template <typename... DerivativeArgs, typename Arg>
95DerivativeTraitsFromCallables(const Impl::Functions<DerivativeArgs...>& derivativesFunctions, Arg&& parameterI)
96 -> DerivativeTraitsFromCallables<Impl::Functions<DerivativeArgs...>, Arg>;
97} // namespace Ikarus
Contains stl-like type traits.
FEParameter
A strongly typed enum class representing the FE parameter.
Definition: ferequirements.hh:75
FESolutions
A strongly typed enum class representing the type of the solutions vectors.
Definition: ferequirements.hh:88
Definition: assemblermanipulatorbuildingblocks.hh:22
DerivativeTraitsFromCallables(const Impl::Functions< DerivativeArgs... > &derivativesFunctions, Arg &&parameterI) -> DerivativeTraitsFromCallables< Impl::Functions< DerivativeArgs... >, Arg >