NOX
Development
|
Implementation of merit function for implicitly weighted norm. More...
#include <NOX_MeritFunction_Weighted.hpp>
Public Member Functions | |
WeightedMeritFunction (const Teuchos::RCP< const ::Thyra::VectorBase< double > > weights, bool optimizeSlopeCalc=true) | |
Constructor. | |
WeightedMeritFunction (const WeightedMeritFunction &source) | |
Copy constructor. | |
~WeightedMeritFunction () | |
Destructor. | |
virtual const std::string & | name () const |
Returns the name of the merit function. | |
virtual std::ostream & | print (std::ostream &os, int indent=0) const |
virtual double | computef (const NOX::Abstract::Group &group) const |
Computes the merit function, . | |
virtual void | computeGradient (const NOX::Abstract::Group &group, NOX::Abstract::Vector &result) const |
Computes the gradient of the merit function, , and returns the result in the result vector. | |
virtual double | computeSlope (const NOX::Abstract::Vector &dir, const NOX::Abstract::Group &group) const |
Computes the inner product of the given direction and the gradient associated with the merit function. Returns the steepest descent direction in the result vector. More... | |
virtual double | computeQuadraticModel (const NOX::Abstract::Vector &dir, const NOX::Abstract::Group &group) const |
Compute the quadratic model, , for the given merit function. More... | |
virtual void | computeQuadraticMinimizer (const NOX::Abstract::Group &grp, NOX::Abstract::Vector &result) const |
Computes the vector in the steepest descent direction that minimizes the quadratic model. More... | |
virtual bool | computeSteepestDescentDir (const NOX::Abstract::Group &group, NOX::Abstract::Vector &result) const |
Public Member Functions inherited from NOX::MeritFunction::Generic | |
Generic () | |
Default Constructor. | |
virtual | ~Generic () |
Destructor. | |
Implementation of merit function for implicitly weighted norm.
NOTE: The nox vectors in this object are always unweighted (we always apply the weights explicitly)! Be careful about using norms and innerProducts from incoming nox objects as these will have the implicit weighting attached.
|
virtual |
Computes the vector in the steepest descent direction that minimizes the quadratic model.
The quadratic model is defined as:
where is ideally the Hessian of the merit function, , but can be approximated with the restriction that it is a symmetric and has uniform boundedness in the iterate sequence (see J. Nocedal and S. J. Wright, "Numerical Optimization", Springer, 1999. Chapters 4 and 6).
The result
vector should be computed as:
Implements NOX::MeritFunction::Generic.
References TEUCHOS_TEST_FOR_EXCEPTION.
|
virtual |
Compute the quadratic model, , for the given merit function.
Computes and returns :
Here represents the input parameter dir
. is the Hessian of the merit function, , but can be approximated with the restriction that it is a symmetric and has uniform boundedness in the iterate sequence (see J. Nocedal and S. J. Wright, "Numerical Optimization", Springer, 1999. Chapters 4 and 6).
Implements NOX::MeritFunction::Generic.
References NOX::Abstract::Group::applyJacobian().
|
virtual |
Computes the inner product of the given direction and the gradient associated with the merit function. Returns the steepest descent direction in the result
vector.
Calculates and returns :
Here represents the input parameter dir
and is the gradient of the merit function.
Implements NOX::MeritFunction::Generic.
References NOX::Abstract::Group::applyJacobian(), NOX::Abstract::Group::clone(), NOX::Abstract::Group::getF(), NOX::Abstract::Group::getX(), is_null(), NOX::Abstract::Vector::norm(), NOX::Abstract::Vector::scale(), NOX::ShapeCopy, and NOX::Abstract::Vector::update().