HomeSort by relevance Sort by last modified time
    Searched full:solver (Results 76 - 100 of 535) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/ceres-solver/internal/ceres/
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
72 // The key operation in a conjugate gradient solver is the evaluation of the
82 // auxilliary bits needed to implement a CG solver on the Schur
112 // with the SchurComplement solver.
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 fatal error.";
113 LOG(WARNING) << "Linear solver failure. Failed to compute a finite step.";
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.
system_test.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
52 #include "ceres/solver.h"
66 // Struct used for configuring the solver.
109 // Templated function that given a set of solver configurations,
122 // Solver::Options* mutable_solver_options();
136 Solver::Options& options = *(system_test_problem->mutable_solver_options());
148 LOG(INFO) << "Running solver configuration: "
151 Solver::Summary summary;
165 << "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();
schur_complement_solver.h 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
93 // installed. For structure from motion problems, this is solver can
99 // sparse Cholesky factorization of the Schur complement. This solver
102 // structure, it maybe better to use an iterative solver.
147 // Dense Cholesky factorization based solver.
162 // Sparse Cholesky factorization based solver.
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;
preconditioner.h 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
68 // eliminated by the linear solver.
71 // the linear solver is informed that it should eliminate the
74 // on. Within each elimination group, the linear solver is free to
  /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/eigen/Eigen/
OrderingMethods 30 * SparseLU<MatrixType, COLAMDOrdering<int> > solver;
34 * SparseQR<MatrixType, COLAMDOrdering<int> > 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/docs/source/
features.rst 6 * **Code Quality** - Ceres Solver has been used in production at
17 time. And to do so without worrying about how the solver is going to
40 * **Solver Choice** Depending on the size, sparsity structure, time &
43 Ceres Solver comes with a variety of optimization algorithms, some
66 * **Solution Quality** Ceres is the best performing solver on the NIST
85 .. _solution quality: https://groups.google.com/forum/#!topic/ceres-solver/UcicgMPgbXw
faqs.rst 126 #. Choosing a linear solver.
129 solver is an important decision. It affects solution quality and
149 more) use the ``ITERATIVE_SCHUR`` solver. There are a number of
162 #. Use `Solver::Summary::FullReport` to diagnose performance problems.
166 ``Solver::Summary::FullReport``. Here is an example
180 Ceres Solver v1.10.0 Solve Report
194 Linear solver SPARSE_SCHUR SPARSE_SCHUR
196 Linear solver threads 1 1
197 Linear solver ordering AUTOMATIC 22106, 16
213 Linear solver 0.38
    [all...]
building.rst 12 <http://ceres-solver.org/ceres-solver-1.9.0.tar.gz>`_ . Or if you want
17 git clone https://ceres-solver.googlesource.com/ceres-solver
144 tar zxf ceres-solver-1.9.0.tar.gz
147 cmake ../ceres-solver-1.9.0
158 bin/simple_bundle_adjuster ../ceres-solver-1.9.0/data/problem-16-22106-pre.txt
161 ``DENSE_SCHUR`` linear solver. The output should look something like
175 Ceres Solver v1.10.0 Solve Report
189 Linear solver DENSE_SCHUR DENSE_SCHU
    [all...]
  /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;
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;
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/centrality/
current_flow_betweenness.py 22 dtype=float, solver='full',
47 solver: string (default='lu')
48 Type of linear solver to use for computing the flow matrix.
110 C = solvername[solver](L, dtype=dtype) # initialize solver
141 dtype=float, solver='full'):
168 solver: string (default='lu')
169 Type of linear solver to use for computing the flow matrix.
233 solver=solver)
    [all...]
current_flow_betweenness_subset.py 23 dtype=float, solver='lu'):
56 solver: string (default='lu')
57 Type of linear solver to use for computing the flow matrix.
122 solver=solver):
141 dtype=float, solver='lu'):
175 solver: string (default='lu')
176 Type of linear solver to use for computing the flow matrix.
244 solver=solver)
    [all...]
current_flow_closeness.py 20 dtype=float, solver='lu'):
40 solver: string (default='lu')
41 Type of linear solver to use for computing the flow matrix.
104 C2 = solvername[solver](L, width=1, dtype=dtype) # initialize solver
flow_matrix.py 5 def flow_matrix_row(G, weight='weight', dtype=float, solver='lu'):
16 C = solvername[solver](L, dtype=dtype) # initialize solver
52 raise("Implement solver")
55 raise("Implement solver")
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.sat4j.core_2.3.5.v201308161310.jar 
  /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
107 // are not satisfied will prevent the solver from moving into the
113 // parameter block must be feasible, otherwise the solver will
  /external/ceres-solver/scripts/
make_docs.py 4 # Ceres Solver - A fast non-linear least squares minimizer
6 # http://code.google.com/p/ceres-solver/
76 ('<title>Ceres Solver &mdash; Ceres Solver</title>',
77 '<title>Ceres Solver &mdash; A Nonlinear Least Squares Minimizer</title>')

Completed in 161 milliseconds

1 2 34 5 6 7 8 91011>>