#include <NOX_LineSearch_Utils_Printing.H>
Inheritance diagram for NOX::LineSearch::Utils::Printing:
Public Member Functions | |
| Printing (const NOX::Utils &u) | |
| Default constructor. | |
| virtual | ~Printing () |
| Destructor. | |
| void | printStep (int n, double step, double oldf, double newf, const string s="", bool unscaleF=true) const |
| Print out step information for the inner iterations of a line search algorithm. | |
All line searches should print output results in a similar format. This utility provides common output routines.
|
||||||||||||||||||||||||||||
|
Print out step information for the inner iterations of a line search algorithm. Example of output from the inner iterations of a Polynomial line search:
************************************************************************ -- Polynomial Line Search -- 1: step = 1.000e+00 oldf = 2.403e+00 newf = 1.076e+03 2: step = 1.000e-01 oldf = 2.403e+00 newf = 4.440e+00 3: step = 1.000e-02 oldf = 2.403e+00 newf = 2.394e+00 (STEP ACCEPTED!) ************************************************************************
|
1.3.9.1