ROL
Classes | Public Member Functions | Private Attributes | List of all members
ROL::ProjectedNewtonKrylovStep< Real > Class Template Reference

Provides the interface to compute optimization steps with projected inexact ProjectedNewton's method using line search. More...

#include <ROL_ProjectedNewtonKrylovStep.hpp>

+ Inheritance diagram for ROL::ProjectedNewtonKrylovStep< Real >:

Classes

class  HessianPNK
 
class  PrecondPNK
 

Public Member Functions

 ProjectedNewtonKrylovStep (ROL::ParameterList &parlist, const bool computeObj=true)
 Constructor. More...
 
 ProjectedNewtonKrylovStep (ROL::ParameterList &parlist, const ROL::Ptr< Krylov< Real > > &krylov, const ROL::Ptr< Secant< Real > > &secant, const bool computeObj=true)
 Constructor. More...
 
void initialize (Vector< Real > &x, const Vector< Real > &s, const Vector< Real > &g, Objective< Real > &obj, BoundConstraint< Real > &bnd, AlgorithmState< Real > &algo_state)
 Initialize step with bound constraint. More...
 
void compute (Vector< Real > &s, const Vector< Real > &x, Objective< Real > &obj, BoundConstraint< Real > &bnd, AlgorithmState< Real > &algo_state)
 Compute step. More...
 
void update (Vector< Real > &x, const Vector< Real > &s, Objective< Real > &obj, BoundConstraint< Real > &bnd, AlgorithmState< Real > &algo_state)
 Update step, if successful. More...
 
std::string printHeader (void) const
 Print iterate header. More...
 
std::string printName (void) const
 Print step name. More...
 
std::string print (AlgorithmState< Real > &algo_state, bool print_header=false) const
 Print iterate status. More...
 
- Public Member Functions inherited from ROL::Step< Real >
virtual ~Step ()
 
 Step (void)
 
virtual void initialize (Vector< Real > &x, const Vector< Real > &g, Objective< Real > &obj, BoundConstraint< Real > &con, AlgorithmState< Real > &algo_state)
 Initialize step with bound constraint. More...
 
virtual void initialize (Vector< Real > &x, const Vector< Real > &g, Vector< Real > &l, const Vector< Real > &c, Objective< Real > &obj, Constraint< Real > &con, AlgorithmState< Real > &algo_state)
 Initialize step with equality constraint. More...
 
virtual void initialize (Vector< Real > &x, const Vector< Real > &g, Vector< Real > &l, const Vector< Real > &c, Objective< Real > &obj, Constraint< Real > &con, BoundConstraint< Real > &bnd, AlgorithmState< Real > &algo_state)
 Initialize step with equality constraint. More...
 
virtual void compute (Vector< Real > &s, const Vector< Real > &x, const Vector< Real > &l, Objective< Real > &obj, Constraint< Real > &con, AlgorithmState< Real > &algo_state)
 Compute step (equality constraints). More...
 
virtual void update (Vector< Real > &x, Vector< Real > &l, const Vector< Real > &s, Objective< Real > &obj, Constraint< Real > &con, AlgorithmState< Real > &algo_state)
 Update step, if successful (equality constraints). More...
 
virtual void compute (Vector< Real > &s, const Vector< Real > &x, const Vector< Real > &l, Objective< Real > &obj, Constraint< Real > &con, BoundConstraint< Real > &bnd, AlgorithmState< Real > &algo_state)
 Compute step (equality constraints). More...
 
virtual void update (Vector< Real > &x, Vector< Real > &l, const Vector< Real > &s, Objective< Real > &obj, Constraint< Real > &con, BoundConstraint< Real > &bnd, AlgorithmState< Real > &algo_state)
 Update step, if successful (equality constraints). More...
 
const ROL::Ptr< const
StepState< Real > > 
getStepState (void) const
 Get state for step object. More...
 
void reset (const Real searchSize=1.0)
 Get state for step object. More...
 

Private Attributes

ROL::Ptr< Secant< Real > > secant_
 Secant object (used for quasi-Newton) More...
 
ROL::Ptr< Krylov< Real > > krylov_
 Krylov solver object (used for inexact Newton) More...
 
EKrylov ekv_
 
ESecant esec_
 
ROL::Ptr< Vector< Real > > gp_
 
ROL::Ptr< Vector< Real > > d_
 
int iterKrylov_
 Number of Krylov iterations (used for inexact Newton) More...
 
int flagKrylov_
 Termination flag for Krylov method (used for inexact Newton) More...
 
int verbosity_
 Verbosity level. More...
 
const bool computeObj_
 
bool useSecantPrecond_
 Whether or not a secant approximation is used for preconditioning inexact Newton. More...
 
bool useProjectedGrad_
 Whether or not to use to the projected gradient criticality measure. More...
 
std::string krylovName_
 
std::string secantName_
 

Additional Inherited Members

- Protected Member Functions inherited from ROL::Step< Real >
ROL::Ptr< StepState< Real > > getState (void)
 

Detailed Description

template<class Real>
class ROL::ProjectedNewtonKrylovStep< Real >

Provides the interface to compute optimization steps with projected inexact ProjectedNewton's method using line search.

