aligator  0.12.0
A primal-dual augmented Lagrangian-type solver for nonlinear trajectory optimization.
 
Loading...
Searching...
No Matches
relaxed-log-barrier.hpp
Go to the documentation of this file.
1
3#pragma once
4
6
7namespace aligator {
8
10template <typename Scalar>
17 using Manifold = ManifoldAbstractTpl<Scalar>;
18
20 xyz::polymorphic<StageFunction> residual_;
22
23 RelaxedLogBarrierCostTpl(xyz::polymorphic<Manifold> space,
24 xyz::polymorphic<StageFunction> function,
25 const ConstVectorRef &weight,
26 const Scalar threshold);
27
28 RelaxedLogBarrierCostTpl(xyz::polymorphic<Manifold> space,
29 xyz::polymorphic<StageFunction> function,
30 const Scalar weight, const Scalar threshold);
31
32 void evaluate(const ConstVectorRef &x, const ConstVectorRef &u,
33 CostDataAbstract &data) const;
34
35 void computeGradients(const ConstVectorRef &x, const ConstVectorRef &u,
36 CostDataAbstract &data) const;
37
38 void computeHessians(const ConstVectorRef &, const ConstVectorRef &,
39 CostDataAbstract &data) const;
40
41 shared_ptr<CostDataAbstract> createData() const {
42 return std::make_shared<Data>(this->ndx(), this->nu,
43 residual_->createData());
44 }
45
48 template <typename Derived> Derived *getResidual() {
49 return dynamic_cast<Derived *>(&*residual_);
50 }
51
53 template <typename Derived> const Derived *getResidual() const {
54 return dynamic_cast<const Derived *>(&*residual_);
55 }
56};
57
58extern template struct RelaxedLogBarrierCostTpl<context::Scalar>;
59
60} // namespace aligator
61
62#include "./relaxed-log-barrier.hxx"
Main package namespace.
Data struct for composite costs.
xyz::polymorphic< Manifold > space
CostAbstractTpl(U &&space, const int nu)
Data struct for CostAbstractTpl.
void computeHessians(const ConstVectorRef &, const ConstVectorRef &, CostDataAbstract &data) const
Compute the cost Hessians .
Derived * getResidual()
Get a pointer to the underlying type of the residual, by attempting to cast.
RelaxedLogBarrierCostTpl(xyz::polymorphic< Manifold > space, xyz::polymorphic< StageFunction > function, const ConstVectorRef &weight, const Scalar threshold)
void computeGradients(const ConstVectorRef &x, const ConstVectorRef &u, CostDataAbstract &data) const
Compute the cost gradients .
CompositeCostDataTpl< Scalar > Data
void evaluate(const ConstVectorRef &x, const ConstVectorRef &u, CostDataAbstract &data) const
Evaluate the cost function.
xyz::polymorphic< StageFunction > residual_
shared_ptr< CostDataAbstract > createData() const
ManifoldAbstractTpl< Scalar > Manifold
CostDataAbstractTpl< Scalar > CostDataAbstract
StageFunctionTpl< Scalar > StageFunction
const Derived * getResidual() const
Get a pointer to the underlying type of the residual, by attempting to cast.
RelaxedLogBarrierCostTpl(xyz::polymorphic< Manifold > space, xyz::polymorphic< StageFunction > function, const Scalar weight, const Scalar threshold)
Class representing ternary functions .