HomeSort by relevance Sort by last modified time
    Searched refs:Solve (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/chromium_org/ui/gfx/geometry/
cubic_bezier_unittest.cc 18 EXPECT_NEAR(function.Solve(0), 0, epsilon);
19 EXPECT_NEAR(function.Solve(0.05), 0.01136, epsilon);
20 EXPECT_NEAR(function.Solve(0.1), 0.03978, epsilon);
21 EXPECT_NEAR(function.Solve(0.15), 0.079780, epsilon);
22 EXPECT_NEAR(function.Solve(0.2), 0.12803, epsilon);
23 EXPECT_NEAR(function.Solve(0.25), 0.18235, epsilon);
24 EXPECT_NEAR(function.Solve(0.3), 0.24115, epsilon);
25 EXPECT_NEAR(function.Solve(0.35), 0.30323, epsilon);
26 EXPECT_NEAR(function.Solve(0.4), 0.36761, epsilon);
27 EXPECT_NEAR(function.Solve(0.45), 0.43345, epsilon)
    [all...]
cubic_bezier.h 19 double Solve(double x) const;
  /external/ceres-solver/internal/ceres/
conjugate_gradients_solver.h 61 virtual Summary Solve(LinearOperator* A,
solver_test.cc 106 Solve(options, &problem, &summary);
118 Solve(options, &problem, &summary);
167 Solve(options, &problem, &summary);
179 Solve(options, &problem, &summary);
193 Solve(options, &problem, &summary);
207 Solve(options, &problem, &summary);
222 Solve(options, &problem, &summary);
236 Solve(options, &problem, &summary);
coordinate_descent_minimizer.h 82 void Solve(Program* program,
iterative_schur_complement_solver_test.cc 90 qr->Solve(&dense_A, b_.get(), per_solve_options, reference_solution.data());
100 isc.Solve(A_.get(), b_.get(), per_solve_options, isc_sol.data());
symmetric_linear_solver_test.cc 31 // Tests for linear solvers that solve symmetric linear systems. Some
72 solver.Solve(A.get(), b.data(), per_solve_options, x.data());
129 solver.Solve(A.get(), b.data(), per_solve_options, x.data());
linear_solver.h 83 // information across solves. This means that calling Solve on the
90 // a particular Solve call.
168 // Options for the Solve method.
178 // that can solve rectangular linear systems.
181 // and a vector b, the linear solver will solve for
212 // of solving Ax = b, we solve the linear system AM^{-1} y = b
246 // solve the Newton step. This particular convergence test comes
261 // Summary of a call to the Solve method. We should move away from
287 // Solve Ax = b.
288 virtual Summary Solve(LinearOperator* A
    [all...]
cgnr_solver.cc 58 EventLogger event_logger("CgnrSolver::Solve");
75 // Solve (AtA + DtD)x = z (= Atb).
82 conjugate_gradient_solver.Solve(&lhs, z.data(), cg_per_solve_options, x);
83 event_logger.AddEvent("Solve");
solver_impl.h 55 static void Solve(const Solver::Options& options,
solver_impl_test.cc 88 SolverImpl::Solve(options, &problem, &summary);
97 // user state, instead of inside a random temporary vector made by Solve().
schur_complement_solver_test.cc 78 qr->Solve(&dense_A, b.get(), LinearSolver::PerSolveOptions(), sol.get());
83 qr->Solve(&dense_A, b.get(), per_solve_options, sol_d.get());
113 summary = solver->Solve(A.get(), b.get(), per_solve_options, x.get());
c_api.cc 186 ceres::Solve(options, problem, &summary);
iterative_schur_complement_solver.cc 70 EventLogger event_logger("IterativeSchurComplementSolver::Solve");
166 cg_summary = cg_solver.Solve(schur_complement_.get(),
176 event_logger.AddEvent("Solve");
  /external/ceres-solver/examples/
helloworld.cc 43 using ceres::Solve;
59 // The variable to solve for with its initial value. It will be
77 Solve(options, &problem, &summary);
helloworld_analytic_diff.cc 43 using ceres::Solve;
84 // The variable to solve for with its initial value. It will be
100 Solve(options, &problem, &summary);
helloworld_numeric_diff.cc 42 using ceres::Solve;
55 // The variable to solve for with its initial value. It will be
73 Solve(options, &problem, &summary);
circle_fit.cc 65 using ceres::Solve;
149 // Build and solve the problem.
154 Solve(options, &problem, &summary);
powell.cc 56 using ceres::Solve;
145 Solve(options, &problem, &summary);
curve_fitting.cc 38 using ceres::Solve;
158 Solve(options, &problem, &summary);
robot_pose_mle.cc 144 using ceres::Solve;
310 Solve(solver_options, &problem, &summary);
robust_curve_fitting.cc 120 using ceres::Solve;
158 Solve(options, &problem, &summary);
  /external/chromium_org/ui/gfx/animation/
tween.cc 56 return gfx::CubicBezier(0.4, 0, 0.2, 1).Solve(state);
59 return gfx::CubicBezier(0, 0, .2, 1).Solve(state);
62 return gfx::CubicBezier(0.4, 0, 1, 1).Solve(state);
  /external/chromium_org/cc/animation/
timing_function.cc 29 return static_cast<float>(bezier_.Solve(x));
  /external/ceres-solver/include/ceres/
solver.h 426 // Number of threads used by Ceres to solve the Newton
574 // linear in a_1 and a_2, i.e., Solve for the trust region step
577 // amounts to doing a single linear least squares solve. For
608 // in the early stages of the solve and then their contribution
    [all...]

Completed in 494 milliseconds

1 2 3