Updated gttic strings as well
parent
41a0146b05
commit
b712a65c21
|
@ -348,7 +348,7 @@ double HessianFactor::error(const VectorValues& c) const {
|
|||
/* ************************************************************************* */
|
||||
void HessianFactor::updateHessian(const Scatter& scatter,
|
||||
SymmetricBlockMatrix* info) const {
|
||||
gttic(updateATA_HessianFactor);
|
||||
gttic(updateHessian_HessianFactor);
|
||||
// N is number of variables in information matrix, n in HessianFactor
|
||||
DenseIndex N = info->nBlocks() - 1, n = size();
|
||||
|
||||
|
|
|
@ -500,7 +500,7 @@ map<Key, Matrix> JacobianFactor::hessianBlockDiagonal() const {
|
|||
/* ************************************************************************* */
|
||||
void JacobianFactor::updateHessian(const Scatter& scatter,
|
||||
SymmetricBlockMatrix* info) const {
|
||||
gttic(updateATA_JacobianFactor);
|
||||
gttic(updateHessian_JacobianFactor);
|
||||
|
||||
if (rows() == 0) return;
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ namespace gtsam {
|
|||
|
||||
// Fixed-size matrix update
|
||||
void updateHessian(const Scatter& scatter, SymmetricBlockMatrix* info) const {
|
||||
gttic(updateATA_LinearizedFactor);
|
||||
gttic(updateHessian_LinearizedFactor);
|
||||
|
||||
// Whiten the factor if it has a noise model
|
||||
const SharedDiagonal& model = get_model();
|
||||
|
|
Loading…
Reference in New Issue