Fix a bug in covariance_impl.cc A matrix reference was being incorrectly sized. It was using the block_size number of rows, where as there are only block_local_size number of rows that are present in the underlying matrix. This did not affect the correctness of the resulting code, because right after construction we then access a subblock with block_local_size rows. Thanks to William Gandler for reporting this. Change-Id: I35e1f5a30b79e31b0b9fac79f7e361821d6073df
Ceres Solver is an open source C++ library for modeling and solving large, complicated optimization problems. It is a feature rich, mature and performant library which has been used in production at Google since 2010. Ceres Solver can solve two kinds of problems.
Please see ceres-solver.org for more information.