Skip to content

Commit

Permalink
riccati-impl.hxx : let compiler infer Eigen::Transpose< > template param
Browse files Browse the repository at this point in the history
  • Loading branch information
ManifoldFR committed Oct 16, 2024
1 parent 5f75d5e commit c1bcd3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gar/include/aligator/gar/riccati-impl.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void ProximalRiccatiKernel<Scalar>::terminalSolve(const KnotType &model,
RowMatrixRef Kth = d.fth.blockRow(0);
RowMatrixRef Zth = d.fth.blockRow(1);

Eigen::Transpose<const MatrixXs> Ct = model.C.transpose();
Eigen::Transpose Ct = model.C.transpose();

if (model.nu == 0) {
Z = model.C / mueq;
Expand Down

0 comments on commit c1bcd3c

Please sign in to comment.