OPAL (Object Oriented Parallel Accelerator Library) 2022.1
OPAL
RecursionRelation.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018, Martin Duy Tat
3 * All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 * 1. Redistributions of source code must retain the above copyright notice,
7 * this list of conditions and the following disclaimer.
8 * 2. Redistributions in binary form must reproduce the above copyright notice,
9 * this list of conditions and the following disclaimer in the documentation
10 * and/or other materials provided with the distribution.
11 * 3. Neither the name of STFC nor the names of its contributors may be used to
12 * endorse or promote products derived from this software without specific
13 * prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#ifndef RECURSION_RELATION_H
29#define RECURSION_RELATION_H
30
54#include "Polynomial.h"
55
56namespace polynomial {
57
59public:
73 RecursionRelation(const std::size_t &power,
74 const std::size_t &highestXorder);
76 RecursionRelation(const RecursionRelation &doperator);
82 void printOperator() const;
86 void truncate(std::size_t highestXorder);
88 void applyOperator();
90 void differentiateX();
92 std::size_t getMaxXDerivatives() const;
94 std::size_t getMaxSDerivatives() const;
100 double evaluatePolynomial(const double &x,
101 const std::size_t &xDerivative,
102 const std::size_t &sDerivative) const;
107 bool isPolynomialZero(const std::size_t &x, const std::size_t &s) const;
111 void resizeX(const std::size_t &xDerivatives);
115 void resizeS(const std::size_t &sDerivatives);
116private:
118 std::size_t power_m;
119 std::size_t highestXorder_m;
120};
121
122inline
125}
126inline
129}
130inline
133}
134inline
137}
138inline
140 const double &x,
141 const std::size_t &xDerivative,
142 const std::size_t &sDerivative) const {
143 return operator_m.evaluatePolynomial(x, xDerivative, sDerivative);
144}
145inline
146 bool RecursionRelation::isPolynomialZero(const std::size_t &x,
147 const std::size_t &s) const {
148 return operator_m.isPolynomialZero(x, s);
149}
150inline
151 void RecursionRelation::resizeX(const std::size_t &xDerivatives) {
152 operator_m.resizeX(xDerivatives);
153}
154inline
155 void RecursionRelation::resizeS(const std::size_t &sDerivatives) {
156 operator_m.resizeS(sDerivatives);
157}
158
159}
160
161#endif
bool isPolynomialZero(const std::size_t &x, const std::size_t &s) const
double evaluatePolynomial(const double &x, const std::size_t &xDerivative, const std::size_t &sDerivative) const
void resizeX(const std::size_t &xDerivatives)
void resizeS(const std::size_t &sDerivatives)
void resizeX(const std::size_t &xDerivatives)
std::size_t getMaxXDerivatives() const
std::size_t getMaxSDerivatives() const
bool isPolynomialZero(const std::size_t &x, const std::size_t &s) const
RecursionRelation & operator=(const RecursionRelation &recursion)
void truncate(std::size_t highestXorder)
void resizeS(const std::size_t &sDerivatives)
DifferentialOperator operator_m
double evaluatePolynomial(const double &x, const std::size_t &xDerivative, const std::size_t &sDerivative) const