Skip to content
Snippets Groups Projects
Commit 9abcb9ee authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

print correction

parent aedba635
No related branches found
No related tags found
No related merge requests found
Pipeline #6067 passed
......@@ -243,7 +243,7 @@ bool SolverCeres::computeCovariances(const CovarianceBlocksToBeComputed _blocks)
not last_frame->hasStateBlock('V') or
not isStateBlockRegisteredDerived(last_frame->getStateBlock('V')))
{
WOLF_WARN("SolverCeres::computeCovariances: last KF have null or unregistered state blocks P O or T, returning...");
WOLF_WARN("SolverCeres::computeCovariances: last KF have null or unregistered state blocks P or V, returning...");
WOLF_WARN_COND(not last_frame->getStateBlock('P'), "SolverCeres::computeCovariances: KF state block 'P' not found");
WOLF_WARN_COND(last_frame->getStateBlock('P') and not isStateBlockRegisteredDerived(last_frame->getStateBlock('P')), "SolverCeres::computeCovariances: KF state block 'P' not registered ", last_frame->getStateBlock('P'));
WOLF_WARN_COND(not last_frame->getStateBlock('V'), "SolverCeres::computeCovariances: KF state block 'V' not found");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment