aligator  0.12.0
A primal-dual augmented Lagrangian-type solver for nonlinear trajectory optimization.
 
Loading...
Searching...
No Matches
fwd.hpp
Go to the documentation of this file.
1
4#pragma once
5
6#include <proxsuite-nlp/fwd.hpp>
7#include <proxsuite-nlp/config.hpp>
8
9#ifdef ALIGATOR_WITH_PINOCCHIO
10#include <pinocchio/config.hpp>
11#endif
12
13#include "aligator/math.hpp"
15#include "aligator/macros.hpp"
17#include "aligator/config.hpp"
18#include "aligator/deprecated.hpp"
19
20#define ALIGATOR_RAISE_IF_NAN(value) \
21 if (::aligator::math::check_value(value)) \
22 ALIGATOR_RUNTIME_ERROR("Encountered NaN.\n")
23
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)
27
29namespace aligator {
31
32// NOLINTBEGIN(misc-unused-using-decls)
33
34using proxsuite::nlp::ConstraintSetTpl;
35using proxsuite::nlp::ManifoldAbstractTpl;
36// Use the math_types template from proxsuite-nlp.
37using proxsuite::nlp::VerboseLevel;
38
39using VerboseLevel::QUIET;
40using VerboseLevel::VERBOSE;
41using VerboseLevel::VERYVERBOSE;
42
43using std::shared_ptr;
44
45// NOLINTEND(misc-unused-using-decls)
46
47// fwd StageFunctionTpl
48template <typename Scalar> struct StageFunctionTpl;
49
50// fwd UnaryFunctionTpl
51template <typename Scalar> struct UnaryFunctionTpl;
52
53// fwd StageFunctionDataTpl
54template <typename Scalar> struct StageFunctionDataTpl;
55
56// fwd CostAbstractTpl
57template <typename Scalar> struct CostAbstractTpl;
58
59// fwd CostDataAbstractTpl
60template <typename Scalar> struct CostDataAbstractTpl;
61
62// fwd DynamicsModelTpl
63template <typename Scalar> struct DynamicsModelTpl;
64
65// fwd DynamicsDataTpl
66template <typename Scalar> struct DynamicsDataTpl;
67
68// fwd StageConstraintTpl
69template <typename Scalar> struct StageConstraintTpl;
70
71// fwd ExplicitDynamicsModelTpl
72template <typename Scalar> struct ExplicitDynamicsModelTpl;
73
74// fwd declaration of ExplicitDynamicsDataTpl
75template <typename Scalar> struct ExplicitDynamicsDataTpl;
76
77/* FUNCTION EXPRESSIONS */
78
79// fwd declaration of FunctionSliceXprTpl
80template <typename Scalar, typename Base> struct FunctionSliceXprTpl;
81
82/* STAGE MODEL */
83
84// fwd StageModelTpl
85template <typename Scalar> struct StageModelTpl;
86
87// fwd StageDataTpl
88template <typename Scalar> struct StageDataTpl;
89
90// fwd CallbackBaseTpl
91template <typename Scalar> struct CallbackBaseTpl;
92
93/* SHOOTING PROBLEM */
94
95// fwd ConstraintStackTpl
96template <typename Scalar> struct ConstraintStackTpl;
97
98// fwd TrajOptProblemTpl
99template <typename Scalar> struct TrajOptProblemTpl;
100
101// fwd TrajOptDataTpl
102template <typename Scalar> struct TrajOptDataTpl;
103
104// fwd SolverProxDDP
105template <typename Scalar> struct SolverProxDDPTpl;
106
107// fwd SolverFDDP
108template <typename Scalar> struct SolverFDDPTpl;
109
110// fwd WorkspaceBaseTpl
111template <typename Scalar> struct WorkspaceBaseTpl;
112
113// fwd ResultsBaseTpl
114template <typename Scalar> struct ResultsBaseTpl;
115
116// fwd WorkspaceTpl
117template <typename Scalar> struct WorkspaceTpl;
118
119// fwd ResultsTpl
120template <typename Scalar> struct ResultsTpl;
121
122// fwd FilterTpl
123template <typename Scalar> struct FilterTpl;
124
125template <typename T>
126using StdVectorEigenAligned ALIGATOR_DEPRECATED_MESSAGE(
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>>;
131
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)...);
139}
140
141} // namespace aligator
Math utilities.
Main package namespace.
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)
Definition fwd.hpp:133
Base callback class.
Convenience class to manage a stack of constraints.
A basic filter line-search strategy.
Definition filter.hpp:12
Represents a function of which the output is a subset of another function, for instance where is gi...
Definition fwd.hpp:80
Results holder struct.
Definition results.hpp:11
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.
Problem data struct.
Trajectory optimization problem.
Base workspace struct for the algorithms.
Workspace for solver SolverProxDDP.
Definition workspace.hpp:28