6#include <proxsuite-nlp/fwd.hpp>
7#include <proxsuite-nlp/config.hpp>
9#ifdef ALIGATOR_WITH_PINOCCHIO
10#include <pinocchio/config.hpp>
17#include "aligator/config.hpp"
18#include "aligator/deprecated.hpp"
20#define ALIGATOR_RAISE_IF_NAN(value) \
21 if (::aligator::math::check_value(value)) \
22 ALIGATOR_RUNTIME_ERROR("Encountered NaN.\n")
24#define ALIGATOR_RAISE_IF_NAN_NAME(value, name) \
25 if (::aligator::math::check_value(value)) \
26 ALIGATOR_RUNTIME_ERROR("Encountered NaN for variable {:s}\n", name)
34using proxsuite::nlp::ConstraintSetTpl;
35using proxsuite::nlp::ManifoldAbstractTpl;
37using proxsuite::nlp::VerboseLevel;
39using VerboseLevel::QUIET;
40using VerboseLevel::VERBOSE;
41using VerboseLevel::VERYVERBOSE;
48template <
typename Scalar>
struct StageFunctionTpl;
51template <
typename Scalar>
struct UnaryFunctionTpl;
54template <
typename Scalar>
struct StageFunctionDataTpl;
57template <
typename Scalar>
struct CostAbstractTpl;
60template <
typename Scalar>
struct CostDataAbstractTpl;
63template <
typename Scalar>
struct DynamicsModelTpl;
66template <
typename Scalar>
struct DynamicsDataTpl;
69template <
typename Scalar>
struct StageConstraintTpl;
72template <
typename Scalar>
struct ExplicitDynamicsModelTpl;
75template <
typename Scalar>
struct ExplicitDynamicsDataTpl;
123template <
typename Scalar>
struct FilterTpl;
127 "Aligator now requires C++17 and the Eigen::aligned_allocator<T> class is "
128 "no longer useful. Please use std::vector<T> instead, this typedef will "
129 "change to be an alias of that of the future, then will be removed.") =
130 std::vector<T, Eigen::aligned_allocator<T>>;
132template <
typename T,
typename... Args>
134 "Aligator now requires C++17 and the Eigen::aligned_allocator<T> class is "
135 "no longer useful. This function is now just an alias for "
136 "std::make_shared, and will be removed in the future.")
137inline auto allocate_shared_eigen_aligned(Args &&...args) {
138 return std::make_shared<T>(std::forward<Args>(args)...);
ALIGATOR_DEPRECATED_MESSAGE("Aligator now requires C++17 and the Eigen::aligned_allocator<T> class is " "no longer useful. This function is now just an alias for " "std::make_shared, and will be removed in the future.") inline auto allocate_shared_eigen_aligned(Args &&...args)
Convenience class to manage a stack of constraints.
A basic filter line-search strategy.
Represents a function of which the output is a subset of another function, for instance where is gi...
The feasible DDP (FDDP) algorithm, from Mastalli et al. (2020).
A proximal, augmented Lagrangian-type solver for trajectory optimization.
Data struct for stage models StageModelTpl.
A stage in the control problem.
Trajectory optimization problem.
Base workspace struct for the algorithms.
Workspace for solver SolverProxDDP.