17template <
typename _Scalar>
32 xyz::polymorphic<StageFunction> function,
33 const ConstMatrixRef &weights);
35 void evaluate(
const ConstVectorRef &x,
const ConstVectorRef &u,
45 return std::make_shared<Data>(this->
ndx(), this->
nu,
52 return dynamic_cast<Derived *
>(&*
residual_);
56 template <
typename Derived>
const Derived *
getResidual()
const {
57 return dynamic_cast<const Derived *
>(&*
residual_);
61extern template struct QuadraticResidualCostTpl<context::Scalar>;
65#include "./quad-residual-cost.hxx"
Data struct for composite costs.
xyz::polymorphic< Manifold > space
CostAbstractTpl(U &&space, const int nu)
Data struct for CostAbstractTpl.
CostAbstractTpl< Scalar > Base
void evaluate(const ConstVectorRef &x, const ConstVectorRef &u, CostData &data_) const
Evaluate the cost function.
ManifoldAbstractTpl< Scalar > Manifold
ALIGATOR_DYNAMIC_TYPEDEFS(Scalar)
void computeGradients(const ConstVectorRef &x, const ConstVectorRef &u, CostData &data_) const
Compute the cost gradients .
shared_ptr< CostData > createData() const
Derived * getResidual()
Get a pointer to the underlying type of the residual, by attempting to cast.
void computeHessians(const ConstVectorRef &x, const ConstVectorRef &u, CostData &data_) const
Compute the cost Hessians .
StageFunctionTpl< Scalar > StageFunction
xyz::polymorphic< StageFunction > residual_
CostDataAbstractTpl< Scalar > CostData
const Derived * getResidual() const
Get a pointer to the underlying type of the residual, by attempting to cast.
CompositeCostDataTpl< Scalar > Data
QuadraticResidualCostTpl(xyz::polymorphic< Manifold > space, xyz::polymorphic< StageFunction > function, const ConstMatrixRef &weights)
Class representing ternary functions .