Skip to content
Snippets Groups Projects
Commit a676e660 authored by jcarpent's avatar jcarpent
Browse files

[C++] Correct initialization of the U cholesky matrix

parent 4533eaee
No related branches found
No related tags found
No related merge requests found
......@@ -216,7 +216,7 @@ namespace se3
computeLastChild(ref);
/* Init for Cholesky */
U = Eigen::MatrixXd::Identity(ref.nv,ref.nv);
U.setIdentity();
computeParents_fromRow(ref);
/* Init Jacobian */
......
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