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

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

#include <ROL_NewtonKrylov_U.hpp>

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

Classes

class  HessianNK
 
class  PrecondNK
 

Public Member Functions

 NewtonKrylov_U (ParameterList &parlist)
 Constructor. More...
 
 NewtonKrylov_U (ParameterList &parlist, const Ptr< Krylov< Real >> &krylov, const Ptr< Secant< Real >> &secant, const bool computeObj=true)
 Constructor. More...
 
void compute (Vector< Real > &s, Real &snorm, Real &sdotg, int &iter, int &flag, const Vector< Real > &x, const Vector< Real > &g, Objective< Real > &obj) override
 
void update (const Vector< Real > &x, const Vector< Real > &s, const Vector< Real > &gold, const Vector< Real > &gnew, const Real snorm, const int iter) override
 
std::string printName (void) const override
 
- Public Member Functions inherited from ROL::DescentDirection_U< Real >
virtual ~DescentDirection_U ()
 
virtual void initialize (const Vector< Real > &x, const Vector< Real > &g)
 

Private Attributes

Ptr< Secant< Real > > secant_
 Secant object (used for quasi-Newton) More...
 
Ptr< Krylov< Real > > krylov_
 Krylov solver object (used for inexact Newton) More...
 
Ptr< LinearOperator< Real > > precond_
 
EKrylov ekv_
 
ESecant esec_
 
bool useSecantPrecond_
 Whether or not a secant approximation is used for preconditioning inexact Newton. More...
 
std::string krylovName_
 
std::string secantName_
 

Detailed Description

template<typename Real>
class ROL::NewtonKrylov_U< Real >

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

Definition at line 63 of file ROL_NewtonKrylov_U.hpp.

Constructor & Destructor Documentation

template<typename Real >
ROL::NewtonKrylov_U< Real >::NewtonKrylov_U ( ParameterList &  parlist)
inline

Constructor.

Standard constructor to build a NewtonKrylovStep object. Algorithmic specifications are passed in through a ROL::ParameterList.

Parameters
[in]parlistis a parameter list containing algorithmic specifications

Definition at line 114 of file ROL_NewtonKrylov_U.hpp.

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

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

Constructor.

Constructor to build a NewtonKrylovStep 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 142 of file ROL_NewtonKrylov_U.hpp.

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

Member Function Documentation

template<typename Real >
void ROL::NewtonKrylov_U< Real >::compute ( Vector< Real > &  s,
Real &  snorm,
Real &  sdotg,
int &  iter,
int &  flag,
const Vector< Real > &  x,
const Vector< Real > &  g,
Objective< Real > &  obj 
)
inlineoverridevirtual
template<typename Real >
void ROL::NewtonKrylov_U< Real >::update ( const Vector< Real > &  x,
const Vector< Real > &  s,
const Vector< Real > &  gold,
const Vector< Real > &  gnew,
const Real  snorm,
const int  iter 
)
inlineoverridevirtual
template<typename Real >
std::string ROL::NewtonKrylov_U< Real >::printName ( void  ) const
inlineoverridevirtual

Member Data Documentation

template<typename Real >
Ptr<Secant<Real> > ROL::NewtonKrylov_U< Real >::secant_
private

Secant object (used for quasi-Newton)

Definition at line 66 of file ROL_NewtonKrylov_U.hpp.

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

template<typename Real >
Ptr<Krylov<Real> > ROL::NewtonKrylov_U< Real >::krylov_
private

Krylov solver object (used for inexact Newton)

Definition at line 67 of file ROL_NewtonKrylov_U.hpp.

Referenced by ROL::NewtonKrylov_U< Real >::compute(), and ROL::NewtonKrylov_U< Real >::NewtonKrylov_U().

template<typename Real >
Ptr<LinearOperator<Real> > ROL::NewtonKrylov_U< Real >::precond_
private

Definition at line 68 of file ROL_NewtonKrylov_U.hpp.

Referenced by ROL::NewtonKrylov_U< Real >::NewtonKrylov_U().

template<typename Real >
EKrylov ROL::NewtonKrylov_U< Real >::ekv_
private

Definition at line 70 of file ROL_NewtonKrylov_U.hpp.

Referenced by ROL::NewtonKrylov_U< Real >::NewtonKrylov_U().

template<typename Real >
ESecant ROL::NewtonKrylov_U< Real >::esec_
private

Definition at line 71 of file ROL_NewtonKrylov_U.hpp.

Referenced by ROL::NewtonKrylov_U< Real >::NewtonKrylov_U().

template<typename Real >
bool ROL::NewtonKrylov_U< Real >::useSecantPrecond_
private

Whether or not a secant approximation is used for preconditioning inexact Newton.

Definition at line 73 of file ROL_NewtonKrylov_U.hpp.

Referenced by ROL::NewtonKrylov_U< Real >::compute(), ROL::NewtonKrylov_U< Real >::NewtonKrylov_U(), ROL::NewtonKrylov_U< Real >::printName(), and ROL::NewtonKrylov_U< Real >::update().

template<typename Real >
std::string ROL::NewtonKrylov_U< Real >::krylovName_
private
template<typename Real >
std::string ROL::NewtonKrylov_U< Real >::secantName_
private

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