Flow123d  release_2.2.0-914-gf1a3a4f
Classes | Typedefs
interpolant.hh File Reference
#include <utility>
#include <vector>
#include "fadbad.h"
This graph shows which files directly or indirectly include this file:

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
 

Detailed Description

 * 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 Documentation

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.