Ipopt
3.12.12
|
Implementation of the HessianUpdater for limit-memory quasi-Newton approximation of the Lagrangian Hessian. More...
#include <IpLimMemQuasiNewtonUpdater.hpp>
Public Member Functions | |
virtual bool | InitializeImpl (const OptionsList &options, const std::string &prefix) |
overloaded from AlgorithmStrategyObject More... | |
virtual void | UpdateHessian () |
Update the Hessian based on the current information in IpData. More... | |
Constructors/Destructors | |
LimMemQuasiNewtonUpdater (bool update_for_resto) | |
Default Constructor. More... | |
virtual | ~LimMemQuasiNewtonUpdater () |
Default destructor. More... | |
![]() | |
HessianUpdater () | |
Default Constructor. More... | |
virtual | ~HessianUpdater () |
Default destructor. More... | |
![]() | |
bool | Initialize (const Journalist &jnlst, IpoptNLP &ip_nlp, IpoptData &ip_data, IpoptCalculatedQuantities &ip_cq, const OptionsList &options, const std::string &prefix) |
This method is called every time the algorithm starts again - it is used to reset any internal state. More... | |
bool | ReducedInitialize (const Journalist &jnlst, const OptionsList &options, const std::string &prefix) |
Reduced version of the Initialize method, which does not require special Ipopt information. More... | |
AlgorithmStrategyObject () | |
Default Constructor. More... | |
virtual | ~AlgorithmStrategyObject () |
Default Destructor. More... | |
![]() | |
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 OptionsList. 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. | |
LimMemQuasiNewtonUpdater (const LimMemQuasiNewtonUpdater &) | |
Copy Constructor. More... | |
void | operator= (const LimMemQuasiNewtonUpdater &) |
Overloaded Equals Operator. More... | |
Auxilliary function | |
bool | CheckSkippingBFGS (Vector &s_new, Vector &y_new) |
Method deciding whether the BFGS update should be skipped. More... | |
bool | UpdateInternalData (const Vector &s_new, const Vector &y_new, SmartPtr< Vector > ypart_new) |
Update the internal data, such as the S, Y, L, D etc matrices and vectors that are required for computing the compact representation. More... | |
void | AugmentMultiVector (SmartPtr< MultiVectorMatrix > &V, const Vector &v_new) |
Given a MutliVector V, create a new MultiVectorSpace with one more column, and return V as a member of that space, consisting of all previous vectors, and in addition v_new in the last column. More... | |
void | AugmentDenseVector (SmartPtr< DenseVector > &V, Number v_new) |
Given a DenseVector V, create a new DenseVectorSpace with one more row, and return V as a member of that space, consisting of all previous elements, and in addition v_new in the last row. More... | |
void | AugmentLMatrix (SmartPtr< DenseGenMatrix > &V, const MultiVectorMatrix &S, const MultiVectorMatrix &Y) |
Given a strictly-lower triangular square DenseGenMatrix V, create a new DenseGenMatrixSpace with one more dimension, and return V as a member of that space, consisting of all previous elements, and in addition elements s_i^Ty_j for (i<j), where s and y are the vectors in the MultiVectors S and Y. More... | |
void | AugmentSdotSMatrix (SmartPtr< DenseSymMatrix > &V, const MultiVectorMatrix &S) |
Given a DenseSymMatrix V, create a new DenseGenMatrixSpace with one more dimension, and return V as a member of that space, consisting of all previous elements, and in addition elements s_i^Ts_j for the new entries, where s are the vectors in the MultiVector S. More... | |
void | AugmentSTDRSMatrix (SmartPtr< DenseSymMatrix > &V, const MultiVectorMatrix &S, const MultiVectorMatrix &DRS) |
Given a DenseSymMatrix V, create a new DenseGenMatrixSpace with one more dimension, and return V as a member of that space, consisting of all previous elements, and in addition elements s_i^TDRs_j for the new entries, where s are the vectors in the MultiVector S, and DRs are the vectors in DRS. More... | |
void | ShiftMultiVector (SmartPtr< MultiVectorMatrix > &V, const Vector &v_new) |
Given a MutliVector V, get rid of the first column, shift all other columns to the left, and make v_new the last column. More... | |
void | ShiftDenseVector (SmartPtr< DenseVector > &V, Number v_new) |
Given a DenseVector V, get rid of the first element, shift all other elements one position to the top, and make v_new the last entry. More... | |
void | ShiftLMatrix (SmartPtr< DenseGenMatrix > &V, const MultiVectorMatrix &S, const MultiVectorMatrix &Y) |
Given a strictly-lower triangular square DenseGenMatrix V, shift everything one row and column up, and fill the new strictly lower triangular entries as s_i^Ty_j for (i<j), where s and y are the vectors in the MultiVectors S and Y. More... | |
void | ShiftSdotSMatrix (SmartPtr< DenseSymMatrix > &V, const MultiVectorMatrix &S) |
Given a DenseSymMatrix V, shift everything up one row and column, and fill the new entries as s_i^Ts_j, where s are the vectors in the MultiVector S. More... | |
void | ShiftSTDRSMatrix (SmartPtr< DenseSymMatrix > &V, const MultiVectorMatrix &S, const MultiVectorMatrix &DRS) |
Given a DenseSymMatrix V, shift everything up one row and column, and fill the new entries as s_i^TDRs_j, where s are the vectors in the MultiVector S, and DRs are the vectors in DRS. More... | |
void | RecalcY (Number eta, const Vector &DR_x, MultiVectorMatrix &S, MultiVectorMatrix &Ypart, SmartPtr< MultiVectorMatrix > &Y) |
Method for recomputing Y from scratch, using Ypart (only for restoration phase) More... | |
void | RecalcD (MultiVectorMatrix &S, MultiVectorMatrix &Y, SmartPtr< DenseVector > &D) |
Method for recomputing D from S and Y. More... | |
void | RecalcL (MultiVectorMatrix &S, MultiVectorMatrix &Y, SmartPtr< DenseGenMatrix > &L) |
Method for recomputing L from S and Y. More... | |
bool | SplitEigenvalues (DenseGenMatrix &Q, const DenseVector &E, SmartPtr< DenseGenMatrix > &Qminus, SmartPtr< DenseGenMatrix > &Qplus) |
Split the eigenvectors into negative and positive ones. More... | |
void | StoreInternalDataBackup () |
Store a copy of the pointers to the internal data (S, Y, D, L, SdotS, curr_lm_memory) This is called in case the update is started but skipped during the process. More... | |
void | RestoreInternalDataBackup () |
Restore the copy of the pointers to the internal data most recently stored with StoreInternalDataBackup(). More... | |
void | ReleaseInternalDataBackup () |
Release anything that we allocated for StoreInternalDataBackup and is no longer needed. More... | |
void | SetW () |
Set the W field in IpData based on the current values of B0_, V_, and U_. More... | |
Private Attributes | |
SmartPtr< const LowRankUpdateSymMatrixSpace > | h_space_ |
Matrix space for the low-rank Hessian approximation. More... | |
const bool | update_for_resto_ |
Flag indicating if the update is to be done for the original NLP or for the restoration phase NLP. More... | |
Number | last_eta_ |
Most recent value for eta in the restoration phase objective function (only for update_for_resto_ = true) More... | |
SmartPtr< const Vector > | curr_DR_x_ |
Current DR_x scaling factors in the restoration phase objective function (only for update_for_resto_ = true). More... | |
TaggedObject::Tag | curr_DR_x_tag_ |
Tag for curr_DR_x_. More... | |
SmartPtr< const Vector > | curr_red_DR_x_ |
Current DR_x scaling factors in the restoration phase objective function in the smaller space for the approximation - this is only computed if the space is indeed smaller than the x space (only for update_for_resto_ = true) More... | |
Number | curr_eta_ |
Current value of weighing factor eta in the restoration phase objective function (only for update_for_resto_ = true) More... | |
Index | lm_skipped_iter_ |
Counter for successive iterations in which the update was skipped. More... | |
Information for the limited memory update | |
Index | curr_lm_memory_ |
current size of limited memory More... | |
SmartPtr< MultiVectorMatrix > | S_ |
s pairs for the recent iterations More... | |
SmartPtr< MultiVectorMatrix > | Y_ |
y pairs for the recent iterations. More... | |
SmartPtr< MultiVectorMatrix > | Ypart_ |
For restoration phase update: Y without the quadratic objective function part. More... | |
SmartPtr< DenseVector > | D_ |
Diagonal elements D_k for compact formulation from last update. More... | |
SmartPtr< DenseGenMatrix > | L_ |
Matrix L_k for compact formulation from last update. More... | |
SmartPtr< Vector > | B0_ |
First term (starting matrix) for the approximation. More... | |
Number | sigma_ |
First term (starting matrix) for the approximation. More... | |
SmartPtr< MultiVectorMatrix > | V_ |
V in LowRankUpdateMatrix from last update. More... | |
SmartPtr< MultiVectorMatrix > | U_ |
U in LowRankUpdateMatrix from last update. More... | |
SmartPtr< DenseSymMatrix > | SdotS_ |
For efficient implementation, we store the pairwise products for s's. More... | |
bool | SdotS_uptodate_ |
Flag indicating whether SdotS_ is update to date from most recent update. More... | |
SmartPtr< MultiVectorMatrix > | DRS_ |
DR * S (only for restoration phase) More... | |
SmartPtr< DenseSymMatrix > | STDRS_ |
For efficient implementation, we store the S^T S DR * S. More... | |
SmartPtr< const Vector > | last_x_ |
Primal variables x from most recent update. More... | |
SmartPtr< const Vector > | last_grad_f_ |
Gradient of objective function w.r.t. More... | |
SmartPtr< const Matrix > | last_jac_c_ |
Jacobian for equality constraints w.r.t x at x_last. More... | |
SmartPtr< const Matrix > | last_jac_d_ |
Jacobian for inequality constraints w.r.t x at x_last. More... | |
Index | curr_lm_memory_old_ |
current size of limited memory More... | |
SmartPtr< MultiVectorMatrix > | S_old_ |
s pairs for the recent iterations (backup) More... | |
SmartPtr< MultiVectorMatrix > | Y_old_ |
y pairs for the recent iterations. More... | |
SmartPtr< MultiVectorMatrix > | Ypart_old_ |
For restoration phase update: Y without the quadratic objective function part (backup) More... | |
SmartPtr< DenseVector > | D_old_ |
Diagonal elements D_k for compact formulation from last update (backup). More... | |
SmartPtr< DenseGenMatrix > | L_old_ |
Matrix L_k for compact formulation from last update (backup). More... | |
SmartPtr< Vector > | B0_old_ |
First term (starting matrix) for the approximation (backup). More... | |
Number | sigma_old_ |
First term (starting matrix) for the approximation. More... | |
SmartPtr< MultiVectorMatrix > | V_old_ |
V in LowRankUpdateMatrix from last update (backup) More... | |
SmartPtr< MultiVectorMatrix > | U_old_ |
U in LowRankUpdateMatrix from last update (backup) More... | |
SmartPtr< DenseSymMatrix > | SdotS_old_ |
For efficient implementation, we store the pairwise products for s's (backup). More... | |
bool | SdotS_uptodate_old_ |
Flag indicating whether SdotS_ is update to date from most recent update (backup). More... | |
SmartPtr< MultiVectorMatrix > | DRS_old_ |
DR * S (only for restoration phase) (backup) More... | |
SmartPtr< DenseSymMatrix > | STDRS_old_ |
For efficient implementation, we store the S^T S DR * S. More... | |
Algorithmic parameters | |
enum | LMUpdateType { BFGS =0, SR1 } |
enumeration for the Hessian update type. More... | |
enum | LMInitialization { SCALAR1 =0, SCALAR2, SCALAR3, SCALAR4, CONSTANT } |
enumeration for the Hessian initialization. More... | |
Index | limited_memory_max_history_ |
Size of memory for limited memory update. More... | |
LMUpdateType | limited_memory_update_type_ |
Type of Hessian update. More... | |
LMInitialization | limited_memory_initialization_ |
How to choose B0 in the low-rank update. More... | |
Number | limited_memory_init_val_ |
Value of B0 (as this multiple of the identity in certain situations.) More... | |
Index | limited_memory_max_skipping_ |
Number of successive iterations of skipped updates after which the approximation is reset. More... | |
Number | sigma_safe_min_ |
Minimal safeguard value for sigma. More... | |
Number | sigma_safe_max_ |
Maximal safeguard value for sigma. More... | |
bool | limited_memory_special_for_resto_ |
Flag indicating if Hessian approximation should be done in a special manner for the restoration phase. More... | |
Additional Inherited Members | |
![]() | |
const Journalist & | Jnlst () const |
IpoptNLP & | IpNLP () const |
IpoptData & | IpData () const |
IpoptCalculatedQuantities & | IpCq () const |
bool | HaveIpData () const |
Implementation of the HessianUpdater for limit-memory quasi-Newton approximation of the Lagrangian Hessian.
Definition at line 25 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
enumeration for the Hessian update type.
Enumerator | |
---|---|
BFGS | |
SR1 |
Definition at line 75 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
enumeration for the Hessian initialization.
Enumerator | |
---|---|
SCALAR1 | |
SCALAR2 | |
SCALAR3 | |
SCALAR4 | |
CONSTANT |
Definition at line 83 of file IpLimMemQuasiNewtonUpdater.hpp.
Ipopt::LimMemQuasiNewtonUpdater::LimMemQuasiNewtonUpdater | ( | bool | update_for_resto | ) |
Default Constructor.
|
inlinevirtual |
Default destructor.
Definition at line 34 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Copy Constructor.
|
virtual |
overloaded from AlgorithmStrategyObject
Implements Ipopt::HessianUpdater.
|
virtual |
Update the Hessian based on the current information in IpData.
Implements Ipopt::HessianUpdater.
|
static |
Methods for OptionsList.
|
private |
Overloaded Equals Operator.
Method deciding whether the BFGS update should be skipped.
It returns true, if no update is to be performed this time. If Powell-damping is performed, the Vectors s_new and y_new, might be adapted.
|
private |
Update the internal data, such as the S, Y, L, D etc matrices and vectors that are required for computing the compact representation.
The method returns true if the limited memory history grew (i.e., curr_lm_memory_ was increased).
|
private |
Given a MutliVector V, create a new MultiVectorSpace with one more column, and return V as a member of that space, consisting of all previous vectors, and in addition v_new in the last column.
If V is NULL, then a new MatrixSpace with one column is created.
|
private |
Given a DenseVector V, create a new DenseVectorSpace with one more row, and return V as a member of that space, consisting of all previous elements, and in addition v_new in the last row.
If V is NULL, then a new DenseVectorSpace with dimension one is created.
|
private |
Given a strictly-lower triangular square DenseGenMatrix V, create a new DenseGenMatrixSpace with one more dimension, and return V as a member of that space, consisting of all previous elements, and in addition elements s_i^Ty_j for (i<j), where s and y are the vectors in the MultiVectors S and Y.
If V is NULL, then a new DenseGenMatrixSpace with dimension one is created.
|
private |
Given a DenseSymMatrix V, create a new DenseGenMatrixSpace with one more dimension, and return V as a member of that space, consisting of all previous elements, and in addition elements s_i^Ts_j for the new entries, where s are the vectors in the MultiVector S.
If V is NULL, then a new DenseGenMatrixSpace with dimension one is created.
|
private |
Given a DenseSymMatrix V, create a new DenseGenMatrixSpace with one more dimension, and return V as a member of that space, consisting of all previous elements, and in addition elements s_i^TDRs_j for the new entries, where s are the vectors in the MultiVector S, and DRs are the vectors in DRS.
If V is NULL, then a new DenseGenMatrixSpace with dimension one is created.
|
private |
Given a MutliVector V, get rid of the first column, shift all other columns to the left, and make v_new the last column.
The entity that V points to at the call, is not changed - a new entity is created in the method and returned as V.
|
private |
Given a DenseVector V, get rid of the first element, shift all other elements one position to the top, and make v_new the last entry.
The entity that V points to at the call, is not changed - a new entity is created in the method and returned as V.
|
private |
Given a strictly-lower triangular square DenseGenMatrix V, shift everything one row and column up, and fill the new strictly lower triangular entries as s_i^Ty_j for (i<j), where s and y are the vectors in the MultiVectors S and Y.
The entity that V points to at the call, is not changed - a new entity is created in the method and returned as V.
|
private |
Given a DenseSymMatrix V, shift everything up one row and column, and fill the new entries as s_i^Ts_j, where s are the vectors in the MultiVector S.
The entity that V points to at the call, is not changed - a new entity is created in the method and returned as V.
|
private |
Given a DenseSymMatrix V, shift everything up one row and column, and fill the new entries as s_i^TDRs_j, where s are the vectors in the MultiVector S, and DRs are the vectors in DRS.
The entity that V points to at the call, is not changed - a new entity is created in the method and returned as V.
|
private |
Method for recomputing Y from scratch, using Ypart (only for restoration phase)
|
private |
Method for recomputing D from S and Y.
|
private |
Method for recomputing L from S and Y.
|
private |
Split the eigenvectors into negative and positive ones.
Given the eigenvectors in Q and the eigenvalues (in ascending order) in, this returns Qminus as the negative eigenvectors times sqrt(-eval), and Qplus as the positive eigenvectors times sqrt(eval). If Qminus or Qplus is NULL, it means that there are not negetive or positive eigenvalues. Q might be changed during this call. The return value is true, if the ratio of the smallest over the largest eigenvalue (in absolute values) is too small; in that case, the update should be skipped.
|
private |
Store a copy of the pointers to the internal data (S, Y, D, L, SdotS, curr_lm_memory) This is called in case the update is started but skipped during the process.
|
private |
Restore the copy of the pointers to the internal data most recently stored with StoreInternalDataBackup().
|
private |
Release anything that we allocated for StoreInternalDataBackup and is no longer needed.
|
private |
Set the W field in IpData based on the current values of B0_, V_, and U_.
|
private |
Matrix space for the low-rank Hessian approximation.
Definition at line 68 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Size of memory for limited memory update.
Definition at line 73 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Type of Hessian update.
Definition at line 81 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
How to choose B0 in the low-rank update.
Definition at line 92 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Value of B0 (as this multiple of the identity in certain situations.)
Definition at line 95 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Number of successive iterations of skipped updates after which the approximation is reset.
Definition at line 98 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Minimal safeguard value for sigma.
Definition at line 100 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Maximal safeguard value for sigma.
Definition at line 102 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Flag indicating if Hessian approximation should be done in a special manner for the restoration phase.
Definition at line 105 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Flag indicating if the update is to be done for the original NLP or for the restoration phase NLP.
In the latter case, we are performing a "structured" update, taking into account the first explicit term in the objective function of the form eta*D_r*x_k
Definition at line 113 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Most recent value for eta in the restoration phase objective function (only for update_for_resto_ = true)
Definition at line 116 of file IpLimMemQuasiNewtonUpdater.hpp.
Current DR_x scaling factors in the restoration phase objective function (only for update_for_resto_ = true).
This should not change throughout one restoration phase.
Definition at line 120 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Tag for curr_DR_x_.
Definition at line 122 of file IpLimMemQuasiNewtonUpdater.hpp.
Current DR_x scaling factors in the restoration phase objective function in the smaller space for the approximation - this is only computed if the space is indeed smaller than the x space (only for update_for_resto_ = true)
Definition at line 127 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Current value of weighing factor eta in the restoration phase objective function (only for update_for_resto_ = true)
Definition at line 130 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Counter for successive iterations in which the update was skipped.
Definition at line 134 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
current size of limited memory
Definition at line 139 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
s pairs for the recent iterations
Definition at line 141 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
y pairs for the recent iterations.
If update_for_resto is true, then this includes only the information for the constraints.
Definition at line 145 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
For restoration phase update: Y without the quadratic objective function part.
Definition at line 148 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Diagonal elements D_k for compact formulation from last update.
Definition at line 151 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Matrix L_k for compact formulation from last update.
Definition at line 153 of file IpLimMemQuasiNewtonUpdater.hpp.
First term (starting matrix) for the approximation.
Definition at line 155 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
First term (starting matrix) for the approximation.
If that first terms is a multiple of the identy, sigma give that factor. Otherwise sigma = -1.
Definition at line 159 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
V in LowRankUpdateMatrix from last update.
Definition at line 161 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
U in LowRankUpdateMatrix from last update.
Definition at line 163 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
For efficient implementation, we store the pairwise products for s's.
Definition at line 166 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Flag indicating whether SdotS_ is update to date from most recent update.
Definition at line 169 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
DR * S (only for restoration phase)
Definition at line 171 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
For efficient implementation, we store the S^T S DR * S.
Only for restoration phase.
Definition at line 174 of file IpLimMemQuasiNewtonUpdater.hpp.
Primal variables x from most recent update.
Definition at line 176 of file IpLimMemQuasiNewtonUpdater.hpp.
Gradient of objective function w.r.t.
x at x_last_
Definition at line 178 of file IpLimMemQuasiNewtonUpdater.hpp.
Jacobian for equality constraints w.r.t x at x_last.
Definition at line 180 of file IpLimMemQuasiNewtonUpdater.hpp.
Jacobian for inequality constraints w.r.t x at x_last.
Definition at line 182 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
current size of limited memory
Definition at line 184 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
s pairs for the recent iterations (backup)
Definition at line 186 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
y pairs for the recent iterations.
If update_for_resto is true, then this includes only the information for the constraints. (backup)
Definition at line 190 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
For restoration phase update: Y without the quadratic objective function part (backup)
Definition at line 193 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Diagonal elements D_k for compact formulation from last update (backup).
Definition at line 196 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Matrix L_k for compact formulation from last update (backup).
Definition at line 198 of file IpLimMemQuasiNewtonUpdater.hpp.
First term (starting matrix) for the approximation (backup).
Definition at line 200 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
First term (starting matrix) for the approximation.
If that first terms is a multiple of the identy, sigma give that factor. Otherwise sigma = -1. (backup)
Definition at line 204 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
V in LowRankUpdateMatrix from last update (backup)
Definition at line 206 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
U in LowRankUpdateMatrix from last update (backup)
Definition at line 208 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
For efficient implementation, we store the pairwise products for s's (backup).
Definition at line 211 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
Flag indicating whether SdotS_ is update to date from most recent update (backup).
Definition at line 214 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
DR * S (only for restoration phase) (backup)
Definition at line 216 of file IpLimMemQuasiNewtonUpdater.hpp.
|
private |
For efficient implementation, we store the S^T S DR * S.
Only for restoration phase. (backup)
Definition at line 219 of file IpLimMemQuasiNewtonUpdater.hpp.