HomeSort by relevance Sort by last modified time
    Searched refs:LineSearch (Results 1 - 3 of 3) sorted by null

  /external/ceres-solver/internal/ceres/
line_search.h 56 // hard, instances of LineSearch find a point that satisfies a
60 class LineSearch {
193 explicit LineSearch(const LineSearch::Options& options);
194 virtual ~LineSearch() {}
196 static LineSearch* Create(const LineSearchType line_search_type,
197 const LineSearch::Options& options,
223 const LineSearch::Options& options() const { return options_; }
226 LineSearch::Options options_;
229 class LineSearchFunction : public LineSearch::Function
    [all...]
line_search.cc 77 LineSearch::LineSearch(const LineSearch::Options& options)
80 LineSearch* LineSearch::Create(const LineSearchType line_search_type,
81 const LineSearch::Options& options,
83 LineSearch* line_search = NULL;
147 double LineSearch::InterpolatingPolynomialMinimizingStepSize(
215 ArmijoLineSearch::ArmijoLineSearch(const LineSearch::Options& options)
216 : LineSearch(options) {
    [all...]
line_search_minimizer.cc 170 LineSearch::Options line_search_options;
188 scoped_ptr<LineSearch>
189 line_search(LineSearch::Create(options.line_search_type,
193 LOG(ERROR) << "Ceres bug: Unable to create a LineSearch object, please "
199 LineSearch::Summary line_search_summary;

Completed in 52 milliseconds