File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
include/proxsuite/proxqp/dense Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ setup_factorization(Workspace<T>& qpwork,
8787 .segment (qpmodel.dim , qpmodel.n_eq )
8888 .setConstant (-qpresults.info .mu_eq );
8989
90- qpwork.ldl .factorize (qpwork.kkt , stack);
90+ qpwork.ldl .factorize (qpwork.kkt . transpose () , stack);
9191}
9292/* !
9393 * Performs the equilibration of the QP problem for reducing its
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ refactorize(const Model<T>& qpmodel,
5555 proxsuite::linalg::veg::dynstack::DynStackMut stack{
5656 proxsuite::linalg::veg::from_slice_mut, qpwork.ldl_stack .as_mut ()
5757 };
58- qpwork.ldl .factorize (qpwork.kkt , stack);
58+ qpwork.ldl .factorize (qpwork.kkt . transpose () , stack);
5959
6060 isize n = qpmodel.dim ;
6161 isize n_eq = qpmodel.n_eq ;
You can’t perform that action at this time.
0 commit comments