Home
last modified time | relevance | path

Searched refs:ConstVectorRef (Results 1 – 24 of 24) sorted by relevance

/external/ceres-solver/internal/ceres/
Devaluator_test_utils.cc52 ConstVectorRef expected_residuals_vector(expected_residuals, in CompareEvaluations()
54 ConstVectorRef actual_residuals_vector(actual_residuals, in CompareEvaluations()
63 ConstVectorRef expected_gradient_vector(expected_gradient, in CompareEvaluations()
65 ConstVectorRef actual_gradient_vector(actual_gradient, in CompareEvaluations()
Dimplicit_schur_complement.cc127 ConstVectorRef Dref(D_ + A_->num_cols_e(), num_cols()); in RightMultiply()
130 ConstVectorRef(x, num_cols()).array()).matrix(); in RightMultiply()
155 ConstVectorRef d(D + row_block_pos, row_block_size); in AddDiagonalAndInvert()
179 tmp_rows_ = ConstVectorRef(b_, num_rows) - tmp_rows_; in BackSubstitute()
194 VectorRef(y + num_cols_e, num_cols_f) = ConstVectorRef(x, num_cols_f); in BackSubstitute()
217 tmp_rows_ = ConstVectorRef(b_, A_->num_rows()) - tmp_rows_; in UpdateRhs()
Dparameter_block.h179 << ConstVectorRef(state_, Size()).transpose(); in SetParameterization()
220 VectorRef(x_plus_delta, size_) = ConstVectorRef(x, size_) + in Plus()
221 ConstVectorRef(delta, size_); in Plus()
334 "for x: " << ConstVectorRef(state_, Size()).transpose(); in UpdateLocalParameterizationJacobian()
341 << ConstVectorRef(state_, Size()).transpose() in UpdateLocalParameterizationJacobian()
Ddense_sparse_matrix.cc88 VectorRef(y, num_rows()) += matrix() * ConstVectorRef(x, num_cols()); in RightMultiply()
93 matrix().transpose() * ConstVectorRef(x, num_rows()); in LeftMultiply()
101 m_ *= ConstVectorRef(scale, num_cols()).asDiagonal(); in ScaleColumns()
119 ConstVectorRef(d, m_.cols()).asDiagonal(); in AppendDiagonal()
Ddense_normal_cholesky_solver.cc88 Vector rhs = Aref.transpose() * ConstVectorRef(b, num_rows); in SolveUsingEigen()
91 ConstVectorRef D(per_solve_options.D, num_cols); in SolveUsingEigen()
152 A->matrix().transpose() * ConstVectorRef(b, A->num_rows()); in SolveUsingLAPACK()
Dcgnr_linear_operator.h99 VectorRef(y, n).array() += ConstVectorRef(D_, n).array().square() * in RightMultiply()
100 ConstVectorRef(x, n).array(); in RightMultiply()
Dblock_jacobi_preconditioner.cc112 ConstVectorRef(D + position, size).array().square().matrix(); in UpdateImpl()
128 ConstVectorRef x_block(x + position, size); in RightMultiply()
Dlocal_parameterization.cc48 ConstVectorRef(x, size_) + ConstVectorRef(delta, size_); in Plus()
Ddense_qr_solver.cc94 rhs_.head(num_rows) = ConstVectorRef(b, num_rows); in SolveUsingLAPACK()
145 rhs_.head(num_rows) = ConstVectorRef(b, num_rows); in SolveUsingEigen()
Dschur_complement_solver.cc148 VectorRef(solution, num_rows) = llt.solve(ConstVectorRef(rhs(), num_rows)); in SolveReducedLinearSystem()
150 VectorRef(solution, num_rows) = ConstVectorRef(rhs(), num_rows); in SolveReducedLinearSystem()
410 VectorRef(solution, num_rows) = ConstVectorRef(rhs(), num_rows); in SolveReducedLinearSystemUsingCXSparse()
506 simplicial_ldlt_->solve(ConstVectorRef(rhs(), num_rows)); in SolveReducedLinearSystemUsingEigen()
Ddynamic_compressed_row_sparse_matrix_test.cc155 ConstVectorRef crsm_values(crsm->values(), crsm->num_nonzeros()); in ExpectEqualToCompressedRowSparseMatrixReference()
156 ConstVectorRef dcrsm_values(dcrsm->values(), dcrsm->num_nonzeros()); in ExpectEqualToCompressedRowSparseMatrixReference()
Dnormal_prior.cc54 ConstVectorRef p(parameters[0], parameter_block_sizes()[0]); in Evaluate()
Dunsymmetric_linear_solver_test.cc112 << ConstVectorRef(sol_unregularized_.get(), A_->num_cols()).transpose() in TestSolver()
121 << ConstVectorRef(sol_regularized_.get(), A_->num_cols()).transpose() in TestSolver()
Dschur_eliminator_impl.h197 typename EigenTypes<kFBlockSize>::ConstVectorRef in Eliminate()
240 const typename EigenTypes<kEBlockSize>::ConstVectorRef in Eliminate()
322 const typename EigenTypes<kEBlockSize>::ConstVectorRef in BackSubstitute()
338 typename EigenTypes<kRowBlockSize>::ConstVectorRef in BackSubstitute()
391 typename EigenTypes<kRowBlockSize>::ConstVectorRef in UpdateRhs()
Dlinear_least_squares_problems.cc519 << ConstVectorRef(D, A->num_cols()); in DumpLinearLeastSquaresProblemToConsole()
523 LOG(INFO) << "b: \n" << ConstVectorRef(b, A->num_rows()); in DumpLinearLeastSquaresProblemToConsole()
527 LOG(INFO) << "x: \n" << ConstVectorRef(x, A->num_cols()); in DumpLinearLeastSquaresProblemToConsole()
Dlow_rank_inverse_hessian.cc121 ConstVectorRef gradient(x_ptr, num_parameters_); in RightMultiply()
Dsmall_blas.h283 const typename EigenTypes<kColA>::ConstVectorRef bref(b, num_col_a); in MatrixVectorMultiply()
334 const typename EigenTypes<kRowA>::ConstVectorRef bref(b, num_row_a); in MatrixTransposeVectorMultiply()
Dschur_jacobi_preconditioner.cc122 .solve(ConstVectorRef(x, block_size)); in RightMultiply()
Dconjugate_gradients_solver.cc83 ConstVectorRef bref(b, num_cols); in Solve()
Dblock_sparse_matrix.cc157 m *= ConstVectorRef(scale + col_block_pos, col_block_size).asDiagonal(); in ScaleColumns()
Drotation_test.cc888 VectorRef(result2, 3) = ConstMatrixRef(R, 3, 3)* ConstVectorRef(p, 3); in TEST()
Dproblem_test.cc1029 ConstVectorRef(parameters[j], kNumResiduals)).asDiagonal(); in Evaluate()
/external/ceres-solver/include/ceres/internal/
Deigen.h45 typedef Eigen::Map<const Vector> ConstVectorRef; typedef
88 ConstVectorRef; typedef
/external/ceres-solver/examples/
Dbal_problem.cc46 typedef Eigen::Map<const Eigen::VectorXd> ConstVectorRef; typedef
186 angle_axis_ref = ConstVectorRef(camera, 3); in CameraToAngleAxisAndCenter()
200 ConstVectorRef angle_axis_ref(angle_axis, 3); in AngleAxisAndCenterToCamera()