Searched refs:solution (Results 1 - 25 of 33) sorted by relevance

12

/external/ceres-solver/examples/
H A Ddenoising.cc92 PGMImage<double>* solution) {
102 solution->MutablePixelFromLinearIndex(index));
122 double* pixel = solution->MutablePixel(x + x_delta_indices[i],
138 // solution stays within [0, 255].
139 void SolveProblem(Problem* problem, PGMImage<double>* solution) { argument
162 // Make the solution stay in [0, 255].
163 for (int x = 0; x < solution->width(); ++x) {
164 for (int y = 0; y < solution->height(); ++y) {
165 *solution->MutablePixel(x, y) =
166 std::min(255.0, std::max(0.0, solution
89 CreateProblem(const FieldsOfExperts& foe, const PGMImage<double>& image, Problem* problem, PGMImage<double>* solution) argument
[all...]
/external/ceres-solver/internal/ceres/
H A Dcompressed_col_sparse_matrix_utils.h66 // R * solution = rhs
87 // R' * solution = rhs
122 double* solution) {
123 fill(solution, solution + num_cols, 0.0);
124 solution[rhs_nonzero_index] = 1.0 / values[cols[rhs_nonzero_index + 1] - 1];
131 solution[c] -= v * solution[r];
133 solution[c] = solution[
117 SolveRTRWithSparseRHS(IntegerType num_cols, const IntegerType* rows, const IntegerType* cols, const double* values, const int rhs_nonzero_index, double* solution) argument
[all...]
H A Dschur_complement_solver.h136 double* solution) = 0;
157 double* solution);
171 double* solution);
173 double* solution);
175 double* solution);
177 double* solution);
H A Dline_search.cc346 FunctionSample solution, bracket_low, bracket_high; local
418 &solution,
419 summary) && !solution.value_is_valid) {
429 solution =
430 solution.value_is_valid && solution.value <= bracket_low.value
431 ? solution : bracket_low;
433 summary->optimal_step_size = solution.x;
637 // Returns true iff solution satisfies the strong Wolfe conditions. Otherwise,
639 // reaching max_num_iterations, solution i
641 ZoomPhase(const FunctionSample& initial_position, FunctionSample bracket_low, FunctionSample bracket_high, FunctionSample* solution, Summary* summary) argument
[all...]
H A Dschur_complement_solver.cc118 DenseSchurComplementSolver::SolveReducedLinearSystem(double* solution) { argument
148 VectorRef(solution, num_rows) = llt.solve(ConstVectorRef(rhs(), num_rows));
150 VectorRef(solution, num_rows) = ConstVectorRef(rhs(), num_rows);
154 solution,
252 SparseSchurComplementSolver::SolveReducedLinearSystem(double* solution) { argument
255 return SolveReducedLinearSystemUsingSuiteSparse(solution);
257 return SolveReducedLinearSystemUsingCXSparse(solution);
259 return SolveReducedLinearSystemUsingEigen(solution);
273 double* solution) {
368 VectorRef(solution, num_row
272 SolveReducedLinearSystemUsingSuiteSparse( double* solution) argument
379 SolveReducedLinearSystemUsingCXSparse( double* solution) argument
435 SolveReducedLinearSystemUsingEigen( double* solution) argument
[all...]
H A Dimplicit_schur_complement_test.cc74 Vector* solution) {
108 solution->resize(num_cols_);
109 solution->setZero();
110 VectorRef schur_solution(solution->data() + num_cols_ - num_schur_rows,
114 schur_solution.data(), solution->data());
160 // Reference solution to the f_block.
164 // Backsubstituted solution from the implicit schur solver using the
165 // reference solution to the f_block.
71 ReducedLinearSystemAndSolution(double* D, Matrix* lhs, Vector* rhs, Vector* solution) argument
H A Dcompressed_row_sparse_matrix.h125 void SolveLowerTriangularInPlace(double* solution) const;
126 void SolveLowerTriangularTransposeInPlace(double* solution) const;
H A Dsparse_normal_cholesky_solver.cc363 cholmod_dense* solution = ss_.Solve(factor_, rhs, &summary.message);
367 if (solution != NULL) {
368 memcpy(rhs_and_solution, solution->x, num_cols * sizeof(*rhs_and_solution));
369 ss_.Free(solution);
H A Dcompressed_row_sparse_matrix.cc297 double* solution) const {
300 solution[r] -= values_[idx] * solution[cols_[idx]];
302 solution[r] /= values_[rows_[r + 1] - 1];
307 double* solution) const {
309 solution[r] /= values_[rows_[r + 1] - 1];
311 solution[cols_[idx]] -= values_[idx] * solution[r];
H A Dcompressed_col_sparse_matrix_utils_test.cc264 double solution[4]; local
276 solution);
278 EXPECT_NEAR(solution[j], expected[4 * i + j], 1e-3) << i;
H A Dcovariance_impl.cc514 // is given by the solution to the linear system
539 double* solution = workspace.get() + thread_id * num_cols; local
546 solution);
549 values[idx] = solution[inverse_permutation[c]];
702 // is given by the solution to the linear system
728 double* solution = workspace.get() + thread_id * num_cols; local
735 solution);
741 values[idx] = solution[inverse_permutation.indices().coeff(c)];
H A Dline_search.h84 // exact solution, the line search algorithm returns a solution
292 FunctionSample* solution,
H A Dvisibility_based_preconditioner.cc468 cholmod_dense* solution = local
470 memcpy(y, solution->x, sizeof(*y) * num_rows);
471 ss->Free(solution);
/external/opencv/cvaux/src/
H A Dcvlmeds.cpp678 double solution[9]; local
747 { /* ----------- computing the solution ----------- */
781 /* ----------- solution = V * W(-1) * U(T) * f ----------- */
787 solution[a] = 0;
791 solution[a] += temp2[a_num + t] * f[t];
801 solution[a] = solution[a - 1];
804 solution[a] = 1;
816 summ += A[a9 + t] * solution[t];
828 F[j] = solution[
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Devent-hub.rb10 information to only one listener, EventHubs provide a simple solution in
/external/libvpx/libvpx/build/make/
H A Dgen_msvs_sln.sh22 This script generates a Visual Studio solution file from a list of project
/external/libvpx/libvpx/
H A Dconfigure492 for tgt in libs examples docs solution; do
646 enable_feature solution
659 all_targets="${all_targets} solution"
/external/mesa3d/docs/OLD/
H A DMESA_program_debug.spec82 the GL. Isn't there another solution?
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DBigMatrixImpl.java29 * solution and inverse.
1087 * Returns a matrix of (column) solution vectors for linear systems with
1093 * @return solution array
1105 final BigDecimal[][] solution = ((BigMatrixImpl) (solve(bMatrix))).getDataRef();
1108 out[row] = solution[row][0];
1114 * Returns a matrix of (column) solution vectors for linear systems with
1120 * @return solution array
1133 * Returns a matrix of (column) solution vectors for linear systems with
1139 * @return matrix of solution vectors
/external/ceres-solver/
H A DAndroid.mk115 # which there is no solution. Hide the warning instead.
/external/linux-tools-perf/src/tools/perf/config/
H A Dutilities.mak27 # The only solution is to change each newline into
/external/lldb/utils/vim-lldb/plugin/
H A Dlldb.vim111 " FIXME: some threaded solution would be better...but it
/external/valgrind/cachegrind/
H A Dcg_annotate.in682 @@ solution: Recompile program and rerun under "valgrind --cachesim=yes" to
690 @@ solution: none, sorry
705 @@ Probable cause and solution:
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex113 Certainly, it is not solution but rather attempt to force applications
126 before filling known fields is robust but stupid solution.
/external/valgrind/callgrind/
H A Dcallgrind_annotate.in1008 @@ solution: Recompile program and rerun under "valgrind --cachesim=yes" to
1016 @@ solution: none, sorry
1031 @@ Probable cause and solution:

Completed in 1082 milliseconds

12