aligator  0.12.0
A primal-dual augmented Lagrangian-type solver for nonlinear trajectory optimization.
 
Loading...
Searching...
No Matches
control-box-function.hpp
Go to the documentation of this file.
1#pragma once
2
4
5namespace aligator {
13template <typename _Scalar>
15 "ControlBoxFunction should not be used. Instead, just use the identity "
16 "function and a BoxConstraint.") ControlBoxFunctionTpl
17 : StageFunctionTpl<_Scalar> {
18 using Scalar = _Scalar;
20 using Base = StageFunctionTpl<Scalar>;
21 using Data = StageFunctionDataTpl<Scalar>;
22
23 VectorXs umin_, umax_;
24
27 ControlBoxFunctionTpl(const int ndx, const VectorXs &umin,
28 const VectorXs &umax);
29
32 ControlBoxFunctionTpl(const int ndx, const int nu, const Scalar umin,
33 const Scalar umax);
34
35 void evaluate(const ConstVectorRef &, const ConstVectorRef &u,
36 Data &data) const override;
37
43 void computeJacobians(const ConstVectorRef &, const ConstVectorRef &,
44 Data &data) const override;
45
48 virtual shared_ptr<Data> createData() const override;
49};
50
51} // namespace aligator
52
53#include "aligator/modelling/control-box-function.hxx"
Base definitions for ternary functions.
#define ALIGATOR_DYNAMIC_TYPEDEFS(Scalar)
Definition math.hpp:8
::aligator::context::Scalar Scalar
Definition context.hpp:14
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
Class representing ternary functions .