~ubuntu-branches/ubuntu/utopic/blender/utopic-proposed

« back to all changes in this revision

Viewing changes to extern/libmv/third_party/ceres/include/ceres/iteration_callback.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-02-19 11:24:23 UTC
  • mfrom: (14.2.23 sid)
  • Revision ID: package-import@ubuntu.com-20140219112423-rkmaz2m7ha06d4tk
Tags: 2.69-3ubuntu1
* Merge with Debian; remaining changes:
  - Configure without OpenImageIO on armhf, as it is not available on
    Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        eta(0.0),
55
55
        step_size(0.0),
56
56
        line_search_function_evaluations(0),
 
57
        line_search_gradient_evaluations(0),
 
58
        line_search_iterations(0),
57
59
        linear_solver_iterations(0),
58
60
        iteration_time_in_seconds(0.0),
59
61
        step_solver_time_in_seconds(0.0),
121
123
  // Step sized computed by the line search algorithm.
122
124
  double step_size;
123
125
 
124
 
  // Number of function evaluations used by the line search algorithm.
 
126
  // Number of function value evaluations used by the line search algorithm.
125
127
  int line_search_function_evaluations;
126
128
 
 
129
  // Number of function gradient evaluations used by the line search algorithm.
 
130
  int line_search_gradient_evaluations;
 
131
 
 
132
  // Number of iterations taken by the line search algorithm.
 
133
  int line_search_iterations;
 
134
 
127
135
  // Number of iterations taken by the linear solver to solve for the
128
136
  // Newton step.
129
137
  int linear_solver_iterations;
130
138
 
 
139
  // All times reported below are wall times.
 
140
 
131
141
  // Time (in seconds) spent inside the minimizer loop in the current
132
142
  // iteration.
133
143
  double iteration_time_in_seconds;