Definition at line 67 of file ROL_ProjectedNewtonKrylovStep.hpp.

Constructor & Destructor Documentation

template<class Real >
ROL::ProjectedNewtonKrylovStep< Real >::ProjectedNewtonKrylovStep ( ROL::ParameterList &  parlist,
const bool  computeObj = true 
)
inline
template<class Real >
ROL::ProjectedNewtonKrylovStep< Real >::ProjectedNewtonKrylovStep ( ROL::ParameterList &  parlist,
const ROL::Ptr< Krylov< Real > > &  krylov,
const ROL::Ptr< Secant< Real > > &  secant,
const bool  computeObj = true 
)
inline

Constructor.

Constructor to build a ProjectedNewtonKrylovStep object with user-defined secant and Krylov objects. Algorithmic specifications are passed in through a ROL::ParameterList.

Parameters
[in]parlistis a parameter list containing algorithmic specifications
[in]krylovis a user-defined Krylov object
[in]secantis a user-defined secant object

Definition at line 209 of file ROL_ProjectedNewtonKrylovStep.hpp.

References ROL::ProjectedNewtonKrylovStep< Real >::ekv_, ROL::ProjectedNewtonKrylovStep< Real >::esec_, ROL::ProjectedNewtonKrylovStep< Real >::krylov_, ROL::ProjectedNewtonKrylovStep< Real >::krylovName_, ROL::ProjectedNewtonKrylovStep< Real >::secant_, ROL::ProjectedNewtonKrylovStep< Real >::secantName_, ROL::StringToEKrylov(), ROL::StringToESecant(), ROL::ProjectedNewtonKrylovStep< Real >::useProjectedGrad_, ROL::ProjectedNewtonKrylovStep< Real >::useSecantPrecond_, and ROL::ProjectedNewtonKrylovStep< Real >::verbosity_.

Member Function Documentation

template<class Real >
void ROL::ProjectedNewtonKrylovStep< Real >::initialize ( Vector< Real > &  x,
const Vector< Real > &  s,
const Vector< Real > &  g,
Objective< Real > &  obj,
BoundConstraint< Real > &  con,
AlgorithmState< Real > &  algo_state 
)
inlinevirtual
template<class Real >
void ROL::ProjectedNewtonKrylovStep< Real >::compute ( Vector< Real > &  s,
const Vector< Real > &  x,
Objective< Real > &  obj,
BoundConstraint< Real > &  bnd,
AlgorithmState< Real > &  algo_state 
)
inlinevirtual
template<class Real >
void ROL::ProjectedNewtonKrylovStep< Real >::update ( Vector< Real > &  x,
const Vector< Real > &  s,
Objective< Real > &  obj,
BoundConstraint< Real > &  bnd,
AlgorithmState< Real > &  algo_state 
)
inlinevirtual
template<class Real >
std::string ROL::ProjectedNewtonKrylovStep< Real >::printHeader ( void  ) const
inlinevirtual
template<class Real >
std::string ROL::ProjectedNewtonKrylovStep< Real >::printName ( void  ) const
inlinevirtual
template<class Real >
std::string ROL::ProjectedNewtonKrylovStep< Real >::print ( AlgorithmState< Real > &  algo_state,
bool  printHeader = false 
) const
inlinevirtual

Member Data Documentation

template<class Real >
ROL::Ptr<Secant<Real> > ROL::ProjectedNewtonKrylovStep< Real >::secant_
private
template<class Real >
ROL::Ptr<Krylov<Real> > ROL::ProjectedNewtonKrylovStep< Real >::krylov_
private
template<class Real >
EKrylov ROL::ProjectedNewtonKrylovStep< Real >::ekv_
private
template<class Real >
ESecant ROL::ProjectedNewtonKrylovStep< Real >::esec_
private
template<class Real >
ROL::Ptr<Vector<Real> > ROL::ProjectedNewtonKrylovStep< Real >::gp_
private
template<class Real >
ROL::Ptr<Vector<Real> > ROL::ProjectedNewtonKrylovStep< Real >::d_
private
template<class Real >
int ROL::ProjectedNewtonKrylovStep< Real >::iterKrylov_
private
template<class Real >
int ROL::ProjectedNewtonKrylovStep< Real >::flagKrylov_
private
template<class Real >
int ROL::ProjectedNewtonKrylovStep< Real >::verbosity_
private
template<class Real >
const bool ROL::ProjectedNewtonKrylovStep< Real >::computeObj_
private
template<class Real >
bool ROL::ProjectedNewtonKrylovStep< Real >::useSecantPrecond_
private
template<class Real >
bool ROL::ProjectedNewtonKrylovStep< Real >::useProjectedGrad_
private

Whether or not to use to the projected gradient criticality measure.

Definition at line 85 of file ROL_ProjectedNewtonKrylovStep.hpp.

Referenced by ROL::ProjectedNewtonKrylovStep< Real >::ProjectedNewtonKrylovStep(), and ROL::ProjectedNewtonKrylovStep< Real >::update().

template<class Real >
std::string ROL::ProjectedNewtonKrylovStep< Real >::krylovName_
private
template<class Real >
std::string ROL::ProjectedNewtonKrylovStep< Real >::secantName_
private

The documentation for this class was generated from the following file: