|
QUGaR 0.1.3
|
Function containing an affine transformation. More...
#include <impl_funcs_lib.hpp>
Public Member Functions | |
| FuncWithAffineTransf () | |
| Default constructor. Creates and stores an identity transformation. | |
| FuncWithAffineTransf (const AffineTransf< dim > &transf) | |
Constructs a new class storing the given transf. | |
| Public Member Functions inherited from qugar::impl::DomainFunc< dim, 1 > | |
| DomainFunc ()=default | |
| Default constructor. | |
| DomainFunc (const DomainFunc &)=default | |
| Default copy constructor. | |
| DomainFunc (DomainFunc &&)=default | |
| Default move constructor. | |
| DomainFunc & | operator= (const DomainFunc &)=default |
| Default copy assignment operator. | |
| DomainFunc & | operator= (DomainFunc &&)=default |
| Default move assignment operator. | |
| virtual | ~DomainFunc ()=default |
| Default virtual destructor. | |
| virtual Value< real > | operator() (const Point< dim > &point) const=0 |
| Evaluator operator. | |
| virtual Value< Interval< dim > > | operator() (const Point< dim, Interval< dim > > &point) const=0 |
| Evaluator operator. | |
| virtual Gradient< real > | grad (const Point< dim > &point) const=0 |
| Gradient evaluator operator. | |
| virtual Gradient< Interval< dim > > | grad (const Point< dim, Interval< dim > > &point) const=0 |
| Gradient evaluator operator. | |
| virtual Hessian< real > | hessian (const Point< dim > &point) const=0 |
| Hessian evaluator operator. | |
Protected Attributes | |
| AffineTransf< dim > | transf_ |
| Stored affine transformation. | |
Additional Inherited Members | |
| Public Types inherited from qugar::impl::DomainFunc< dim, 1 > | |
| using | Interval |
| Algoim's interval alias. | |
| using | Value |
| Value type. | |
| using | Gradient |
| Gradient type. | |
| using | Hessian |
| Hessian (symmetric type). | |
| Static Public Attributes inherited from qugar::impl::DomainFunc< dim, 1 > | |
| static const int | num_hessian |
| Number of Hessian (symmetric) components. | |
Function containing an affine transformation.
| dim | Parametric dimension. |
| qugar::impl::funcs::FuncWithAffineTransf< dim >::FuncWithAffineTransf | ( | ) |
Default constructor. Creates and stores an identity transformation.
|
explicit |
Constructs a new class storing the given transf.
| transf | Transformation to store. |
|
protected |
Stored affine transformation.