Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
VRichardJP authored and ProfFan committed May 24, 2024
1 parent 0fee5cb commit 42b27e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtsam/navigation/PreintegrationBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ NavState PreintegrationBase::predict(const NavState& state_i,
Matrix9 D_predict_state, D_predict_delta;
NavState state_j = state_i.retract(xi,
H1 ? &D_predict_state : nullptr,
H2 || H2 ? &D_predict_delta : nullptr);
H1 || H2 ? &D_predict_delta : nullptr);
if (H1)
*H1 = D_predict_state + D_predict_delta * D_delta_state;
if (H2)
Expand Down

0 comments on commit 42b27e4

Please sign in to comment.