8#include <eigenpy/optional.hpp>
14#ifdef ALIGATOR_WITH_CROCODDYL_COMPAT
15void exposeCrocoddylCompat();
21 bp::enum_<MultiplierUpdateMode>(
22 "MultiplierUpdateMode",
"Enum for the kind of multiplier update to use.")
27 bp::enum_<LinesearchMode>(
"LinesearchMode",
"Linesearch mode.")
31 bp::enum_<RolloutType>(
"RolloutType",
"Rollout type.")
36 bp::enum_<HessianApprox>(
"HessianApprox",
37 "Level of approximation for the Hessian.")
43 bp::enum_<StepAcceptanceStrategy>(
"StepAcceptanceStrategy",
44 "Step acceptance strategy.")
46 .value(
"SA_LINESEARCH_NONMONOTONE",
53 StdVectorPythonVisitor<std::vector<long>,
true>::expose(
"StdVec_long");
54 eigenpy::exposeStdVectorEigenSpecificType<context::Vector3s>(
56 StdVectorPythonVisitor<std::vector<bool>,
true>::expose(
"StdVec_bool");
64 using aligator::context::ConstVectorRef;
66 bp::docstring_options module_docstring_options(
true,
true,
true);
68 bp::scope().attr(
"__version__") = ALIGATOR_VERSION;
69#ifdef ALIGATOR_MULTITHREADING
71 "Get the number of available threads.");
73 "Get the current number of threads.");
75 (
"num_threads"_a,
"dynamic"_a =
true));
77 eigenpy::enableEigenPy();
79 eigenpy::OptionalConverter<ConstVectorRef, std::optional>::registration();
80 eigenpy::detail::NoneToPython<std::nullopt_t>::registration();
82 bp::import(
"warnings");
83 bp::import(
"proxsuite_nlp");
86 "has_pinocchio_features",
87 +[]()
constexpr ->
bool {
89#ifdef ALIGATOR_WITH_PINOCCHIO
95 "Whether Aligator (and its Python bindings) were compiled with support "
109 bp::scope
dynamics = get_namespace(
"dynamics");
121#ifdef ALIGATOR_WITH_PINOCCHIO
122 exposePinocchioFeatures();
125#ifdef ALIGATOR_WITH_CROCODDYL_COMPAT
127 bp::scope croc_ns = get_namespace(
"croc");
128 exposeCrocoddylCompat();
BOOST_PYTHON_MODULE(MODULE_NAME)
Namespace for modelling system dynamics.
std::size_t get_current_threads()
Get the current number of threads.
void set_default_options(std::size_t, bool=true)
std::size_t get_available_threads()
void exposeGAR()
Expose GAR module.
void exposeConstraint()
Expose constraints.
void exposeStage()
Expose StageModel and StageData.
static void exposeEnums()
static void exposeContainers()
void exposeCosts()
Expose cost functions.
void exposeSolvers()
Expose solvers.
void exposeDynamics()
Expose discrete dynamics.
void exposeIntegrators()
Expose numerical integrators.
void exposeCallbacks()
Expose solver callbacks.
void exposeProblem()
Expose TrajOptProblem.
void exposeContinuousDynamics()
Expose continuous dynamics.
void exposeAutodiff()
Expose autodiff helpers.
void exposeFunctions()
Expose stagewise function classes.
void exposeExplicitIntegrators()
bool register_enum_symlink(bool export_values)
@ NONLINEAR
Nonlinear rollout, using the full dynamics.
@ GAUSS_NEWTON
Use the Gauss-Newton approximation.
@ BFGS
Use a BFGS-type approximation.
@ EXACT
Use exact Hessian.