aligator
0.9.0
A primal-dual augmented Lagrangian-type solver for nonlinear trajectory optimization.
|
Linear function \(f(x,u,y) = Ax + Bu + Cy + d\). More...
#include <aligator/modelling/linear-function.hpp>
Public Types | |
using | Base = StageFunctionTpl<Scalar> |
using | Data = StageFunctionDataTpl<Scalar> |
Public Types inherited from aligator::StageFunctionTpl< Scalar > | |
using | Scalar = _Scalar |
using | Data = StageFunctionDataTpl<Scalar> |
Public Member Functions | |
ALIGATOR_DYNAMIC_TYPEDEFS (Scalar) | |
LinearFunctionTpl (const int ndx, const int nu, const int nr) | |
LinearFunctionTpl (const ConstMatrixRef A, const ConstMatrixRef B, const ConstVectorRef d) | |
void | evaluate (const ConstVectorRef &x, const ConstVectorRef &u, Data &data) const override |
Evaluate the function. | |
void | computeJacobians (const ConstVectorRef &, const ConstVectorRef &, Data &data) const override |
Compute Jacobians of this function. | |
virtual shared_ptr< Data > | createData () const override |
Instantiate a Data object. | |
Public Member Functions inherited from aligator::StageFunctionTpl< Scalar > | |
ALIGATOR_DYNAMIC_TYPEDEFS (Scalar) | |
StageFunctionTpl (const int ndx, const int nu, const int nr) | |
virtual void | computeVectorHessianProducts (const ConstVectorRef &x, const ConstVectorRef &u, const ConstVectorRef &lbda, Data &data) const |
Compute the vector-hessian products of this function. | |
virtual | ~StageFunctionTpl ()=default |
Public Attributes | |
MatrixXs | A_ |
MatrixXs | B_ |
VectorXs | d_ |
Public Attributes inherited from aligator::StageFunctionTpl< Scalar > | |
const int | ndx1 |
Current state dimension. | |
const int | nu |
Control dimension. | |
const int | nr |
Function codimension. | |
Linear function \(f(x,u,y) = Ax + Bu + Cy + d\).
Definition at line 9 of file linear-function.hpp.
using aligator::LinearFunctionTpl< Scalar >::Base = StageFunctionTpl<Scalar> |
Definition at line 12 of file linear-function.hpp.
using aligator::LinearFunctionTpl< Scalar >::Data = StageFunctionDataTpl<Scalar> |
Definition at line 13 of file linear-function.hpp.
|
inline |
Definition at line 19 of file linear-function.hpp.
|
inline |
Definition at line 26 of file linear-function.hpp.
aligator::LinearFunctionTpl< Scalar >::ALIGATOR_DYNAMIC_TYPEDEFS | ( | Scalar | ) |
|
inlineoverridevirtual |
Evaluate the function.
x | Current state. |
u | Controls. |
data | Data holding struct. |
Implements aligator::StageFunctionTpl< Scalar >.
Definition at line 33 of file linear-function.hpp.
|
inlineoverridevirtual |
Compute Jacobians of this function.
This implementation does nothing: the values of the Jacobians are already set in createData().
Implements aligator::StageFunctionTpl< Scalar >.
Definition at line 45 of file linear-function.hpp.
|
inlineoverridevirtual |
Instantiate a Data object.
This override sets the appropriate values of the Jacobians.
Reimplemented from aligator::StageFunctionTpl< Scalar >.
Definition at line 53 of file linear-function.hpp.
MatrixXs aligator::LinearFunctionTpl< Scalar >::A_ |
Definition at line 15 of file linear-function.hpp.
MatrixXs aligator::LinearFunctionTpl< Scalar >::B_ |
Definition at line 16 of file linear-function.hpp.
VectorXs aligator::LinearFunctionTpl< Scalar >::d_ |
Definition at line 17 of file linear-function.hpp.