This is the implemetation of the Primal-Dual System, using the full space approach with a direct linear solver. More...
#include <IpPDFullSpaceSolver.hpp>
Public Member Functions | |
bool | InitializeImpl (const OptionsList &options, const std::string &prefix) |
overloaded from AlgorithmStrategyObject | |
virtual bool | Solve (Number alpha, Number beta, const IteratesVector &rhs, IteratesVector &res, bool allow_inexact=false, bool improve_solution=false) |
Solve the primal dual system, given one right hand side. | |
/Destructor | |
PDFullSpaceSolver (AugSystemSolver &augSysSolver, PDPerturbationHandler &perturbHandler) | |
Constructor that takes in the Augmented System solver that is to be used inside. | |
virtual | ~PDFullSpaceSolver () |
Default destructor. | |
Static Public Member Functions | |
static void | RegisterOptions (SmartPtr< RegisteredOptions > roptions) |
Methods for IpoptType. | |
Private Member Functions | |
bool | SolveOnce (bool resolve_unmodified, bool pretend_singular, const SymMatrix &W, const Matrix &J_c, const Matrix &J_d, const Matrix &Px_L, const Matrix &Px_U, const Matrix &Pd_L, const Matrix &Pd_U, const Vector &z_L, const Vector &z_U, const Vector &v_L, const Vector &v_U, const Vector &slack_x_L, const Vector &slack_x_U, const Vector &slack_s_L, const Vector &slack_s_U, const Vector &sigma_x, const Vector &sigma_s, Number alpha, Number beta, const IteratesVector &rhs, IteratesVector &res) |
Internal function for a single backsolve (which will be used for iterative refinement on the outside). | |
void | ComputeResiduals (const SymMatrix &W, const Matrix &J_c, const Matrix &J_d, const Matrix &Px_L, const Matrix &Px_U, const Matrix &Pd_L, const Matrix &Pd_U, const Vector &z_L, const Vector &z_U, const Vector &v_L, const Vector &v_U, const Vector &slack_x_L, const Vector &slack_x_U, const Vector &slack_s_L, const Vector &slack_s_U, const Vector &sigma_x, const Vector &sigma_s, Number alpha, Number beta, const IteratesVector &rhs, const IteratesVector &res, IteratesVector &resid) |
Internal function for computing the residual (resid) given the right hand side (rhs) and the solution of the system (res). | |
Number | ComputeResidualRatio (const IteratesVector &rhs, const IteratesVector &res, const IteratesVector &resid) |
Internal function for computing the ratio of the residual compared to the right hand side and solution. | |
Default Compiler Generated Methods | |
PDFullSpaceSolver () | |
Default Constructor. | |
PDFullSpaceSolver & | operator= (const PDFullSpaceSolver &) |
Overloaded Equals Operator. | |
Auxilliary functions | |
void | SinvBlrmZPTdBr (Number alpha, const Vector &S, const Vector &R, const Vector &Z, const Matrix &P, const Vector &g, Vector &X) |
Compute ![]() | |
Private Attributes | |
Strategy objects to hold on to. | |
SmartPtr< AugSystemSolver > | augSysSolver_ |
Pointer to the Solver for the augmented system. | |
SmartPtr< PDPerturbationHandler > | perturbHandler_ |
Pointer to the Perturbation Handler. | |
Data about the correction made to the system | |
CachedResults< void * > | dummy_cache_ |
A dummy cache to figure out if the deltas are still up to date. | |
bool | augsys_improved_ |
Flag indicating if for the current matrix the solution quality of the augmented system solver has already been increased. | |
Parameters | |
Index | min_refinement_steps_ |
Minimal number of iterative refinement performed per backsolve. | |
Index | max_refinement_steps_ |
Maximal number of iterative refinement performed per backsolve. | |
Number | residual_ratio_max_ |
Maximal allowed ratio of the norm of the residual over the norm of the right hand side and solution. | |
Number | residual_ratio_singular_ |
If the residual_ratio is larger than this value after trying to improve the solution, the linear system is assumed to be singular and modified. | |
Number | residual_improvement_factor_ |
Factor defining require improvement to consider iterative refinement successful. | |
Number | neg_curv_test_tol_ |
Tolernace for heuristic to ignore wrong inertia. |
This is the implemetation of the Primal-Dual System, using the full space approach with a direct linear solver.
A note on the iterative refinement: We perform at least min_refinement_steps number of iterative refinement steps. If after one iterative refinement the quality of the solution (defined in ResidualRatio) does not improve or the maximal number of iterative refinement steps is exceeded before the tolerance residual_ratio_max_ is satisfied, we first ask the linear solver to solve the system more accurately (e.g. by increasing the pivot tolerance). If that doesn't help or is not possible, we treat the system, as if it is singular (i.e. increase delta's).
Definition at line 32 of file IpPDFullSpaceSolver.hpp.
Ipopt::PDFullSpaceSolver::PDFullSpaceSolver | ( | AugSystemSolver & | augSysSolver, | |
PDPerturbationHandler & | perturbHandler | |||
) |
Constructor that takes in the Augmented System solver that is to be used inside.
virtual Ipopt::PDFullSpaceSolver::~PDFullSpaceSolver | ( | ) | [virtual] |
Default destructor.
Ipopt::PDFullSpaceSolver::PDFullSpaceSolver | ( | ) | [private] |
Default Constructor.
bool Ipopt::PDFullSpaceSolver::InitializeImpl | ( | const OptionsList & | options, | |
const std::string & | prefix | |||
) | [virtual] |
overloaded from AlgorithmStrategyObject
Implements Ipopt::PDSystemSolver.
virtual bool Ipopt::PDFullSpaceSolver::Solve | ( | Number | alpha, | |
Number | beta, | |||
const IteratesVector & | rhs, | |||
IteratesVector & | res, | |||
bool | allow_inexact = false , |
|||
bool | improve_solution = false | |||
) | [virtual] |
Solve the primal dual system, given one right hand side.
Implements Ipopt::PDSystemSolver.
static void Ipopt::PDFullSpaceSolver::RegisterOptions | ( | SmartPtr< RegisteredOptions > | roptions | ) | [static] |
Methods for IpoptType.
PDFullSpaceSolver& Ipopt::PDFullSpaceSolver::operator= | ( | const PDFullSpaceSolver & | ) | [private] |
Overloaded Equals Operator.
Reimplemented from Ipopt::PDSystemSolver.
bool Ipopt::PDFullSpaceSolver::SolveOnce | ( | bool | resolve_unmodified, | |
bool | pretend_singular, | |||
const SymMatrix & | W, | |||
const Matrix & | J_c, | |||
const Matrix & | J_d, | |||
const Matrix & | Px_L, | |||
const Matrix & | Px_U, | |||
const Matrix & | Pd_L, | |||
const Matrix & | Pd_U, | |||
const Vector & | z_L, | |||
const Vector & | z_U, | |||
const Vector & | v_L, | |||
const Vector & | v_U, | |||
const Vector & | slack_x_L, | |||
const Vector & | slack_x_U, | |||
const Vector & | slack_s_L, | |||
const Vector & | slack_s_U, | |||
const Vector & | sigma_x, | |||
const Vector & | sigma_s, | |||
Number | alpha, | |||
Number | beta, | |||
const IteratesVector & | rhs, | |||
IteratesVector & | res | |||
) | [private] |
Internal function for a single backsolve (which will be used for iterative refinement on the outside).
This method returns false, if for some reason the linear system could not be solved (e.g. when the regularization parameter becomes too large.)
void Ipopt::PDFullSpaceSolver::ComputeResiduals | ( | const SymMatrix & | W, | |
const Matrix & | J_c, | |||
const Matrix & | J_d, | |||
const Matrix & | Px_L, | |||
const Matrix & | Px_U, | |||
const Matrix & | Pd_L, | |||
const Matrix & | Pd_U, | |||
const Vector & | z_L, | |||
const Vector & | z_U, | |||
const Vector & | v_L, | |||
const Vector & | v_U, | |||
const Vector & | slack_x_L, | |||
const Vector & | slack_x_U, | |||
const Vector & | slack_s_L, | |||
const Vector & | slack_s_U, | |||
const Vector & | sigma_x, | |||
const Vector & | sigma_s, | |||
Number | alpha, | |||
Number | beta, | |||
const IteratesVector & | rhs, | |||
const IteratesVector & | res, | |||
IteratesVector & | resid | |||
) | [private] |
Internal function for computing the residual (resid) given the right hand side (rhs) and the solution of the system (res).
Number Ipopt::PDFullSpaceSolver::ComputeResidualRatio | ( | const IteratesVector & | rhs, | |
const IteratesVector & | res, | |||
const IteratesVector & | resid | |||
) | [private] |
Internal function for computing the ratio of the residual compared to the right hand side and solution.
The smaller this value, the better the solution.
void Ipopt::PDFullSpaceSolver::SinvBlrmZPTdBr | ( | Number | alpha, | |
const Vector & | S, | |||
const Vector & | R, | |||
const Vector & | Z, | |||
const Matrix & | P, | |||
const Vector & | g, | |||
Vector & | X | |||
) | [private] |
Compute .
SmartPtr<AugSystemSolver> Ipopt::PDFullSpaceSolver::augSysSolver_ [private] |
Pointer to the Solver for the augmented system.
Definition at line 83 of file IpPDFullSpaceSolver.hpp.
Pointer to the Perturbation Handler.
Definition at line 85 of file IpPDFullSpaceSolver.hpp.
CachedResults<void*> Ipopt::PDFullSpaceSolver::dummy_cache_ [private] |
A dummy cache to figure out if the deltas are still up to date.
Definition at line 91 of file IpPDFullSpaceSolver.hpp.
bool Ipopt::PDFullSpaceSolver::augsys_improved_ [private] |
Flag indicating if for the current matrix the solution quality of the augmented system solver has already been increased.
Definition at line 94 of file IpPDFullSpaceSolver.hpp.
Minimal number of iterative refinement performed per backsolve.
Definition at line 100 of file IpPDFullSpaceSolver.hpp.
Maximal number of iterative refinement performed per backsolve.
Definition at line 102 of file IpPDFullSpaceSolver.hpp.
Maximal allowed ratio of the norm of the residual over the norm of the right hand side and solution.
Definition at line 105 of file IpPDFullSpaceSolver.hpp.
If the residual_ratio is larger than this value after trying to improve the solution, the linear system is assumed to be singular and modified.
Definition at line 109 of file IpPDFullSpaceSolver.hpp.
Factor defining require improvement to consider iterative refinement successful.
Definition at line 112 of file IpPDFullSpaceSolver.hpp.
Tolernace for heuristic to ignore wrong inertia.
Definition at line 114 of file IpPDFullSpaceSolver.hpp.