aligator  0.12.0
A primal-dual augmented Lagrangian-type solver for nonlinear trajectory optimization.
 
Loading...
Searching...
No Matches
expose-composite-costs.cpp
Go to the documentation of this file.
3
8
9namespace aligator {
10namespace python {
11using context::ConstMatrixRef;
12using context::ConstVectorRef;
16using context::MatrixXs;
17using context::Scalar;
19using PolyFunction = xyz::polymorphic<StageFunction>;
20using PolyManifold = xyz::polymorphic<Manifold>;
22
24
25 using CompositeData = CompositeCostDataTpl<Scalar>;
26 using QuadStateCost = QuadraticStateCostTpl<Scalar>;
27 using QuadControlCost = QuadraticControlCostTpl<Scalar>;
28 using LogResCost = LogResidualCostTpl<Scalar>;
29 using RelaxedLogCost = RelaxedLogBarrierCostTpl<Scalar>;
30
32 bp::class_<QuadResCost, bp::bases<CostAbstract>>(
33 "QuadraticResidualCost", "Weighted 2-norm of a given residual function.",
34 bp::init<PolyManifold, PolyFunction, const ConstMatrixRef &>(
35 bp::args("self", "space", "function", "weights")))
36 .def_readwrite("residual", &QuadResCost::residual_)
37 .def_readwrite("weights", &QuadResCost::weights_)
39 .def(visitor);
40
41 bp::class_<LogResCost, bp::bases<CostAbstract>>(
42 "LogResidualCost", "Weighted log-cost composite cost.",
43 bp::init<PolyManifold, PolyFunction, const ConstVectorRef &>(
44 bp::args("self", "space", "function", "barrier_weights")))
45 .def(bp::init<PolyManifold, PolyFunction, Scalar>(
46 bp::args("self", "function", "scale")))
47 .def_readwrite("residual", &LogResCost::residual_)
48 .def_readwrite("weights", &LogResCost::barrier_weights_)
50 .def(visitor);
51
52 bp::class_<RelaxedLogCost, bp::bases<CostAbstract>>(
53 "RelaxedLogBarrierCost", "Relaxed log-barrier composite cost.",
54 bp::init<PolyManifold, PolyFunction, const ConstVectorRef &,
55 const Scalar>(
56 bp::args("self", "space", "function", "weights", "threshold")))
57 .def(bp::init<PolyManifold, PolyFunction, const Scalar, const Scalar>(
58 bp::args("self", "space", "function", "weights", "threshold")))
59 .def_readwrite("residual", &RelaxedLogCost::residual_)
60 .def_readwrite("weights", &RelaxedLogCost::barrier_weights_)
62 .def(visitor);
63
64 bp::class_<CompositeData, bp::bases<CostData>>(
65 "CompositeCostData",
66 bp::init<int, int, shared_ptr<context::StageFunctionData>>(
67 bp::args("self", "ndx", "nu", "rdata")))
68 .def_readwrite("residual_data", &CompositeData::residual_data);
69
70 bp::class_<QuadStateCost, bp::bases<QuadResCost>>(
71 "QuadraticStateCost",
72 "Quadratic distance over the state manifold. This is a shortcut to "
73 "create a `QuadraticResidualCost` over a state error residual.",
74 bp::no_init)
75 .def(bp::init<QuadStateCost::StateError &, const MatrixXs &>(
76 bp::args("self", "resdl", "weights")))
77 .def(bp::init<PolyManifold, const int, const ConstVectorRef &,
78 const MatrixXs &>(
79 bp::args("self", "space", "nu", "target", "weights")))
80 .add_property("target", &QuadStateCost::getTarget,
81 &QuadStateCost::setTarget,
82 "Target of the quadratic distance.")
83 .def(visitor);
84
85 bp::class_<QuadControlCost, bp::bases<QuadResCost>>(
86 "QuadraticControlCost", "Quadratic control cost.", bp::no_init)
87 .def(bp::init<PolyManifold, ConstVectorRef, const MatrixXs &>(
88 bp::args("space", "target", "weights")))
89 .def(bp::init<PolyManifold, QuadControlCost::Error, const MatrixXs &>(
90 bp::args("self", "space", "resdl", "weights")))
91 .def(bp::init<PolyManifold, int, const MatrixXs &>(
92 bp::args("space", "nu", "weights")))
93 .add_property("target", &QuadControlCost::getTarget,
94 &QuadControlCost::setTarget,
95 "Reference of the control cost.")
96 .def(visitor);
97}
98} // namespace python
99} // namespace aligator
CostAbstractTpl< Scalar > CostAbstract
Definition context.hpp:25
ManifoldAbstractTpl< Scalar > Manifold
Definition context.hpp:14
StageFunctionTpl< Scalar > StageFunction
Definition context.hpp:16
CostDataAbstractTpl< Scalar > CostData
Definition context.hpp:26
The Python bindings.
Definition blk-matrix.hpp:5
xyz::polymorphic< StageFunction > PolyFunction
void exposeComposites()
Composite cost functions.
QuadraticResidualCostTpl< Scalar > QuadResCost
xyz::polymorphic< Manifold > PolyManifold
Main package namespace.
Data struct for composite costs.
Log-barrier of an underlying cost function.
Quadratic composite of an underlying function.
xyz::polymorphic< StageFunction > residual_
Quadratic distance cost over the state manifold.
Log-barrier of an underlying cost function.