Ipopt
3.12.12
|
Class for all IPOPT specific calculated quantities. More...
#include <IpIpoptCalculatedQuantities.hpp>
Public Member Functions | |
void | SetAddCq (SmartPtr< IpoptAdditionalCq > add_cq) |
Method for setting pointer for additional calculated quantities. More... | |
bool | HaveAddCq () |
Method detecting if additional object for calculated quantities has already been set. More... | |
bool | Initialize (const Journalist &jnlst, const OptionsList &options, const std::string &prefix) |
This method must be called to initialize the global algorithmic parameters. More... | |
Number | curr_avrg_compl () |
average of current values of the complementarities More... | |
Number | trial_avrg_compl () |
average of trial values of the complementarities More... | |
Number | curr_gradBarrTDelta () |
inner_product of current barrier obj. More... | |
Number | CalcNormOfType (ENormType NormType, std::vector< SmartPtr< const Vector > > vecs) |
Compute the norm of a specific type of a set of vectors (uncached) More... | |
Number | CalcNormOfType (ENormType NormType, const Vector &vec1, const Vector &vec2) |
Compute the norm of a specific type of two vectors (uncached) More... | |
ENormType | constr_viol_normtype () const |
Norm type used for calculating constraint violation. More... | |
bool | IsSquareProblem () const |
Method returning true if this is a square problem. More... | |
SmartPtr< IpoptNLP > & | GetIpoptNLP () |
Method returning the IpoptNLP object. More... | |
IpoptAdditionalCq & | AdditionalCq () |
Constructors/Destructors | |
IpoptCalculatedQuantities (const SmartPtr< IpoptNLP > &ip_nlp, const SmartPtr< IpoptData > &ip_data) | |
Constructor. More... | |
virtual | ~IpoptCalculatedQuantities () |
Default destructor. More... | |
Slacks | |
SmartPtr< const Vector > | curr_slack_x_L () |
Slacks for x_L (at current iterate) More... | |
SmartPtr< const Vector > | curr_slack_x_U () |
Slacks for x_U (at current iterate) More... | |
SmartPtr< const Vector > | curr_slack_s_L () |
Slacks for s_L (at current iterate) More... | |
SmartPtr< const Vector > | curr_slack_s_U () |
Slacks for s_U (at current iterate) More... | |
SmartPtr< const Vector > | trial_slack_x_L () |
Slacks for x_L (at trial point) More... | |
SmartPtr< const Vector > | trial_slack_x_U () |
Slacks for x_U (at trial point) More... | |
SmartPtr< const Vector > | trial_slack_s_L () |
Slacks for s_L (at trial point) More... | |
SmartPtr< const Vector > | trial_slack_s_U () |
Slacks for s_U (at trial point) More... | |
Index | AdjustedTrialSlacks () |
Indicating whether or not we "fudged" the slacks. More... | |
void | ResetAdjustedTrialSlacks () |
Reset the flags for "fudged" slacks. More... | |
Objective function | |
virtual Number | curr_f () |
Value of objective function (at current point) More... | |
virtual Number | unscaled_curr_f () |
Unscaled value of the objective function (at the current point) More... | |
virtual Number | trial_f () |
Value of objective function (at trial point) More... | |
virtual Number | unscaled_trial_f () |
Unscaled value of the objective function (at the trial point) More... | |
SmartPtr< const Vector > | curr_grad_f () |
Gradient of objective function (at current point) More... | |
SmartPtr< const Vector > | trial_grad_f () |
Gradient of objective function (at trial point) More... | |
Barrier Objective Function | |
virtual Number | curr_barrier_obj () |
Barrier Objective Function Value (at current iterate with current mu) More... | |
virtual Number | trial_barrier_obj () |
Barrier Objective Function Value (at trial point with current mu) More... | |
SmartPtr< const Vector > | curr_grad_barrier_obj_x () |
Gradient of barrier objective function with respect to x (at current point with current mu) More... | |
SmartPtr< const Vector > | curr_grad_barrier_obj_s () |
Gradient of barrier objective function with respect to s (at current point with current mu) More... | |
SmartPtr< const Vector > | grad_kappa_times_damping_x () |
Gradient of the damping term with respect to x (times kappa_d) More... | |
SmartPtr< const Vector > | grad_kappa_times_damping_s () |
Gradient of the damping term with respect to s (times kappa_d) More... | |
Constraints | |
SmartPtr< const Vector > | curr_c () |
c(x) (at current point) More... | |
SmartPtr< const Vector > | unscaled_curr_c () |
unscaled c(x) (at current point) More... | |
SmartPtr< const Vector > | trial_c () |
c(x) (at trial point) More... | |
SmartPtr< const Vector > | unscaled_trial_c () |
unscaled c(x) (at trial point) More... | |
SmartPtr< const Vector > | curr_d () |
d(x) (at current point) More... | |
SmartPtr< const Vector > | unscaled_curr_d () |
unscaled d(x) (at current point) More... | |
SmartPtr< const Vector > | trial_d () |
d(x) (at trial point) More... | |
SmartPtr< const Vector > | curr_d_minus_s () |
d(x) - s (at current point) More... | |
SmartPtr< const Vector > | trial_d_minus_s () |
d(x) - s (at trial point) More... | |
SmartPtr< const Matrix > | curr_jac_c () |
Jacobian of c (at current point) More... | |
SmartPtr< const Matrix > | trial_jac_c () |
Jacobian of c (at trial point) More... | |
SmartPtr< const Matrix > | curr_jac_d () |
Jacobian of d (at current point) More... | |
SmartPtr< const Matrix > | trial_jac_d () |
Jacobian of d (at trial point) More... | |
SmartPtr< const Vector > | curr_jac_cT_times_vec (const Vector &vec) |
Product of Jacobian (evaluated at current point) of C transpose with general vector. More... | |
SmartPtr< const Vector > | trial_jac_cT_times_vec (const Vector &vec) |
Product of Jacobian (evaluated at trial point) of C transpose with general vector. More... | |
SmartPtr< const Vector > | curr_jac_dT_times_vec (const Vector &vec) |
Product of Jacobian (evaluated at current point) of D transpose with general vector. More... | |
SmartPtr< const Vector > | trial_jac_dT_times_vec (const Vector &vec) |
Product of Jacobian (evaluated at trial point) of D transpose with general vector. More... | |
SmartPtr< const Vector > | curr_jac_cT_times_curr_y_c () |
Product of Jacobian (evaluated at current point) of C transpose with current y_c. More... | |
SmartPtr< const Vector > | trial_jac_cT_times_trial_y_c () |
Product of Jacobian (evaluated at trial point) of C transpose with trial y_c. More... | |
SmartPtr< const Vector > | curr_jac_dT_times_curr_y_d () |
Product of Jacobian (evaluated at current point) of D transpose with current y_d. More... | |
SmartPtr< const Vector > | trial_jac_dT_times_trial_y_d () |
Product of Jacobian (evaluated at trial point) of D transpose with trial y_d. More... | |
SmartPtr< const Vector > | curr_jac_c_times_vec (const Vector &vec) |
Product of Jacobian (evaluated at current point) of C with general vector. More... | |
SmartPtr< const Vector > | curr_jac_d_times_vec (const Vector &vec) |
Product of Jacobian (evaluated at current point) of D with general vector. More... | |
virtual Number | curr_constraint_violation () |
Constraint Violation (at current iterate). More... | |
virtual Number | trial_constraint_violation () |
Constraint Violation (at trial point). More... | |
virtual Number | curr_nlp_constraint_violation (ENormType NormType) |
Real constraint violation in a given norm (at current iterate). More... | |
virtual Number | unscaled_curr_nlp_constraint_violation (ENormType NormType) |
Unscaled real constraint violation in a given norm (at current iterate). More... | |
virtual Number | unscaled_trial_nlp_constraint_violation (ENormType NormType) |
Unscaled real constraint violation in a given norm (at trial iterate). More... | |
Hessian matrices | |
SmartPtr< const SymMatrix > | curr_exact_hessian () |
exact Hessian at current iterate (uncached) More... | |
primal-dual error and its components | |
SmartPtr< const Vector > | curr_grad_lag_x () |
x-part of gradient of Lagrangian function (at current point) More... | |
SmartPtr< const Vector > | trial_grad_lag_x () |
x-part of gradient of Lagrangian function (at trial point) More... | |
SmartPtr< const Vector > | curr_grad_lag_s () |
s-part of gradient of Lagrangian function (at current point) More... | |
SmartPtr< const Vector > | trial_grad_lag_s () |
s-part of gradient of Lagrangian function (at trial point) More... | |
SmartPtr< const Vector > | curr_grad_lag_with_damping_x () |
x-part of gradient of Lagrangian function (at current point) including linear damping term More... | |
SmartPtr< const Vector > | curr_grad_lag_with_damping_s () |
s-part of gradient of Lagrangian function (at current point) including linear damping term More... | |
SmartPtr< const Vector > | curr_compl_x_L () |
Complementarity for x_L (for current iterate) More... | |
SmartPtr< const Vector > | curr_compl_x_U () |
Complementarity for x_U (for current iterate) More... | |
SmartPtr< const Vector > | curr_compl_s_L () |
Complementarity for s_L (for current iterate) More... | |
SmartPtr< const Vector > | curr_compl_s_U () |
Complementarity for s_U (for current iterate) More... | |
SmartPtr< const Vector > | trial_compl_x_L () |
Complementarity for x_L (for trial iterate) More... | |
SmartPtr< const Vector > | trial_compl_x_U () |
Complementarity for x_U (for trial iterate) More... | |
SmartPtr< const Vector > | trial_compl_s_L () |
Complementarity for s_L (for trial iterate) More... | |
SmartPtr< const Vector > | trial_compl_s_U () |
Complementarity for s_U (for trial iterate) More... | |
SmartPtr< const Vector > | curr_relaxed_compl_x_L () |
Relaxed complementarity for x_L (for current iterate and current mu) More... | |
SmartPtr< const Vector > | curr_relaxed_compl_x_U () |
Relaxed complementarity for x_U (for current iterate and current mu) More... | |
SmartPtr< const Vector > | curr_relaxed_compl_s_L () |
Relaxed complementarity for s_L (for current iterate and current mu) More... | |
SmartPtr< const Vector > | curr_relaxed_compl_s_U () |
Relaxed complementarity for s_U (for current iterate and current mu) More... | |
virtual Number | curr_primal_infeasibility (ENormType NormType) |
Primal infeasibility in a given norm (at current iterate). More... | |
virtual Number | trial_primal_infeasibility (ENormType NormType) |
Primal infeasibility in a given norm (at trial point) More... | |
virtual Number | curr_dual_infeasibility (ENormType NormType) |
Dual infeasibility in a given norm (at current iterate) More... | |
virtual Number | trial_dual_infeasibility (ENormType NormType) |
Dual infeasibility in a given norm (at trial iterate) More... | |
virtual Number | unscaled_curr_dual_infeasibility (ENormType NormType) |
Unscaled dual infeasibility in a given norm (at current iterate) More... | |
virtual Number | curr_complementarity (Number mu, ENormType NormType) |
Complementarity (for all complementarity conditions together) in a given norm (at current iterate) More... | |
virtual Number | trial_complementarity (Number mu, ENormType NormType) |
Complementarity (for all complementarity conditions together) in a given norm (at trial iterate) More... | |
virtual Number | unscaled_curr_complementarity (Number mu, ENormType NormType) |
Complementarity (for all complementarity conditions together) in a given norm (at current iterate) without NLP scaling. More... | |
Number | CalcCentralityMeasure (const Vector &compl_x_L, const Vector &compl_x_U, const Vector &compl_s_L, const Vector &compl_s_U) |
Centrality measure (in spirit of the -infinity-neighborhood. More... | |
virtual Number | curr_centrality_measure () |
Centrality measure at current point. More... | |
virtual Number | curr_nlp_error () |
Total optimality error for the original NLP at the current iterate, using scaling factors based on multipliers. More... | |
virtual Number | unscaled_curr_nlp_error () |
Total optimality error for the original NLP at the current iterate, but using no scaling based on multipliers, and no scaling for the NLP. More... | |
virtual Number | curr_barrier_error () |
Total optimality error for the barrier problem at the current iterate, using scaling factors based on multipliers. More... | |
virtual Number | curr_primal_dual_system_error (Number mu) |
Norm of the primal-dual system for a given mu (at current iterate). More... | |
virtual Number | trial_primal_dual_system_error (Number mu) |
Norm of the primal-dual system for a given mu (at trial iterate). More... | |
Computing fraction-to-the-boundary step sizes | |
Number | primal_frac_to_the_bound (Number tau, const Vector &delta_x, const Vector &delta_s) |
Fraction to the boundary from (current) primal variables x and s for a given step. More... | |
Number | curr_primal_frac_to_the_bound (Number tau) |
Fraction to the boundary from (current) primal variables x and s for internal (current) step. More... | |
Number | dual_frac_to_the_bound (Number tau, const Vector &delta_z_L, const Vector &delta_z_U, const Vector &delta_v_L, const Vector &delta_v_U) |
Fraction to the boundary from (current) dual variables z and v for a given step. More... | |
Number | uncached_dual_frac_to_the_bound (Number tau, const Vector &delta_z_L, const Vector &delta_z_U, const Vector &delta_v_L, const Vector &delta_v_U) |
Fraction to the boundary from (current) dual variables z and v for a given step, without caching. More... | |
Number | curr_dual_frac_to_the_bound (Number tau) |
Fraction to the boundary from (current) dual variables z and v for internal (current) step. More... | |
Number | uncached_slack_frac_to_the_bound (Number tau, const Vector &delta_x_L, const Vector &delta_x_U, const Vector &delta_s_L, const Vector &delta_s_U) |
Fraction to the boundary from (current) slacks for a given step in the slacks. More... | |
Sigma matrices | |
SmartPtr< const Vector > | curr_sigma_x () |
SmartPtr< const Vector > | curr_sigma_s () |
![]() | |
ReferencedObject () | |
virtual | ~ReferencedObject () |
Index | ReferenceCount () const |
void | AddRef (const Referencer *referencer) const |
void | ReleaseRef (const Referencer *referencer) const |
Static Public Member Functions | |
static void | RegisterOptions (SmartPtr< RegisteredOptions > roptions) |
Methods for IpoptType. More... | |
Private Member Functions | |
Default Compiler Generated Methods | |
(Hidden to avoid implicit creation/calling). These methods are not implemented and we do not want the compiler to implement them for us, so we declare them private and do not define them. This ensures that they will not be implicitly created/called. | |
IpoptCalculatedQuantities () | |
Default Constructor. More... | |
IpoptCalculatedQuantities (const IpoptCalculatedQuantities &) | |
Copy Constructor. More... | |
void | operator= (const IpoptCalculatedQuantities &) |
Overloaded Equals Operator. More... | |
Auxiliary functions | |
SmartPtr< Vector > | CalcSlack_L (const Matrix &P, const Vector &x, const Vector &x_bound) |
Compute new vector containing the slack to a lower bound (uncached) More... | |
SmartPtr< Vector > | CalcSlack_U (const Matrix &P, const Vector &x, const Vector &x_bound) |
Compute new vector containing the slack to a upper bound (uncached) More... | |
Number | CalcBarrierTerm (Number mu, const Vector &slack_x_L, const Vector &slack_x_U, const Vector &slack_s_L, const Vector &slack_s_U) |
Compute barrier term at given point (uncached) More... | |
SmartPtr< const Vector > | CalcCompl (const Vector &slack, const Vector &mult) |
Compute complementarity for slack / multiplier pair. More... | |
Number | CalcFracToBound (const Vector &slack_L, Vector &tmp_L, const Matrix &P_L, const Vector &slack_U, Vector &tmp_U, const Matrix &P_U, const Vector &delta, Number tau) |
Compute fraction to the boundary parameter for lower and upper bounds. More... | |
void | ComputeOptimalityErrorScaling (const Vector &y_c, const Vector &y_d, const Vector &z_L, const Vector &z_U, const Vector &v_L, const Vector &v_U, Number s_max, Number &s_d, Number &s_c) |
Compute the scaling factors for the optimality error. More... | |
Index | CalculateSafeSlack (SmartPtr< Vector > &slack, const SmartPtr< const Vector > &bound, const SmartPtr< const Vector > &curr_point, const SmartPtr< const Vector > &multiplier) |
Check if slacks are becoming too small. More... | |
void | ComputeDampingIndicators (SmartPtr< const Vector > &dampind_x_L, SmartPtr< const Vector > &dampind_x_U, SmartPtr< const Vector > &dampind_s_L, SmartPtr< const Vector > &dampind_s_U) |
Computes the indicator vectors that can be used to filter out those entries in the slack_... More... | |
bool | in_restoration_phase () |
Check if we are in the restoration phase. More... | |
Temporary vectors for intermediate calcuations. We keep | |
these around to avoid unnecessarily many new allocations of Vectors. | |
SmartPtr< Vector > | tmp_x_ |
SmartPtr< Vector > | tmp_s_ |
SmartPtr< Vector > | tmp_c_ |
SmartPtr< Vector > | tmp_d_ |
SmartPtr< Vector > | tmp_x_L_ |
SmartPtr< Vector > | tmp_x_U_ |
SmartPtr< Vector > | tmp_s_L_ |
SmartPtr< Vector > | tmp_s_U_ |
Vector & | Tmp_x () |
Accessor methods for the temporary vectors. More... | |
Vector & | Tmp_s () |
Vector & | Tmp_c () |
Vector & | Tmp_d () |
Vector & | Tmp_x_L () |
Vector & | Tmp_x_U () |
Vector & | Tmp_s_L () |
Vector & | Tmp_s_U () |
Class for all IPOPT specific calculated quantities.
Definition at line 81 of file IpIpoptCalculatedQuantities.hpp.
Ipopt::IpoptCalculatedQuantities::IpoptCalculatedQuantities | ( | const SmartPtr< IpoptNLP > & | ip_nlp, |
const SmartPtr< IpoptData > & | ip_data | ||
) |
Constructor.
|
virtual |
Default destructor.
|
private |
Default Constructor.
|
private |
Copy Constructor.
|
inline |
Method for setting pointer for additional calculated quantities.
This needs to be called before Initialized.
Definition at line 96 of file IpIpoptCalculatedQuantities.hpp.
|
inline |
Method detecting if additional object for calculated quantities has already been set.
Definition at line 104 of file IpIpoptCalculatedQuantities.hpp.
bool Ipopt::IpoptCalculatedQuantities::Initialize | ( | const Journalist & | jnlst, |
const OptionsList & | options, | ||
const std::string & | prefix | ||
) |
This method must be called to initialize the global algorithmic parameters.
The parameters are taken from the OptionsList object.
Slacks for x_L (at current iterate)
Slacks for x_U (at current iterate)
Slacks for s_L (at current iterate)
Slacks for s_U (at current iterate)
Slacks for x_L (at trial point)
Slacks for x_U (at trial point)
Slacks for s_L (at trial point)
Slacks for s_U (at trial point)
Index Ipopt::IpoptCalculatedQuantities::AdjustedTrialSlacks | ( | ) |
Indicating whether or not we "fudged" the slacks.
void Ipopt::IpoptCalculatedQuantities::ResetAdjustedTrialSlacks | ( | ) |
Reset the flags for "fudged" slacks.
|
virtual |
Value of objective function (at current point)
|
virtual |
Unscaled value of the objective function (at the current point)
|
virtual |
Value of objective function (at trial point)
|
virtual |
Unscaled value of the objective function (at the trial point)
Gradient of objective function (at current point)
Gradient of objective function (at trial point)
|
virtual |
Barrier Objective Function Value (at current iterate with current mu)
|
virtual |
Barrier Objective Function Value (at trial point with current mu)
Gradient of barrier objective function with respect to x (at current point with current mu)
Gradient of barrier objective function with respect to s (at current point with current mu)
Gradient of the damping term with respect to x (times kappa_d)
Gradient of the damping term with respect to s (times kappa_d)
unscaled c(x) (at current point)
unscaled c(x) (at trial point)
unscaled d(x) (at current point)
d(x) - s (at current point)
d(x) - s (at trial point)
Jacobian of c (at current point)
Jacobian of c (at trial point)
Jacobian of d (at current point)
Jacobian of d (at trial point)
SmartPtr<const Vector> Ipopt::IpoptCalculatedQuantities::curr_jac_cT_times_vec | ( | const Vector & | vec | ) |
Product of Jacobian (evaluated at current point) of C transpose with general vector.
SmartPtr<const Vector> Ipopt::IpoptCalculatedQuantities::trial_jac_cT_times_vec | ( | const Vector & | vec | ) |
Product of Jacobian (evaluated at trial point) of C transpose with general vector.
SmartPtr<const Vector> Ipopt::IpoptCalculatedQuantities::curr_jac_dT_times_vec | ( | const Vector & | vec | ) |
Product of Jacobian (evaluated at current point) of D transpose with general vector.
SmartPtr<const Vector> Ipopt::IpoptCalculatedQuantities::trial_jac_dT_times_vec | ( | const Vector & | vec | ) |
Product of Jacobian (evaluated at trial point) of D transpose with general vector.
Product of Jacobian (evaluated at current point) of C transpose with current y_c.
Product of Jacobian (evaluated at trial point) of C transpose with trial y_c.
Product of Jacobian (evaluated at current point) of D transpose with current y_d.
Product of Jacobian (evaluated at trial point) of D transpose with trial y_d.
Product of Jacobian (evaluated at current point) of C with general vector.
Product of Jacobian (evaluated at current point) of D with general vector.
|
virtual |
Constraint Violation (at current iterate).
This value should be used in the line search, and not curr_primal_infeasibility(). What type of norm is used depends on constr_viol_normtype
|
virtual |
Constraint Violation (at trial point).
This value should be used in the line search, and not curr_primal_infeasibility(). What type of norm is used depends on constr_viol_normtype
|
virtual |
Real constraint violation in a given norm (at current iterate).
This considers the inequality constraints without slacks.
|
virtual |
Unscaled real constraint violation in a given norm (at current iterate).
This considers the inequality constraints without slacks.
|
virtual |
Unscaled real constraint violation in a given norm (at trial iterate).
This considers the inequality constraints without slacks.
exact Hessian at current iterate (uncached)
x-part of gradient of Lagrangian function (at current point)
x-part of gradient of Lagrangian function (at trial point)
s-part of gradient of Lagrangian function (at current point)
s-part of gradient of Lagrangian function (at trial point)
x-part of gradient of Lagrangian function (at current point)
including linear damping term
s-part of gradient of Lagrangian function (at current point)
including linear damping term
Complementarity for x_L (for current iterate)
Complementarity for x_U (for current iterate)
Complementarity for s_L (for current iterate)
Complementarity for s_U (for current iterate)
Complementarity for x_L (for trial iterate)
Complementarity for x_U (for trial iterate)
Complementarity for s_L (for trial iterate)
Complementarity for s_U (for trial iterate)
Relaxed complementarity for x_L (for current iterate and current mu)
Relaxed complementarity for x_U (for current iterate and current mu)
Relaxed complementarity for s_L (for current iterate and current mu)
Relaxed complementarity for s_U (for current iterate and current mu)
|
virtual |
Primal infeasibility in a given norm (at current iterate).
|
virtual |
Primal infeasibility in a given norm (at trial point)
|
virtual |
Dual infeasibility in a given norm (at current iterate)
|
virtual |
Dual infeasibility in a given norm (at trial iterate)
|
virtual |
Unscaled dual infeasibility in a given norm (at current iterate)
|
virtual |
Complementarity (for all complementarity conditions together) in a given norm (at current iterate)
|
virtual |
Complementarity (for all complementarity conditions together) in a given norm (at trial iterate)
|
virtual |
Complementarity (for all complementarity conditions together) in a given norm (at current iterate) without NLP scaling.
Number Ipopt::IpoptCalculatedQuantities::CalcCentralityMeasure | ( | const Vector & | compl_x_L, |
const Vector & | compl_x_U, | ||
const Vector & | compl_s_L, | ||
const Vector & | compl_s_U | ||
) |
Centrality measure (in spirit of the -infinity-neighborhood.
|
virtual |
Centrality measure at current point.
|
virtual |
Total optimality error for the original NLP at the current iterate, using scaling factors based on multipliers.
Note that here the constraint violation is measured without slacks (nlp_constraint_violation)
|
virtual |
|
virtual |
Total optimality error for the barrier problem at the current iterate, using scaling factors based on multipliers.
Norm of the primal-dual system for a given mu (at current iterate).
The norm is defined as the sum of the 1-norms of dual infeasibiliy, primal infeasibility, and complementarity, all divided by the number of elements of the vectors of which the norm is taken.
|
virtual |
Norm of the primal-dual system for a given mu (at trial iterate).
The norm is defined as the sum of the 1-norms of dual infeasibiliy, primal infeasibility, and complementarity, all divided by the number of elements of the vectors of which the norm is taken.
Number Ipopt::IpoptCalculatedQuantities::primal_frac_to_the_bound | ( | Number | tau, |
const Vector & | delta_x, | ||
const Vector & | delta_s | ||
) |
Fraction to the boundary from (current) primal variables x and s for a given step.
Fraction to the boundary from (current) primal variables x and s for internal (current) step.
Number Ipopt::IpoptCalculatedQuantities::dual_frac_to_the_bound | ( | Number | tau, |
const Vector & | delta_z_L, | ||
const Vector & | delta_z_U, | ||
const Vector & | delta_v_L, | ||
const Vector & | delta_v_U | ||
) |
Fraction to the boundary from (current) dual variables z and v for a given step.
Number Ipopt::IpoptCalculatedQuantities::uncached_dual_frac_to_the_bound | ( | Number | tau, |
const Vector & | delta_z_L, | ||
const Vector & | delta_z_U, | ||
const Vector & | delta_v_L, | ||
const Vector & | delta_v_U | ||
) |
Fraction to the boundary from (current) dual variables z and v for a given step, without caching.
Fraction to the boundary from (current) dual variables z and v for internal (current) step.
Number Ipopt::IpoptCalculatedQuantities::uncached_slack_frac_to_the_bound | ( | Number | tau, |
const Vector & | delta_x_L, | ||
const Vector & | delta_x_U, | ||
const Vector & | delta_s_L, | ||
const Vector & | delta_s_U | ||
) |
Fraction to the boundary from (current) slacks for a given step in the slacks.
Usually, one will use the primal_frac_to_the_bound method to compute the primal fraction to the boundary step size, but if it is cheaper to provide the steps in the slacks directly (e.g. when the primal step sizes are only temporary), the this method is more efficient. This method does not cache computations.
Number Ipopt::IpoptCalculatedQuantities::curr_avrg_compl | ( | ) |
average of current values of the complementarities
Number Ipopt::IpoptCalculatedQuantities::trial_avrg_compl | ( | ) |
average of trial values of the complementarities
Number Ipopt::IpoptCalculatedQuantities::curr_gradBarrTDelta | ( | ) |
inner_product of current barrier obj.
fn. gradient with current search direction
Number Ipopt::IpoptCalculatedQuantities::CalcNormOfType | ( | ENormType | NormType, |
std::vector< SmartPtr< const Vector > > | vecs | ||
) |
Compute the norm of a specific type of a set of vectors (uncached)
Number Ipopt::IpoptCalculatedQuantities::CalcNormOfType | ( | ENormType | NormType, |
const Vector & | vec1, | ||
const Vector & | vec2 | ||
) |
Compute the norm of a specific type of two vectors (uncached)
|
inline |
Norm type used for calculating constraint violation.
Definition at line 437 of file IpIpoptCalculatedQuantities.hpp.
bool Ipopt::IpoptCalculatedQuantities::IsSquareProblem | ( | ) | const |
Method returning true if this is a square problem.
Method returning the IpoptNLP object.
This should only be used with care!
Definition at line 447 of file IpIpoptCalculatedQuantities.hpp.
|
inline |
Definition at line 452 of file IpIpoptCalculatedQuantities.hpp.
|
static |
Methods for IpoptType.
Called by IpoptType to register the options
|
private |
Overloaded Equals Operator.
|
private |
Accessor methods for the temporary vectors.
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
|
private |
Compute new vector containing the slack to a lower bound (uncached)
|
private |
Compute new vector containing the slack to a upper bound (uncached)
|
private |
Compute barrier term at given point (uncached)
|
private |
Compute complementarity for slack / multiplier pair.
|
private |
Compute fraction to the boundary parameter for lower and upper bounds.
|
private |
Compute the scaling factors for the optimality error.
|
private |
Check if slacks are becoming too small.
If slacks are becoming too small, they are change. The return value is the number of corrected slacks.
|
private |
Computes the indicator vectors that can be used to filter out those entries in the slack_...
variables, that correspond to variables with only lower and upper bounds. This is required for the linear damping term in the barrier objective function to handle unbounded solution sets.
|
private |
Check if we are in the restoration phase.
Returns true, if the ip_nlp is of the type RestoIpoptNLP. ToDo: We probably want to handle this more elegant and don't have an explicit dependency here. Now I added this because otherwise the caching doesn't work properly since the restoration phase objective function depends on the current barrier parameter.
Definition at line 486 of file IpIpoptCalculatedQuantities.hpp.
Ipopt Data object.
Definition at line 488 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Chen-Goldfarb specific calculated quantities.
Definition at line 490 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Parameter in formula for computing overall primal-dual optimality error.
Definition at line 499 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Weighting factor for the linear damping term added to the barrier objective funciton.
Definition at line 502 of file IpIpoptCalculatedQuantities.hpp.
|
private |
fractional movement allowed in bounds
Definition at line 504 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Norm type to be used when calculating the constraint violation.
Definition at line 506 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Flag indicating whether the TNLP with identical structure has already been solved before.
Definition at line 509 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Desired value of the barrier parameter.
Definition at line 511 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 516 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 517 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 518 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 519 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 520 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 521 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 522 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 523 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 524 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 525 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 526 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 527 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 532 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 533 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 534 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 535 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 540 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 541 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 542 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 543 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 544 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 545 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 550 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 551 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 552 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 553 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 554 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 555 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 556 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 557 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 558 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 559 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 560 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 561 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 562 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 563 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 564 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 565 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 566 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 567 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 568 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 569 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 570 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Cache for the exact Hessian.
Definition at line 574 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 578 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 579 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 580 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 581 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 582 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 583 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 584 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 585 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 586 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 587 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 588 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 589 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 590 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 591 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 592 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 593 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 594 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 595 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 596 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 597 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 598 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 599 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 600 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 601 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 602 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 603 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 604 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 605 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 606 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 607 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 608 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 613 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 614 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 619 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Definition at line 620 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Cache for average of current complementarity.
Definition at line 624 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Cache for average of trial complementarity.
Definition at line 626 of file IpIpoptCalculatedQuantities.hpp.
|
private |
Cache for grad barrier obj.
fn inner product with step
Definition at line 629 of file IpIpoptCalculatedQuantities.hpp.
Indicator vector for selecting the elements in x that have only lower bounds.
Definition at line 636 of file IpIpoptCalculatedQuantities.hpp.
Indicator vector for selecting the elements in x that have only upper bounds.
Definition at line 639 of file IpIpoptCalculatedQuantities.hpp.
Indicator vector for selecting the elements in s that have only lower bounds.
Definition at line 642 of file IpIpoptCalculatedQuantities.hpp.
Indicator vector for selecting the elements in s that have only upper bounds.
Definition at line 645 of file IpIpoptCalculatedQuantities.hpp.
Definition at line 652 of file IpIpoptCalculatedQuantities.hpp.
Definition at line 653 of file IpIpoptCalculatedQuantities.hpp.
Definition at line 654 of file IpIpoptCalculatedQuantities.hpp.
Definition at line 655 of file IpIpoptCalculatedQuantities.hpp.
Definition at line 656 of file IpIpoptCalculatedQuantities.hpp.
Definition at line 657 of file IpIpoptCalculatedQuantities.hpp.
Definition at line 658 of file IpIpoptCalculatedQuantities.hpp.
Definition at line 659 of file IpIpoptCalculatedQuantities.hpp.
|
private |
flag indicating if Initialize method has been called (for debugging)
Definition at line 674 of file IpIpoptCalculatedQuantities.hpp.