QUGaR 0.0.4
|
Dimension independent square function in domain [-1,1]^dim. More...
#include <impl_funcs_lib.hpp>
Public Member Functions | |
Square ()=default | |
Constructs a new square aligned with the Cartesian axes. | |
Square (const AffineTransf< dim > &transf) | |
Constructs a new square object transformed according to transf . | |
![]() | |
FuncWithAffineTransf () | |
Default constructor. Creates and stores an identity transformation. | |
FuncWithAffineTransf (const AffineTransf< dim > &transf) | |
Constructs a new class storing the given transf . | |
![]() | |
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. | |
Static Public Member Functions | |
template<typename T > | |
static int | sgn (const T &val) |
Returns the sign of the given value. | |
Public Attributes | |
declare_impl_func_virtual_interface | |
Additional Inherited Members | |
![]() | |
template<int N> | |
using | Interval = ::algoim::Interval<N> |
Algoim's interval alias. | |
template<typename T > | |
using | Value = std::conditional_t<range == 1, T, Vector<T, range>> |
Value type. | |
template<typename T > | |
using | Gradient = Vector<Value<T>, dim> |
Gradient type. | |
template<typename T > | |
using | Hessian = Vector<Value<T>, num_hessian> |
Hessian (symmetric type). | |
![]() | |
static const int | num_hessian = dim * (dim + 1) / 2 |
Number of Hessian (symmetric) components. | |
![]() | |
AffineTransf< dim > | transf_ |
Stored affine transformation. | |
Dimension independent square function in domain [-1,1]^dim.
dim | Parametric dimension. |
|
default |
Constructs a new square aligned with the Cartesian axes.
|
explicit |
Constructs a new square object transformed according to transf
.
transf | Affine transformation applied to the square. It may rotate the axes, translate the square, and/or scale it (iso or anisotropically). |
|
static |
Returns the sign of the given value.
T | Type of the value. |
val | Value to be tested. |
val
is positive, -1 if it is negative, 0 otherwise. qugar::impl::funcs::Square< dim >::declare_impl_func_virtual_interface |