54 conjugate_gradient_optimizer<ObjectiveFunction, LineSearcher>,
125 iteration_logger.template append<index_type>(
127 iteration_logger.template append<index_type>(
129 iteration_logger.template append<value_type>(
131 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 variable_type::Scalar variable_scalar_type
void configure_iteration_logger(logging::iterations::iteration_logger< this_type > &iteration_logger) const
Configure an iteration logger.
bool has_first_iteration_done_
auto calc_direction() -> variable_type
Calculate search direction.
void init(const variable_type &init_variable)
Initialize.
auto gradient() const -> const variable_type &
Get gradient for current optimal variable.
conjugate_gradient_optimizer< ObjectiveFunction, LineSearcher > this_type
This class.
conjugate_gradient_optimizer(const objective_function_type &obj_fun=objective_function_type())
Constructor.
typename line_searcher_type::objective_function_type objective_function_type
typename objective_function_type::variable_type variable_type
descent_method_base< this_type, LineSearcher > base_type
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 &
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 conjugate_gradient_optimizer_tag
Tag of conjugate_gradient_optimizer.