mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-30 00:50:37 +08:00
More C++ification.
"> >" -> ">>" "> > >" -> ">>>" Change-Id: Id1ddd9dbf030fe21d57207741b4ca8403068e55b
This commit is contained in:
@@ -115,7 +115,7 @@ class TinySolverAutoDiffFunction {
|
||||
// Copy the jacobian out of the derivative part of the residual jets.
|
||||
Eigen::Map<Eigen::Matrix<T,
|
||||
kNumResiduals,
|
||||
kNumParameters> > jacobian_matrix(jacobian);
|
||||
kNumParameters>> jacobian_matrix(jacobian);
|
||||
for (int r = 0; r < kNumResiduals; ++r) {
|
||||
residuals[r] = jet_residuals_[r].a;
|
||||
// Note that while this looks like a fast vectorized write, in practice it
|
||||
|
||||
Reference in New Issue
Block a user