aligator  0.12.0
A primal-dual augmented Lagrangian-type solver for nonlinear trajectory optimization.
 
Loading...
Searching...
No Matches
results.hpp
Go to the documentation of this file.
1#pragma once
2
4
5namespace aligator {
6
7template <typename Scalar> struct ResultsFDDPTpl : ResultsBaseTpl<Scalar> {
8
11 using BlockXs = Eigen::Block<MatrixXs, -1, -1>;
12
13 using Base::gains_;
14 using Base::us;
15 using Base::xs;
16
18 explicit ResultsFDDPTpl(const TrajOptProblemTpl<Scalar> &problem);
19};
20
21template <typename Scalar>
23 const TrajOptProblemTpl<Scalar> &problem) {
24 if (!problem.checkIntegrity())
25 ALIGATOR_RUNTIME_ERROR("Problem failed integrity check.");
26 using StageModel = StageModelTpl<Scalar>;
27
28 const std::size_t nsteps = problem.numSteps();
29 xs.resize(nsteps + 1);
30 us.resize(nsteps);
31
32 problem.initializeSolution(xs, us);
33
34 gains_.resize(nsteps);
35
36 for (std::size_t i = 0; i < nsteps; i++) {
37 const StageModel &sm = *problem.stages_[i];
38
39 const int ndx = sm.ndx1();
40 const int nu = sm.nu();
41
42 gains_[i].setZero(nu, ndx + 1);
43 }
44 this->m_isInitialized = true;
45}
46
47} // namespace aligator
48
49#ifdef ALIGATOR_ENABLE_TEMPLATE_INSTANTIATION
50#include "./results.txx"
51#endif
#define ALIGATOR_RUNTIME_ERROR(...)
Definition exceptions.hpp:7
Main package namespace.
std::vector< MatrixXs > gains_
std::vector< VectorXs > xs
States.
ResultsBaseTpl< Scalar > Base
Definition results.hpp:10
std::vector< VectorXs > us
Controls.
std::vector< MatrixXs > gains_
Riccati gains.
Eigen::Block< MatrixXs, -1, -1 > BlockXs
Definition results.hpp:11
A stage in the control problem.
Trajectory optimization problem.
void initializeSolution(std::vector< VectorXs > &xs, std::vector< VectorXs > &us) const
Execute the initialization strategy to generate an initial candidate solution to the problem.
std::vector< xyz::polymorphic< StageModel > > stages_
Stages of the control problem.
std::size_t numSteps() const