mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-30 17:10:38 +08:00
Add GradientProblemSolver::Options::parameter_tolerance.
Support for parameter tolerance was added to the line search minimizer was added a while ago, and calling Solve on a non-linear least squares problem supported it but for some reason the GradientProblemSolver::Options struct was missing this option even though the documentation suggested that it was present! Thanks to Noah Snavely for reporting this bug. Change-Id: I57cf4ab396bc822c19fa298529e113b89664a349
This commit is contained in:
@@ -72,6 +72,7 @@ Solver::Options GradientProblemSolverOptionsToSolverOptions(
|
||||
COPY_OPTION(max_line_search_step_expansion);
|
||||
COPY_OPTION(max_num_iterations);
|
||||
COPY_OPTION(max_solver_time_in_seconds);
|
||||
COPY_OPTION(parameter_tolerance);
|
||||
COPY_OPTION(function_tolerance);
|
||||
COPY_OPTION(gradient_tolerance);
|
||||
COPY_OPTION(logging_type);
|
||||
|
||||
Reference in New Issue
Block a user