Home | History | Annotate | Download | only in ceres

Lines Matching refs:Options

343 LineSearchDirection::Create(const LineSearchDirection::Options& options) {
344 if (options.type == STEEPEST_DESCENT) {
348 if (options.type == NONLINEAR_CONJUGATE_GRADIENT) {
350 options.nonlinear_conjugate_gradient_type,
351 options.function_tolerance);
354 if (options.type == ceres::LBFGS) {
356 options.num_parameters,
357 options.max_lbfgs_rank,
358 options.use_approximate_eigenvalue_bfgs_scaling);
361 if (options.type == ceres::BFGS) {
363 options.num_parameters,
364 options.use_approximate_eigenvalue_bfgs_scaling);
367 LOG(ERROR) << "Unknown line search direction type: " << options.type;