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

1 2 3 4 56 7 8 91011>>

  /external/ceres-solver/internal/ceres/
wall_time.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
wall_time.h 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
implicit_schur_complement_test.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
161 // Backsubstituted solution from the implicit schur solver using the
186 // by the SchurComplement solver.
partitioned_matrix_view.h 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
45 // structure as required by the Schur complement based solver, found
52 // the Schur complement solver it will result in unpredictable and
schur_complement_solver_test.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
105 scoped_ptr<LinearSolver> solver(LinearSolver::Create(options));
113 summary = solver->Solve(A.get(), b.get(), per_solve_options, x.get());
suitesparse.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
255 // the linear solver is really three valued. SUCCESS,
287 << "Please report this to ceres-solver@googlegroups.com.";
291 << "Please report this to ceres-solver@googlegroups.com.";
334 << "Ceres Solver was compiled with SuiteSparse "
337 << "the Ceres Solver developers.";
conjugate_gradients_solver.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
31 // A preconditioned conjugate gradients solver
36 // solver to support not just residual based termination but also
193 // the solver terminates at iteration i if
solver_impl.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
83 void SetSummaryFinalCost(Solver::Summary* summary) {
165 // Basic callback to record the execution of the solver to a file for
214 const Solver::Options& options,
220 Solver::Summary* summary) {
276 const Solver::Options& options,
280 Solver::Summary* summary) {
317 void SolverImpl::Solve(const Solver::Options& options,
319 Solver::Summary* summary)
    [all...]
polynomial.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
165 Eigen::EigenSolver<Matrix> solver(companion_matrix, false);
166 if (solver.info() != Eigen::Success) {
173 *real = solver.eigenvalues().real();
180 *imaginary = solver.eigenvalues().imag();
  /external/ceres-solver/scripts/
ceres-solver.spec 1 Name: ceres-solver
11 URL: http://code.google.com/p/ceres-solver/
34 Ceres Solver is a portable C++ library that allows for modeling and solving
49 Notable use of Ceres Solver is for the image alignment in Google Maps and for
  /external/eigen/Eigen/
PaStiXSupport 22 * PaSTiX is a general \b supernodal, \b parallel and \b opensource sparse solver.
  /external/eigen/unsupported/Eigen/
IterativeSolvers 17 * This module aims to provide various iterative linear and non linear solver algorithms.
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
navier-stokes.js 34 var solver = null; variable
39 solver.update();
43 checkResult(solver.getDens());
60 solver = new FluidField(null);
61 solver.setResolution(128, 128);
62 solver.setIterations(20);
63 solver.setDisplayFunction(function(){});
64 solver.setUICallback(prepareFrame);
65 solver.reset();
70 solver = null
    [all...]
  /external/ceres-solver/examples/
curve_fitting.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
37 using ceres::Solver;
152 Solver::Options options;
157 Solver::Summary summary;
data_fitting.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
37 using ceres::Solver;
154 Solver::Options options;
159 Solver::Summary summary;
denoising.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
59 DEFINE_bool(verbose, false, "Prints information about the solver progress.");
143 ceres::Solver::Options options;
156 ceres::Solver::Summary summary;
robust_curve_fitting.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
121 using ceres::Solver;
153 Solver::Options options;
157 Solver::Summary summary;
simple_bundle_adjuster.cc 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
208 // standard solver, SPARSE_NORMAL_CHOLESKY, also works fine but it is slower
210 ceres::Solver::Options options;
214 ceres::Solver::Summary summary;
Makefile.example 1 # Ceres Solver - A fast non-linear least squares minimizer
3 # http://code.google.com/p/ceres-solver/
bal_problem.h 1 // Ceres Solver - A fast non-linear least squares minimizer
3 // http://code.google.com/p/ceres-solver/
  /external/eigen/doc/
C09_TutorialSparse.dox 246 %Eigen currently provides a limited set of built-in solvers, as well as wrappers to external solver libraries.
250 <tr><th>Class</th><th>Module</th><th>Solver kind</th><th>Matrix kind</th><th>Features related to performance</th>
292 SolverClassName<SparseMatrix<double> > solver;
293 solver.compute(A);
294 if(solver.info()!=Succeeded) {
298 x = solver.solve(b);
299 if(solver.info()!=Succeeded) {
304 x1 = solver.solve(b1);
312 ConjugateGradient<SparseMatrix<double>, Eigen::Upper> solver;
313 x = solver.compute(A).solve(b)
    [all...]
  /external/chromium_org/v8/benchmarks/
navier-stokes.js 33 var solver = null; variable
37 solver.update();
42 solver = new FluidField(null);
43 solver.setResolution(128, 128);
44 solver.setIterations(20);
45 solver.setDisplayFunction(function(){});
46 solver.setUICallback(prepareFrame);
47 solver.reset();
52 solver = null;
  /external/v8/benchmarks/
navier-stokes.js 33 var solver = null; variable
37 solver.update();
42 solver = new FluidField(null);
43 solver.setResolution(128, 128);
44 solver.setIterations(20);
45 solver.setDisplayFunction(function(){});
46 solver.setUICallback(prepareFrame);
47 solver.reset();
52 solver = null;
  /external/ceres-solver/docs/source/
conf.py 3 # Ceres Solver documentation build configuration file, created by
43 project = u'Ceres Solver'
106 html_title = "Ceres Solver"
185 ('index', 'CeresSolver.tex', u'Ceres Solver',
215 ('index', 'ceressolver', u'Ceres Solver',
229 ('index', 'CeresSolver', u'Ceres Solver',
  /external/ceres-solver/cmake/
depend.cmake 1 # Ceres Solver - A fast non-linear least squares minimizer
3 # http://code.google.com/p/ceres-solver/

Completed in 1043 milliseconds

1 2 3 4 56 7 8 91011>>