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);
20 if (problem.
stages_.size() > 0) {
21 xs[0] = problem.
stages_[0]->xspace().neutral();
24 "The problem should have either a StateErrorResidual as an initial "
25 "condition or at least one stage.");
28 for (std::size_t i = 0; i < nsteps; i++) {
36template <
typename Scalar>
38 std::vector<
typename math_types<Scalar>::VectorXs> &us) {
39 const std::size_t nsteps = problem.
numSteps();
41 for (std::size_t i = 0; i < nsteps; i++) {
43 us[i] = sm.
uspace().neutral();
49template <
typename T1,
typename T2>
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())
59 const auto same_dims = [](
auto &x,
auto &y) {
60 return (x.cols() == y.cols()) && (x.rows() == y.rows());
63 for (std::size_t i = 0; i < lhs.size(); i++) {
64 if (!same_dims(lhs[i], rhs[i]))
81template <
typename Scalar>
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) {
90 }
else if (us_in.empty()) {
#define ALIGATOR_RUNTIME_ERROR(...)
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.
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.
bool initCondIsStateError() const
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