9#include <fmt/ostream.h>
13#define ALIGATOR_CHECK_DERIVED_CLASS(Base, Derived) \
14 static_assert((std::is_base_of_v<Base, Derived>), \
15 "Failed check for derived class.")
37#pragma GCC diagnostic push
38#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
40#pragma GCC diagnostic pop
59 return dynamic_cast<U *
>(&*
cost_);
63 template <
typename U>
const U *
getCost()
const {
65 return dynamic_cast<const U *
>(&*
cost_);
77 return dynamic_cast<const U *
>(&*
dynamics_);
112 template <
typename Cstr,
typename = std::enable_if_t<std::is_same_v<
125 virtual void evaluate(
const ConstVectorRef &x,
const ConstVectorRef &u,
126 const ConstVectorRef &y,
Data &data)
const;
130 const ConstVectorRef &u,
131 const ConstVectorRef &y,
136 const ConstVectorRef &u,
144 oss <<
"StageModel { ";
146 oss <<
"ndx: " << stage.
ndx1() <<
", "
147 <<
"nu: " << stage.
nu();
149 oss <<
"ndx1:" << stage.
ndx1() <<
", "
150 <<
"nu: " << stage.
nu() <<
", "
151 <<
"ndx2:" << stage.
ndx2();
164template <
typename Scalar>
165template <
typename Cstr,
typename>
167 const int c_nu = cstr.func->nu;
168 if (c_nu != this->
nu()) {
170 "Function has the wrong dimension for u: got {:d}, expected {:d}", c_nu,
178template <
typename Scalar>
179struct fmt::formatter<
aligator::StageModelTpl<Scalar>>
180 : fmt::ostream_formatter {};
182#ifdef ALIGATOR_ENABLE_TEMPLATE_INSTANTIATION
183#include "aligator/core/stage-model.txx"
Defines the constraint object and constraint stack manager for this library.
#define ALIGATOR_RUNTIME_ERROR(...)
Base definitions for ternary functions.
Namespace for modelling system dynamics.
#define ALIGATOR_CHECK_DERIVED_CLASS(Base, Derived)
Convenience class to manage a stack of constraints.
Stage costs for control problems.
Dynamics model: describes system dynamics through an implicit relation .
Simple struct holding together a function and set, to describe a constraint.
Data struct for stage models StageModelTpl.
virtual ~StageModelTpl()=default
friend std::ostream & operator<<(std::ostream &oss, const StageModelTpl &stage)
PolyManifold xspace_next_
virtual void computeFirstOrderDerivatives(const ConstVectorRef &x, const ConstVectorRef &u, const ConstVectorRef &y, Data &data) const
Compute the first-order derivatives of the StageModelTpl.
const U * getCost() const
CostAbstractTpl< Scalar > Cost
StageConstraintTpl< Scalar > StageConstraint
U * getDynamics()
Get a pointer to an expected concrete type for the dynamics class.
virtual bool hasDynModel() const
virtual void computeSecondOrderDerivatives(const ConstVectorRef &x, const ConstVectorRef &u, Data &data) const
Compute the second-order derivatives of the StageModelTpl.
const Manifold & xspace_next() const
ALIGATOR_DEPRECATED void addConstraint(Cstr &&cstr)
Add a constraint to the stage.
ManifoldAbstractTpl< Scalar > Manifold
ALIGATOR_DYNAMIC_TYPEDEFS(Scalar)
xyz::polymorphic< Cost > PolyCost
xyz::polymorphic< Manifold > PolyManifold
ConstraintStackTpl< Scalar > constraints_
const Cost & cost() const
DynamicsModelTpl< Scalar > Dynamics
StageModelTpl(const PolyCost &cost, const PolyDynamics &dynamics)
virtual shared_ptr< Data > createData() const
Create a StageData object.
xyz::polymorphic< ConstraintSetTpl< Scalar > > PolyConstraintSet
const Manifold & uspace() const
xyz::polymorphic< Dynamics > PolyDynamics
StageDataTpl< Scalar > Data
int numDual() const
Number of dual variables, i.e. Lagrange multipliers.
void addConstraint(const PolyFunction &func, const PolyConstraintSet &cstr_set)
Add a constraint to the stage.
const U * getDynamics() const
U * getCost()
Get a pointer to an expected concrete type for the cost function.
std::size_t numConstraints() const
Number of constraint objects.
int numPrimal() const
Number of primal optimization variables.
xyz::polymorphic< StageFunctionTpl< Scalar > > PolyFunction
const Manifold & xspace() const
virtual void evaluate(const ConstVectorRef &x, const ConstVectorRef &u, const ConstVectorRef &y, Data &data) const
Evaluate all the functions (cost, dynamics, constraints) at this node.
int nc() const
Total number of constraints.