Report the number of line search steps in FullReport.

Accumulate the number of steps of the line search algorithm
and report it as part of Summary::FullReport.

Change-Id: I1de12784009a3e08f2a2c2aff5085d57a3c73828
This commit is contained in:
Sameer Agarwal
2015-12-01 07:25:06 -08:00
parent b5f5100f57
commit 992ae55e84
6 changed files with 43 additions and 7 deletions
+8
View File
@@ -2012,6 +2012,14 @@ The three arrays will be:
Number of times inner iterations were performed.
.. member:: int Solver::Summary::num_line_search_steps
Total number of iterations inside the line search algorithm across
all invocations. We call these iterations "steps" to distinguish
them from the outer iterations of the line search and trust region
minimizer algorithms which call the line search algorithm as a
subroutine.
.. member:: double Solver::Summary::preprocessor_time_in_seconds
Time (in seconds) spent in the preprocessor.