9 #ifndef CROCODDYL_CORE_SOLVERS_BOX_DDP_HPP_
10 #define CROCODDYL_CORE_SOLVERS_BOX_DDP_HPP_
12 #include <Eigen/Cholesky>
15 #include "crocoddyl/core/solvers/box-qp.hpp"
16 #include "crocoddyl/core/solvers/ddp.hpp"
22 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
24 explicit SolverBoxDDP(boost::shared_ptr<ShootingProblem> problem);
27 virtual void allocateData();
28 virtual void computeGains(
const std::size_t t);
29 virtual void forwardPass(
const double steplength);
30 virtual void resizeData();
32 const std::vector<Eigen::MatrixXd>& get_Quu_inv()
const;
36 std::vector<Eigen::MatrixXd> Quu_inv_;
37 std::vector<Eigen::VectorXd> du_lb_;
38 std::vector<Eigen::VectorXd> du_ub_;
This class implements a Box QP solver based on a Projected Newton method.