44#ifndef ROL_TYPEU_LINESEARCHALGORITHM_DEF_H
45#define ROL_TYPEU_LINESEARCHALGORITHM_DEF_H
53template<
typename Real>
65 ParameterList& Llist = parlist.sublist(
"Step").sublist(
"Line Search");
66 ParameterList& Glist = parlist.sublist(
"General");
73 lineSearchName_ = Llist.sublist(
"Line-Search Method").get(
"Type",
"Cubic Interpolation");
78 lineSearchName_ = Llist.sublist(
"Line-Search Method").get(
"User Defined Line Search Name",
"Unspecified User Defined Line Search");
80 if (
desc_ == nullPtr) {
81 ParameterList& dlist = Llist.sublist(
"Descent Method");
87 descentName_ = Llist.sublist(
"Descent Method").get(
"User Defined Descent Direction Name",
"Unspecified User Defined Descent Direction");
91template<
typename Real>
95 std::ostream &outStream) {
99 desc_->initialize(x,g);
111template<
typename Real>
115 std::ostream &outStream ) {
121 Ptr<Vector<Real>> gprev = g.
clone();
129 *
state_->gradientVec,obj);
152 gprev->set(*
state_->gradientVec);
158 state_->iterateVec->set(x);
170template<
typename Real>
172 std::stringstream hist;
174 hist << std::string(109,
'-') << std::endl;
176 hist <<
" status output definitions" << std::endl << std::endl;
177 hist <<
" iter - Number of iterates (steps taken)" << std::endl;
178 hist <<
" value - Objective function value" << std::endl;
179 hist <<
" gnorm - Norm of the gradient" << std::endl;
180 hist <<
" snorm - Norm of the step (update to optimization vector)" << std::endl;
181 hist <<
" alpha - Line search step length" << std::endl;
182 hist <<
" #fval - Cumulative number of times the objective function was evaluated" << std::endl;
183 hist <<
" #grad - Cumulative number of times the gradient was computed" << std::endl;
184 hist <<
" ls_#fval - Number of the times the objective function was evaluated during the line search" << std::endl;
185 hist <<
" ls_#grad - Number of the times the gradient was evaluated during the line search" << std::endl;
187 hist <<
" iterCG - Number of Krylov iterations used to compute search direction" << std::endl;
188 hist <<
" flagCG - Krylov solver flag" << std::endl;
190 hist << std::string(109,
'-') << std::endl;
194 hist << std::setw(6) << std::left <<
"iter";
195 hist << std::setw(15) << std::left <<
"value";
196 hist << std::setw(15) << std::left <<
"gnorm";
197 hist << std::setw(15) << std::left <<
"snorm";
198 hist << std::setw(15) << std::left <<
"alpha";
199 hist << std::setw(10) << std::left <<
"#fval";
200 hist << std::setw(10) << std::left <<
"#grad";
201 hist << std::setw(10) << std::left <<
"ls_#fval";
202 hist << std::setw(10) << std::left <<
"ls_#grad";
204 hist << std::setw(10) << std::left <<
"iterCG";
205 hist << std::setw(10) << std::left <<
"flagCG";
211template<
typename Real>
213 std::stringstream hist;
214 hist << std::endl <<
desc_->printName();
221template<
typename Real>
223 std::stringstream hist;
224 hist << std::scientific << std::setprecision(6);
225 if (
state_->iter == 0 ) {
228 if ( print_header ) {
231 if (
state_->iter == 0 ) {
233 hist << std::setw(6) << std::left <<
state_->iter;
234 hist << std::setw(15) << std::left <<
state_->value;
235 hist << std::setw(15) << std::left <<
state_->gnorm;
236 hist << std::setw(15) << std::left <<
"---";
237 hist << std::setw(15) << std::left <<
"---";
238 hist << std::setw(10) << std::left <<
state_->nfval;
239 hist << std::setw(10) << std::left <<
state_->ngrad;
240 hist << std::setw(10) << std::left <<
"---";
241 hist << std::setw(10) << std::left <<
"---";
243 hist << std::setw(10) << std::left <<
"---";
244 hist << std::setw(10) << std::left <<
"---";
250 hist << std::setw(6) << std::left <<
state_->iter;
251 hist << std::setw(15) << std::left <<
state_->value;
252 hist << std::setw(15) << std::left <<
state_->gnorm;
253 hist << std::setw(15) << std::left <<
state_->snorm;
254 hist << std::setw(15) << std::left <<
state_->searchSize;
255 hist << std::setw(10) << std::left <<
state_->nfval;
256 hist << std::setw(10) << std::left <<
state_->ngrad;
257 hist << std::setw(10) << std::left <<
ls_nfval_;
258 hist << std::setw(10) << std::left <<
ls_ngrad_;
260 hist << std::setw(10) << std::left <<
SPiter_;
261 hist << std::setw(10) << std::left <<
SPflag_;
virtual void update(const Vector< Real > &x, UpdateType type, int iter=-1)
Update objective function.
virtual void gradient(Vector< Real > &g, const Vector< Real > &x, Real &tol)
Compute gradient.
virtual Real value(const Vector< Real > &x, Real &tol)=0
Compute value.
Algorithm()
Constructor, given a step and a status test.
const Ptr< CombinedStatusTest< Real > > status_
const Ptr< AlgorithmState< Real > > state_
void writeHeader(std::ostream &os) const override
Print iterate header.
void writeName(std::ostream &os) const override
Print step name.
ELineSearchU els_
enum determines type of line search
ECurvatureConditionU econd_
enum determines type of curvature condition
Ptr< LineSearch_U< Real > > lineSearch_
Line-search object.
EDescentU edesc_
enum determines type of descent direction
Ptr< DescentDirection_U< Real > > desc_
Unglobalized step object.
void writeOutput(std::ostream &os, bool print_header=false) const override
Print iterate status.
void initialize(const Vector< Real > &x, const Vector< Real > &g, Objective< Real > &obj, std::ostream &outStream=std::cout)
std::string lineSearchName_
bool acceptLastAlpha_
For backwards compatibility. When max function evaluations are reached take last step.
virtual ROL::Ptr< Vector > clone() const =0
Clone to make a new (uninitialized) vector.
virtual void plus(const Vector &x)=0
Compute , where .
void initialize(const Vector< Real > &x, const Vector< Real > &g)
virtual void writeExitStatus(std::ostream &os) const
LineSearchAlgorithm(ParameterList &parlist, const Ptr< DescentDirection_U< Real > > &descent=nullPtr, const Ptr< LineSearch_U< Real > > &lineSearch=nullPtr)
Constructor.
void writeHeader(std::ostream &os) const override
Print iterate header.
void writeName(std::ostream &os) const override
Print step name.
void run(Vector< Real > &x, const Vector< Real > &g, Objective< Real > &obj, std::ostream &outStream=std::cout) override
void writeOutput(std::ostream &os, bool print_header=false) const override
Print iterate status.
void initialize(const Vector< Real > &x, const Vector< Real > &g, Objective< Real > &obj, std::ostream &outStream=std::cout)
@ LINESEARCH_U_USERDEFINED
@ CURVATURECONDITION_U_WOLFE
Real ROL_EPSILON(void)
Platform-dependent machine epsilon.
Ptr< LineSearch_U< Real > > LineSearchUFactory(ParameterList &parlist)
std::string ECurvatureConditionUToString(ECurvatureConditionU ls)
ECurvatureConditionU StringToECurvatureConditionU(std::string s)
ELineSearchU StringToELineSearchU(std::string s)
Ptr< DescentDirection_U< Real > > DescentDirectionUFactory(ParameterList &parlist)
EDescentU StringToEDescentU(std::string s)