aligator  0.12.0
A primal-dual augmented Lagrangian-type solver for nonlinear trajectory optimization.
 
Loading...
Searching...
No Matches
solver-util.hpp
Go to the documentation of this file.
1
4#pragma once
5
7
8namespace aligator {
9
12template <typename Scalar>
14 std::vector<typename math_types<Scalar>::VectorXs> &xs) {
15 const std::size_t nsteps = problem.numSteps();
16 xs.resize(nsteps + 1);
17 if (problem.initCondIsStateError()) {
18 xs[0] = problem.getInitState();
19 } else {
20 if (problem.stages_.size() > 0) {
21 xs[0] = problem.stages_[0]->xspace().neutral();
22 } else {
24 "The problem should have either a StateErrorResidual as an initial "
25 "condition or at least one stage.");
26 }
27 }
28 for (std::size_t i = 0; i < nsteps; i++) {
29 const StageModelTpl<Scalar> &sm = *problem.stages_[i];
30 xs[i + 1] = sm.xspace_next().neutral();
31 }
32}
33
36template <typename Scalar>
38 std::vector<typename math_types<Scalar>::VectorXs> &us) {
39 const std::size_t nsteps = problem.numSteps();
40 us.resize(nsteps);
41 for (std::size_t i = 0; i < nsteps; i++) {
42 const StageModelTpl<Scalar> &sm = *problem.stages_[i];
43 us[i] = sm.uspace().neutral();
44 }
45}
46
49template <typename T1, typename T2>
50[[nodiscard]] bool assign_no_resize(const std::vector<T1> &lhs,
51 std::vector<T2> &rhs) {
52 static_assert(std::is_base_of_v<Eigen::EigenBase<T1>, T1>,
53 "T1 should be an Eigen object!");
54 static_assert(std::is_base_of_v<Eigen::EigenBase<T2>, T2>,
55 "T2 should be an Eigen object!");
56 if (lhs.size() != rhs.size())
57 return false;
58
59 const auto same_dims = [](auto &x, auto &y) {
60 return (x.cols() == y.cols()) && (x.rows() == y.rows());
61 };
62
63 for (std::size_t i = 0; i < lhs.size(); i++) {
64 if (!same_dims(lhs[i], rhs[i]))
65 return false;
66 rhs[i] = lhs[i];
67 }
68 return true;
69}
70
71namespace detail {
81template <typename Scalar>
83 const TrajOptProblemTpl<Scalar> &problem,
84 const typename math_types<Scalar>::VectorOfVectors &xs_in,
85 const typename math_types<Scalar>::VectorOfVectors &us_in,
86 typename math_types<Scalar>::VectorOfVectors &xs_out,
87 typename math_types<Scalar>::VectorOfVectors &us_out) {
88 if (xs_in.empty()) {
89 problem.initializeSolution(xs_out, us_out);
90 } else if (us_in.empty()) {
91 us_default_init(problem, us_out);
92 } else {
93 if (!assign_no_resize(xs_in, xs_out))
94 ALIGATOR_RUNTIME_ERROR("warm-start for xs has wrong size!");
95 if (!assign_no_resize(us_in, us_out))
96 ALIGATOR_RUNTIME_ERROR("warm-start for us has wrong size!");
97 }
98}
99} // namespace detail
100
101} // namespace aligator
#define ALIGATOR_RUNTIME_ERROR(...)
Definition exceptions.hpp:7
void check_initial_guess_and_assign(const TrajOptProblemTpl< Scalar > &problem, const typename math_types< Scalar >::VectorOfVectors &xs_in, const typename math_types< Scalar >::VectorOfVectors &us_in, typename math_types< Scalar >::VectorOfVectors &xs_out, typename math_types< Scalar >::VectorOfVectors &us_out)
Check the input state-control trajectory is a consistent warm-start for the output.
Main package namespace.
bool assign_no_resize(const std::vector< T1 > &lhs, std::vector< T2 > &rhs)
Assign a vector of Eigen types into another, ensure there is no resize.
void us_default_init(const TrajOptProblemTpl< Scalar > &problem, std::vector< typename math_types< Scalar >::VectorXs > &us)
Default-initialize a controls trajectory from the neutral element of each control space.
void xs_default_init(const TrajOptProblemTpl< Scalar > &problem, std::vector< typename math_types< Scalar >::VectorXs > &xs)
Default-initialize a trajectory to the neutral states for each state space at each stage.
A stage in the control problem.
const Manifold & xspace_next() const
const Manifold & uspace() const
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.
ConstVectorRef getInitState() const
Get initial state constraint.
std::vector< xyz::polymorphic< StageModel > > stages_
Stages of the control problem.
std::size_t numSteps() const