|
Flow123d
release_3.0.0-903-ge56fc7d
|
#include <utility>#include <vector>#include "fadbad.h"
Go to the source code of this file.
Classes | |
| class | FunctorBase< Type > |
| Abstract templated explicit functor class. More... | |
| class | IFunctorBase< Type > |
| Abstract templated implicit functor class. More... | |
| struct | Extrapolation |
| struct | ErrorNorm |
| struct | IFixVariable |
| class | InterpolantBase |
| Base class for interpolation. More... | |
| struct | InterpolantBase::EvalStatistics |
| Structure that keeps statistics of evaluation. More... | |
| struct | InterpolantBase::Check |
| class | Interpolant |
| The main class for interpolation of functors. More... | |
| class | InterpolantImplicit |
| class | InterpolantImplicit::FuncExplicit< Type > |
| class FuncExplicit. More... | |
Typedefs | |
| typedef std::pair< double, double > | DiffValue |
* Copyright (C) 2015 Technical University of Liberec. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation. (http://www.gnu.org/licenses/gpl-3.0.en.html)
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
Definition in file interpolant.hh.
| typedef std::pair<double,double> DiffValue |
This pair contains both the function and the first derivative values and is used to as return value for functions of interpolation objects. The reason is that the FADBAD++ library computes both function value and derivative value at the same time. So when we use FADBAD++ in interpolant classes to compute derivates, we also return both values and we stick to it in interpolation evaluation also. We use the form
pair<function_value, derivative_value>
.
Definition at line 26 of file interpolant.hh.
1.8.11