HomeSort by relevance Sort by last modified time
    Searched defs:minimizer (Results 1 - 5 of 5) sorted by null

  /external/eigen/unsupported/doc/examples/
BVH_Example.cpp 36 PointPointMinimizer minimizer; local
42 minDistSq = std::min(minDistSq, minimizer.minimumOnObjectObject(redPoints[i], bluePoints[j]));
43 std::cout << "Brute force distance = " << sqrt(minDistSq) << ", calls = " << minimizer.calls << std::endl;
46 minimizer.calls = 0;
48 minDistSq = BVMinimize(redTree, blueTree, minimizer); //actual BVH minimization call
49 std::cout << "BVH distance = " << sqrt(minDistSq) << ", calls = " << minimizer.calls << std::endl;
  /external/ceres-solver/internal/ceres/
coordinate_descent_minimizer.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
42 #include "ceres/minimizer.h"
122 const Minimizer::Options& options,
226 Minimizer::Options minimizer_options;
231 TrustRegionMinimizer minimizer; local
232 minimizer.Minimize(minimizer_options, parameter, summary);
trust_region_minimizer_test.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
43 #include "ceres/minimizer.h"
229 Minimizer::Options minimizer_options(solver_options);
247 TrustRegionMinimizer minimizer; local
249 minimizer.Minimize(minimizer_options, parameters, &summary);
solver_impl.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
46 #include "ceres/minimizer.h"
86 // iteration because the minimizer maybe making non-monotonic steps.
93 // Callback for logging the state of the minimizer to STDERR or STDOUT
129 // Callback for logging the state of the minimizer to STDERR or STDOUT
221 Minimizer::Options minimizer_options(options);
267 TrustRegionMinimizer minimizer; local
269 minimizer.Minimize(minimizer_options, parameters, summary);
281 Minimizer::Options minimizer_options(options);
309 LineSearchMinimizer minimizer; local
    [all...]
  /external/eigen/unsupported/Eigen/src/BVH/
BVAlgorithms.h 148 template<typename BVH, typename Minimizer>
149 typename Minimizer::Scalar minimize_helper(const BVH &tree, Minimizer &minimizer, typename BVH::Index root, typename Minimizer::Scalar minimum)
151 typedef typename Minimizer::Scalar Scalar;
168 minimum = (std::min)(minimum, minimizer.minimumOnObject(*oBegin));
171 Scalar val = minimizer.minimumOnVolume(tree.getVolume(*vBegin));
182 template<typename Volume1, typename Object1, typename Object2, typename Minimizer>
185 typedef typename Minimizer::Scalar Scalar
190 Minimizer &minimizer; member in struct:Eigen::internal::minimizer_helper1
203 Minimizer &minimizer; member in struct:Eigen::internal::minimizer_helper2
    [all...]

Completed in 218 milliseconds