numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
|
Base class for searching the optimal regularization parameters using explicit formulas for regularization. More...
#include <num_collect/regularization/explicit_param_searcher_base.h>
Public Types | |
using | data_type = typename solver_type::data_type |
Type of data. | |
using | scalar_type = typename solver_type::scalar_type |
Type of scalars. | |
using | solver_type = Solver |
Type of solvers. | |
Public Member Functions | |
auto | opt_param () const -> scalar_type |
Get the optimal regularization parameter. | |
void | search () |
Search the optimal regularization parameter. | |
void | solve (data_type &solution) const |
Solver with the optimal regularization parameter. | |
Protected Member Functions | |
auto | derived () const noexcept -> const Derived & |
Access derived object. | |
auto | derived () noexcept -> Derived & |
Access derived object. | |
Base class for searching the optimal regularization parameters using explicit formulas for regularization.
Derived | Type of the derived class. |
Solver | Type of solvers. |
Definition at line 34 of file explicit_param_searcher_base.h.
using num_collect::regularization::explicit_param_searcher_base< Derived, Solver >::data_type = typename solver_type::data_type |
Type of data.
Definition at line 43 of file explicit_param_searcher_base.h.
using num_collect::regularization::explicit_param_searcher_base< Derived, Solver >::scalar_type = typename solver_type::scalar_type |
Type of scalars.
Definition at line 40 of file explicit_param_searcher_base.h.
using num_collect::regularization::explicit_param_searcher_base< Derived, Solver >::solver_type = Solver |
Type of solvers.
Definition at line 37 of file explicit_param_searcher_base.h.
|
inlinenodiscardprotectednoexcept |
Access derived object.
Definition at line 82 of file explicit_param_searcher_base.h.
|
inlinenodiscardprotectednoexcept |
Access derived object.
Definition at line 73 of file explicit_param_searcher_base.h.
|
inlinenodiscard |
Get the optimal regularization parameter.
Definition at line 55 of file explicit_param_searcher_base.h.
|
inline |
Search the optimal regularization parameter.
Definition at line 48 of file explicit_param_searcher_base.h.
|
inline |
Solver with the optimal regularization parameter.
Solution | Type of the solution. |
[out] | solution | Solution. |
Definition at line 65 of file explicit_param_searcher_base.h.