|
MiniTensor Version of the Day
|
#include <MiniTensor_TestFunctions.h>
Public Types | |
| using | Base = Function_Base< Quadratic< S, M >, S, M > |
Public Member Functions | |
| Quadratic (S const a, S const b, S const c) | |
| template<typename T , Index N> | |
| T | value (Vector< T, N > const &x) |
| template<typename T , Index N> | |
| Vector< T, N > | gradient (Vector< T, N > const &x) const |
| template<typename T , Index N> | |
| Tensor< T, N > | hessian (Vector< T, N > const &x) |
Public Member Functions inherited from minitensor::Function_Base< FunctionDerived, S, M > | |
| Function_Base () | |
| template<typename T , Index N> | |
| T | value (FunctionDerived &f, Vector< T, N > const &x) |
| template<typename T , Index N> | |
| Vector< T, N > | gradient (FunctionDerived &f, Vector< T, N > const &x) |
| template<typename T , Index N> | |
| Vector< T, N > | residual (FunctionDerived &f, Vector< T, N > const &x) |
| template<typename T , Index N> | |
| Tensor< T, N > | hessian (FunctionDerived &f, Vector< T, N > const &x) |
| void | set_failed (char const *const msg=nullptr) |
| bool | get_failed () |
| void | clear_failed () |
| void | set_failure_message (char const *const msg=nullptr) |
| char const * | get_failure_message () |
Static Public Attributes | |
| static constexpr char const *const | NAME {"Quadratic"} |
Static Public Attributes inherited from minitensor::Function_Base< FunctionDerived, S, M > | |
| static constexpr Index | DIMENSION {M} |
Private Attributes | |
| S const | a_ {0.0} |
| S const | b_ {0.0} |
| S const | c_ {0.0} |
Additional Inherited Members | |
Protected Attributes inherited from minitensor::Function_Base< FunctionDerived, S, M > | |
| bool | failed {false} |
| char const * | failure_message {nullptr} |
| Keep a message to inform what went wrong above. | |
Quadratic NLS: the residual is the gradient of \( c((x_1-a)^2 + (x_2-b)^2) \). Two-dimensional, convex, single minimum at \( (a, b) \).
Definition at line 117 of file MiniTensor_TestFunctions.h.
| using minitensor::Quadratic< S, M >::Base = Function_Base<Quadratic<S, M>, S, M> |
Base class type.
Definition at line 140 of file MiniTensor_TestFunctions.h.
|
inline |
Constructor.
| a | First coordinate of the minimizer. |
| b | Second coordinate of the minimizer. |
| c | Curvature scale factor. |
Definition at line 126 of file MiniTensor_TestFunctions.h.
|
inline |
Objective value.
Definition at line 148 of file MiniTensor_TestFunctions.h.
|
inline |
Gradient of the objective.
Definition at line 159 of file MiniTensor_TestFunctions.h.
|
inline |
Hessian of the objective.
Definition at line 181 of file MiniTensor_TestFunctions.h.
|
staticconstexpr |
Function name.
Definition at line 135 of file MiniTensor_TestFunctions.h.
|
private |
First coordinate of the minimizer.
Definition at line 191 of file MiniTensor_TestFunctions.h.
|
private |
Second coordinate of the minimizer.
Definition at line 197 of file MiniTensor_TestFunctions.h.
|
private |
Curvature scale factor.
Definition at line 203 of file MiniTensor_TestFunctions.h.