44 #ifndef ROL_NEWTONSTEP_H
45 #define ROL_NEWTONSTEP_H
78 NewtonStep( ROL::ParameterList &parlist,
const bool computeObj =
true )
81 verbosity_ = parlist.sublist(
"General").get(
"Print Verbosity",0);
88 Real tol = std::sqrt(ROL_EPSILON<Real>()), one(1);
91 obj.
invHessVec(s,*(step_state->gradientVec),x,tol);
97 Real tol = std::sqrt(ROL_EPSILON<Real>());
103 (step_state->descentVec)->set(s);
112 obj.
gradient(*(step_state->gradientVec),x,tol);
117 algo_state.
gnorm = (step_state->gradientVec)->norm();
121 std::stringstream hist;
124 hist << std::string(109,
'-') <<
"\n";
126 hist <<
" status output definitions\n\n";
127 hist <<
" iter - Number of iterates (steps taken) \n";
128 hist <<
" value - Objective function value \n";
129 hist <<
" gnorm - Norm of the gradient\n";
130 hist <<
" snorm - Norm of the step (update to optimization vector)\n";
131 hist <<
" #fval - Cumulative number of times the objective function was evaluated\n";
132 hist <<
" #grad - Number of times the gradient was computed\n";
133 hist << std::string(109,
'-') <<
"\n";
137 hist << std::setw(6) << std::left <<
"iter";
138 hist << std::setw(15) << std::left <<
"value";
139 hist << std::setw(15) << std::left <<
"gnorm";
140 hist << std::setw(15) << std::left <<
"snorm";
141 hist << std::setw(10) << std::left <<
"#fval";
142 hist << std::setw(10) << std::left <<
"#grad";
147 std::stringstream hist;
152 std::stringstream hist;
153 hist << std::scientific << std::setprecision(6);
154 if ( algo_state.
iter == 0 ) {
157 if ( print_header ) {
160 if ( algo_state.
iter == 0 ) {
162 hist << std::setw(6) << std::left << algo_state.
iter;
163 hist << std::setw(15) << std::left << algo_state.
value;
164 hist << std::setw(15) << std::left << algo_state.
gnorm;
169 hist << std::setw(6) << std::left << algo_state.
iter;
170 hist << std::setw(15) << std::left << algo_state.
value;
171 hist << std::setw(15) << std::left << algo_state.
gnorm;
172 hist << std::setw(15) << std::left << algo_state.
snorm;
173 hist << std::setw(10) << std::left << algo_state.
nfval;
174 hist << std::setw(10) << std::left << algo_state.
ngrad;