QuantLib: a free/open-source library for quantitative finance
Fully annotated sources - version 1.32
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
LineSearchBasedMethod Class Referenceabstract

Line search based method. More...

#include <ql/math/optimization/linesearchbasedmethod.hpp>

+ Inheritance diagram for LineSearchBasedMethod:
+ Collaboration diagram for LineSearchBasedMethod:

Public Member Functions

 LineSearchBasedMethod (ext::shared_ptr< LineSearch > lSearch=ext::shared_ptr< LineSearch >())
 
 ~LineSearchBasedMethod () override=default
 
EndCriteria::Type minimize (Problem &P, const EndCriteria &endCriteria) override
 minimize the optimization problem P More...
 
- Public Member Functions inherited from OptimizationMethod
virtual ~OptimizationMethod ()=default
 
virtual EndCriteria::Type minimize (Problem &P, const EndCriteria &endCriteria)=0
 minimize the optimization problem P More...
 

Protected Member Functions

virtual Array getUpdatedDirection (const Problem &P, Real gold2, const Array &gradient)=0
 computes the new search direction More...
 

Protected Attributes

ext::shared_ptr< LineSearchlineSearch_
 line search More...
 

Detailed Description

Line search based method.

Definition at line 37 of file linesearchbasedmethod.hpp.

Constructor & Destructor Documentation

◆ LineSearchBasedMethod()

LineSearchBasedMethod ( ext::shared_ptr< LineSearch lSearch = ext::shared_ptr<LineSearch>())
explicit

Definition at line 29 of file linesearchbasedmethod.cpp.

◆ ~LineSearchBasedMethod()

~LineSearchBasedMethod ( )
overridedefault

Member Function Documentation

◆ minimize()

EndCriteria::Type minimize ( Problem P,
const EndCriteria endCriteria 
)
overridevirtual

minimize the optimization problem P

Implements OptimizationMethod.

Definition at line 36 of file linesearchbasedmethod.cpp.

+ Here is the call graph for this function:

◆ getUpdatedDirection()

virtual Array getUpdatedDirection ( const Problem P,
Real  gold2,
const Array gradient 
)
protectedpure virtual

computes the new search direction

Implemented in BFGS, ConjugateGradient, and SteepestDescent.

+ Here is the caller graph for this function:

Member Data Documentation

◆ lineSearch_

ext::shared_ptr<LineSearch> lineSearch_
protected

line search

Definition at line 51 of file linesearchbasedmethod.hpp.