Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
#include <trust_region.h>
Public Attributes | |
double | solution_step_size |
The step_size of the solution. | |
double | objective_value |
Eigen::VectorXd | solution |
The solution. | |
Definition at line 32 of file trust_region.h.
double operations_research::pdlp::TrustRegionResult::objective_value |
The value objective_vector^T * (solution - center_point) when using the linear-time solver for LPs and QPs with objective matrix not treated in the prox term. When using the approximate solver for QPs, this field contains the value 0.5 * (solution - center_point)^T * objective_matrix * ( solution - center_point)
Definition at line 43 of file trust_region.h.
Eigen::VectorXd operations_research::pdlp::TrustRegionResult::solution |
The solution.
Definition at line 45 of file trust_region.h.
double operations_research::pdlp::TrustRegionResult::solution_step_size |
The step_size of the solution.
Definition at line 34 of file trust_region.h.