DUNE PDELab (git)

polynomial.hh
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3
4// SPDX-FileCopyrightText: Copyright © DUNE Project contributors, see file AUTHORS.md
5// SPDX-License-Identifier: LicenseRef-GPL-2.0-only-with-DUNE-exception OR LGPL-3.0-or-later
6
7#ifndef DUNE_FUNCTIONS_ANALYTICFUNCTIONS_POLYNOMIAL_HH
8#define DUNE_FUNCTIONS_ANALYTICFUNCTIONS_POLYNOMIAL_HH
9
10#include <cmath>
11#include <initializer_list>
12#include <vector>
13
14
15#include <dune/common/hybridutilities.hh>
16
17namespace Dune {
18namespace Functions {
19
20namespace Impl {
21
22 // Compute coefficients of derivative of polynomial.
23 // Overload for std::vector
24 template<class K, class Allocator>
25 auto polynomialDerivativeCoefficients(const std::vector<K, Allocator>& coefficients) {
26 if (coefficients.size()==0)
27 return std::vector<K, Allocator>();
28 std::vector<K, Allocator> dpCoefficients(coefficients.size()-1);
29 for (size_t i=1; i<coefficients.size(); ++i)
30 dpCoefficients[i-1] = coefficients[i]*K(i);
31 return dpCoefficients;
32 }
33
34 // Compute coefficients of derivative of polynomial.
35 // Overload for std::array
36 template<class K, std::size_t n>
37 auto polynomialDerivativeCoefficients(const std::array<K, n>& coefficients) {
38 if constexpr (n==0)
39 return coefficients;
40 else
41 {
42 std::array<K, n-1> dpCoefficients;
43 for (size_t i=1; i<coefficients.size(); ++i)
44 dpCoefficients[i-1] = coefficients[i]*K(i);
45 return dpCoefficients;
46 }
47 }
48
49 // Compute coefficients of derivative of polynomial.
50 // Helper function for the std::integer_sequence overload.
51 // With C++20 this can be avoided, because lambda function
52 // can partially specify template arguments which allows
53 // to do the same inline.
54 template<class I, I i0, I... i, class J, J j0, J... j>
55 auto polynomialDerivativeCoefficientsHelper(std::integer_sequence<I, i0, i...>, std::integer_sequence<J, j0, j...>) {
56 return std::integer_sequence<I, i*I(j)...>();
57 }
58
59 // Compute coefficients of derivative of polynomial.
60 // Overload for std::integer_sequence
61 template<class I, I... i>
62 auto polynomialDerivativeCoefficients(std::integer_sequence<I, i...> coefficients) {
63 if constexpr (sizeof...(i)==0)
64 return coefficients;
65 else
66 return polynomialDerivativeCoefficientsHelper(coefficients, std::make_index_sequence<sizeof...(i)>());
67 }
68
69 // Compute coefficients of derivative of polynomial.
70 // Overload for std::tuple
71 template<class...T>
72 auto polynomialDerivativeCoefficients(const std::tuple<T...>& coefficients) {
73 if constexpr (sizeof...(T)==0)
74 return coefficients;
75 else
76 {
77 // Notice that std::multiplies<void> has issues with signed types.
78 // E.g., `decltype(-2,2ul)` is `long unsigned int`.
79 // Hence the same is deduced as return type in std::multiplies.
80 // To avoid this, we explicitly pass the exponent `i+1` as signed type.
81 // If the coefficient is signed, both types are now signed and
82 // so is the deduced result type of std::multiplies.
83 auto mult = Dune::Hybrid::hybridFunctor(std::multiplies());
84 return Dune::unpackIntegerSequence([&](auto... i) {
85 return std::tuple(mult(std::get<i+1>(coefficients),
86 std::integral_constant<long signed int, (long signed int)(i+1)>()) ...);
87 }, std::make_index_sequence<sizeof...(T)-1>());
88 }
89 }
90
91} // namespace Impl in Dune::Functions::
92
93
94
121template<class K, class C=std::vector<K>>
123{
124 template<class CC>
125 struct IsIntegerSequence : public std::false_type {};
126
127 template<class I, I... i>
128 struct IsIntegerSequence<std::integer_sequence<I, i...>> : public std::true_type {};
129
130public:
131
133 using Coefficients = C;
134
136 Polynomial() = default;
137
147 coefficients_(std::move(coefficients))
148 {}
149
151 K operator() (const K& x) const
152 {
153 auto y = K(0);
154 auto n = Dune::Hybrid::size(coefficients_);
155 Dune::Hybrid::forEach(Dune::range(n), [&](auto i) {
156 y += Dune::Hybrid::elementAt(coefficients_, i) * std::pow(x, int(i));
157 });
158 return y;
159 }
160
162 bool operator==(const Polynomial& other) const
163 {
164 if constexpr (IsIntegerSequence<Coefficients>::value)
165 return true;
166 else
167 return coefficients()==other.coefficients();
168 }
169
179 friend auto derivative(const Polynomial& p)
180 {
181 auto derivativeCoefficients = Impl::polynomialDerivativeCoefficients(p.coefficients());
182 using DerivativeCoefficients = decltype(derivativeCoefficients);
183 return Polynomial<K, DerivativeCoefficients>(std::move(derivativeCoefficients));
184 }
185
188 {
189 return coefficients_;
190 }
191
192private:
193 Coefficients coefficients_;
194};
195
196
197
198template<class K>
199Polynomial(std::vector<K>) -> Polynomial<K, std::vector<K>>;
200
201template<class K, std::size_t n>
202Polynomial(std::array<K,n>) -> Polynomial<K, std::array<K,n>>;
203
204template<class K, K... ci>
205Polynomial(std::integer_sequence<K, ci...>) -> Polynomial<K, std::integer_sequence<K,ci...>>;
206
207template<class K>
208Polynomial(std::initializer_list<K>) -> Polynomial<K, std::vector<K>>;
209
210
211
224template<class K, class Coefficients>
225auto makePolynomial(Coefficients coefficients)
226{
227 return Polynomial<K, Coefficients>(std::move(coefficients));
228}
229
239template<class K, class C>
240auto makePolynomial(std::initializer_list<C> coefficients)
241{
242 return Polynomial<K>(std::move(coefficients));
243}
244
245
246
247
248
249}} // namespace Dune::Functions
250
251
252
253#endif // DUNE_FUNCTIONS_ANALYTICFUNCTIONS_POLYNOMIAL_HH
A univariate polynomial implementation.
Definition: polynomial.hh:123
Polynomial()=default
Default constructor.
K operator()(const K &x) const
Evaluate polynomial.
Definition: polynomial.hh:151
C Coefficients
The type of the stored coefficient container.
Definition: polynomial.hh:133
const Coefficients & coefficients() const
Obtain reference to coefficient vector.
Definition: polynomial.hh:187
Polynomial(Coefficients coefficients)
Create from container of coefficients.
Definition: polynomial.hh:146
bool operator==(const Polynomial &other) const
Comparison of coefficients.
Definition: polynomial.hh:162
decltype(auto) constexpr unpackIntegerSequence(F &&f, std::integer_sequence< I, i... > sequence)
Unpack an std::integer_sequence<I,i...> to std::integral_constant<I,i>...
Definition: indices.hh:124
friend auto derivative(const Polynomial &p)
Obtain derivative of Polynomial function.
Definition: polynomial.hh:179
constexpr void forEach(Range &&range, F &&f)
Range based for loop.
Definition: hybridutilities.hh:256
constexpr decltype(auto) elementAt(Container &&c, Index &&i)
Get element at given position from container.
Definition: hybridutilities.hh:126
Dune namespace.
Definition: alignedallocator.hh:13
STL namespace.
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.111.3 (Jan 8, 23:30, 2025)