55 Eigen::MatrixX<typename ObjectiveFunction::value_type>>
58 dfp_optimizer<ObjectiveFunction, LineSearcher, Hessian>,
101 const auto dimensions = init_variable.size();
133 iteration_logger.template append<index_type>(
135 iteration_logger.template append<index_type>(
137 iteration_logger.template append<value_type>(
139 iteration_logger.template append<value_type>(
Definition of backtracking_line_searcher class.
Class to write logs of iterations.
Class of tags of logs without memory management.
Class to perform backtracking line search.
typename objective_function_type::value_type value_type
auto gradient() const -> const variable_type &
auto opt_variable() const -> const variable_type &
auto iterations() const noexcept -> index_type
descent_method_base(logging::log_tag_view tag, const objective_function_type &obj_fun=objective_function_type())
Constructor.
typename objective_function_type::variable_type variable_type
void init(const variable_type &init_variable)
auto evaluations() const noexcept -> index_type
typename line_searcher_type::objective_function_type objective_function_type
auto gradient_norm() const -> value_type
auto opt_value() const -> const value_type &
auto line_searcher() -> line_searcher_type &
descent_method_base< this_type, LineSearcher > base_type
void init(const variable_type &init_variable)
Initialize.
typename variable_type::Scalar variable_scalar_type
bool has_first_iteration_done_
hessian_type approx_hessian_
void configure_iteration_logger(logging::iterations::iteration_logger< this_type > &iteration_logger) const
Configure an iteration logger.
dfp_optimizer< ObjectiveFunction, LineSearcher, Hessian > this_type
This class.
auto calc_direction() -> variable_type
Calculate search direction.
auto gradient() const -> const variable_type &
Get gradient for current optimal variable.
typename line_searcher_type::objective_function_type objective_function_type
dfp_optimizer(const objective_function_type &obj_fun=objective_function_type())
Constructor.
typename objective_function_type::variable_type variable_type
auto opt_variable() const -> const variable_type &
Get current optimal variable.
variable_type hessian_grad_
Concept of Eigen's dense matrices with real scalars.
Concept of objects to perform line search in optimization.
Concept of multi-variate first-order differentiable objective functions in optimization.
Definition of descent_method_base class.
Definition of index_type type.
Definition of iteration_logger class.
Definition of line_searcher concept.
Definition of log_tag_view class.
Definition of multi_variate_differentiable_objective_function concept.
Namespace of optimization algorithms.
constexpr auto dfp_optimizer_tag
Tag of dfp_optimizer.
Definition of real_scalar_dense_matrix concept.