HomeSort by relevance Sort by last modified time
    Searched full:solver (Results 51 - 75 of 418) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/CodeGen/PBQP/
HeuristicSolver.h 1 //===-- HeuristicSolver.h - Heuristic PBQP Solver --------------*- C++ -*-===//
10 // Heuristic PBQP solver. This solver is able to perform optimal reductions for
26 /// \brief Heuristic PBQP solver implementation.
47 /// \brief Iterator type for edges in the solver graph.
117 /// \brief Construct a heuristic solver implementation to solve the given
122 /// \brief Get the graph being solved by this solver.
124 /// solver.
142 /// the solver graph.
145 /// in the solver graph.
    [all...]
Solution.h 46 /// solver only.
53 /// solver only.
60 /// solver only.
67 /// solver only.
  /external/ceres-solver/cmake/
CeresConfig.cmake.in 1 # Ceres Solver - A fast non-linear least squares minimizer
3 # http://code.google.com/p/ceres-solver/
  /external/ceres-solver/internal/ceres/
blas.h 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
block_random_access_matrix.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
block_structure.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
collections_port.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
linear_operator.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
sparse_matrix.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
split.h 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
implicit_schur_complement.h 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
31 // An iterative solver for solving the Schur complement/reduced camera
71 // The key operation in a conjugate gradient solver is the evaluation of the
81 // auxilliary bits needed to implement a CG solver on the Schur
111 // with the SchurComplement solver.
trust_region_strategy.h 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
69 // Linear solver used for actually solving the trust region step.
121 // Number of iterations used by the linear solver. If a linear
122 // solver was not called (e.g., DogLegStrategy after an
126 // Status of the linear solver used to solve the Newton system.
unsymmetric_linear_solver_test.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
60 scoped_ptr<LinearSolver> solver(LinearSolver::Create(options));
85 LOG(FATAL) << "Unknown linear solver : " << options.type;
89 solver->Solve(transformed_A.get(),
97 solver->Solve(transformed_A.get(),
system_test.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
50 #include "ceres/solver.h"
64 // Struct used for configuring the solver.
104 // Templated function that given a set of solver configurations,
117 // Solver::Options* mutable_solver_options();
131 Solver::Options& options = *(system_test_problem->mutable_solver_options());
144 LOG(INFO) << "Running solver configuration: "
147 Solver::Summary summary;
161 << "Solver configuration " << i << " failed."
    [all...]
coordinate_descent_minimizer.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
48 #include "ceres/solver.h"
124 Solver::Summary* summary) {
180 Solver::Summary inner_summary;
206 Solver::Summary* summary) {
207 *summary = Solver::Summary();
c_api.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
43 #include "ceres/solver.h"
180 ceres::Solver::Options options;
185 ceres::Solver::Summary summary;
levenberg_marquardt_strategy.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
98 // the linear solver generated numerical garbage. This is known
99 // to happen for the DENSE_QR and then DENSE_SCHUR solver when
110 LOG(WARNING) << "Linear solver failure. Failed to compute a finite step.";
  /external/ceres-solver/jni/
Application.mk 1 # Ceres Solver - A fast non-linear least squares minimizer
3 # http://code.google.com/p/ceres-solver/
  /external/jmonkeyengine/engine/src/bullet-native/
jmePhysicsSpace.cpp 93 PosixThreadSupport::ThreadConstructionInfo solverConstructionInfo("solver", processCollisionTask,
141 btConstraintSolver* solver; local
151 // the default constraint solver. For parallel processing you can use a different solver (see Extras/BulletMultiThreaded)
154 solver = new btParallelConstraintSolver(solverThreads);
156 solver = new btSequentialImpulseConstraintSolver;
160 btDiscreteDynamicsWorld* world = new btDiscreteDynamicsWorld(dispatcher, broadphase, solver, collisionConfiguration);
164 //parallel solver requires the contacts to be in a contiguous pool, so avoid dynamic allocation
  /external/ceres-solver/examples/
powell.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
55 using ceres::Solver;
127 Solver::Options options;
143 // Run the solver!
144 Solver::Summary summary;
bundle_adjuster.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
116 DEFINE_string(solver_log, "", "File to record the solver execution to.");
123 void SetLinearSolver(Solver::Options* options) {
137 void SetOrdering(BALProblem* bal_problem, Solver::Options* options) {
222 void SetMinimizerOptions(Solver::Options* options) {
240 Solver::Options* options) {
320 Solver::Options options;
325 Solver::Summary summary;
circle_fit.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
66 using ceres::Solver;
150 Solver::Options options;
153 Solver::Summary summary;
  /external/ceres-solver/docs/source/
building.rst 4 Building Ceres Solver
7 Stable Ceres Solver releases are available for download at
8 `code.google.com <http://code.google.com/p/ceres-solver/>`_. For the
10 <https://ceres-solver-review.googlesource.com/>`_.
96 tar zxf ceres-solver-1.7.0.tar.gz
99 cmake ../ceres-solver-1.7.0
109 bin/simple_bundle_adjuster ../ceres-solver-1.7.0/data/problem-16-22106-pre.txt
112 ``DENSE_SCHUR`` linear solver. The output should look something like
125 Ceres Solver Report
135 Linear solver DENSE_SCHUR DENSE_SCHU
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.core_2.2.0.v20100429.jar 
  /external/ceres-solver/include/ceres/
cost_function.h 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
32 // This is the interface through which the least squares solver accesses the
106 // are not satisfied will prevent the solver from moving into the
112 // parameter block must be feasible, otherwise the solver will

Completed in 1114 milliseconds

1 23 4 5 6 7 8 91011>>