Directory: | ./ |
---|---|
File: | bindings/python/crocoddyl/core/activations/smooth-1norm.cpp |
Date: | 2025-03-26 19:23:43 |
Exec | Total | Coverage | |
---|---|---|---|
Lines: | 13 | 13 | 100.0% |
Branches: | 37 | 74 | 50.0% |
Line | Branch | Exec | Source |
---|---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | ||
2 | // BSD 3-Clause License | ||
3 | // | ||
4 | // Copyright (C) 2019-2025, LAAS-CNRS, University of Edinburgh | ||
5 | // Heriot-Watt University | ||
6 | // Copyright note valid unless otherwise stated in individual files. | ||
7 | // All rights reserved. | ||
8 | /////////////////////////////////////////////////////////////////////////////// | ||
9 | |||
10 | #include "crocoddyl/core/activations/smooth-1norm.hpp" | ||
11 | |||
12 | #include "python/crocoddyl/core/activation-base.hpp" | ||
13 | #include "python/crocoddyl/core/core.hpp" | ||
14 | |||
15 | namespace crocoddyl { | ||
16 | namespace python { | ||
17 | |||
18 | template <typename Model> | ||
19 | struct ActivationModelSmooth1NormVisitor | ||
20 | : public bp::def_visitor<ActivationModelSmooth1NormVisitor<Model>> { | ||
21 | typedef typename Model::Scalar Scalar; | ||
22 | template <class PyClass> | ||
23 | 40 | void visit(PyClass& cl) const { | |
24 | 40 | cl.def("calc", &Model::calc, bp::args("self", "data", "r"), | |
25 | "Compute the smooth-abs function.\n\n" | ||
26 | ":param data: activation data\n" | ||
27 | ":param r: residual vector") | ||
28 |
2/4✓ Branch 1 taken 20 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 20 times.
✗ Branch 5 not taken.
|
80 | .def("calcDiff", &Model::calcDiff, bp::args("self", "data", "r"), |
29 | "Compute the derivatives of a smooth-abs function.\n\n" | ||
30 | "It assumes that calc has been run first.\n" | ||
31 | ":param data: activation data\n" | ||
32 | ":param r: residual vector \n") | ||
33 |
3/6✓ Branch 1 taken 20 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 20 times.
✗ Branch 5 not taken.
✓ Branch 7 taken 20 times.
✗ Branch 8 not taken.
|
40 | .def("createData", &Model::createData, bp::args("self"), |
34 | "Create the smooth-abs activation data.\n\n"); | ||
35 | 40 | } | |
36 | }; | ||
37 | |||
38 | template <typename Data> | ||
39 | struct ActivationDataSmooth1NormVisitor | ||
40 | : public bp::def_visitor<ActivationDataSmooth1NormVisitor<Data>> { | ||
41 | typedef typename Data::Scalar Scalar; | ||
42 | template <class PyClass> | ||
43 | 40 | void visit(PyClass& cl) const { | |
44 |
2/4✓ Branch 1 taken 20 times.
✗ Branch 2 not taken.
✓ Branch 4 taken 20 times.
✗ Branch 5 not taken.
|
40 | cl.add_property( |
45 | 40 | "a", bp::make_getter(&Data::a, bp::return_internal_reference<>()), | |
46 | "sqrt{eps + ||ri||^2} value"); | ||
47 | 40 | } | |
48 | }; | ||
49 | |||
50 | #define CROCODDYL_ACTIVATION_MODEL_SMOOTH1NORM_PYTHON_BINDINGS(Scalar) \ | ||
51 | typedef ActivationModelSmooth1NormTpl<Scalar> Model; \ | ||
52 | typedef ActivationModelAbstractTpl<Scalar> ModelBase; \ | ||
53 | bp::register_ptr_to_python<std::shared_ptr<Model>>(); \ | ||
54 | bp::class_<Model, bp::bases<ModelBase>>( \ | ||
55 | "ActivationModelSmooth1Norm", \ | ||
56 | "Smooth-absolute activation model.\n\n" \ | ||
57 | "It describes a smooth representation of an absolute activation " \ | ||
58 | "(1-norm), i.e., sum^nr_{i=0} sqrt{eps + ||ri||^2}, where ri is the " \ | ||
59 | "scalar residual for the i constraints, and nr is the dimension of the " \ | ||
60 | "residual vector.", \ | ||
61 | bp::init<std::size_t, bp::optional<Scalar>>( \ | ||
62 | bp::args("self", "nr", "eps"), \ | ||
63 | "Initialize the activation model.\n\n" \ | ||
64 | ":param nr: dimension of the residual vector\n" \ | ||
65 | ":param eps: smoothing factor (default: 1.)")) \ | ||
66 | .def(ActivationModelSmooth1NormVisitor<Model>()) \ | ||
67 | .def(CastVisitor<Model>()) \ | ||
68 | .def(PrintableVisitor<Model>()) \ | ||
69 | .def(CopyableVisitor<Model>()); | ||
70 | |||
71 | #define CROCODDYL_ACTIVATION_DATA_SMOOTH1NORM_PYTHON_BINDINGS(Scalar) \ | ||
72 | typedef ActivationDataSmooth1NormTpl<Scalar> Data; \ | ||
73 | typedef ActivationDataAbstractTpl<Scalar> DataBase; \ | ||
74 | typedef ActivationModelSmooth1NormTpl<Scalar> Model; \ | ||
75 | bp::register_ptr_to_python<std::shared_ptr<Data>>(); \ | ||
76 | bp::class_<Data, bp::bases<DataBase>>( \ | ||
77 | "ActivationDataSmooth1Norm", "Data for smooth-abs activation.\n\n", \ | ||
78 | bp::init<Model*>(bp::args("self", "model"), \ | ||
79 | "Create smooth-abs activation data.\n\n" \ | ||
80 | ":param model: smooth-abs activation model")) \ | ||
81 | .def(ActivationDataSmooth1NormVisitor<Data>()) \ | ||
82 | .def(CopyableVisitor<Data>()); | ||
83 | |||
84 | 10 | void exposeActivationSmooth1Norm() { | |
85 |
17/34✓ Branch 3 taken 10 times.
✗ Branch 4 not taken.
✓ Branch 6 taken 10 times.
✗ Branch 7 not taken.
✓ Branch 9 taken 10 times.
✗ Branch 10 not taken.
✓ Branch 12 taken 10 times.
✗ Branch 13 not taken.
✓ Branch 15 taken 10 times.
✗ Branch 16 not taken.
✓ Branch 18 taken 10 times.
✗ Branch 19 not taken.
✓ Branch 24 taken 10 times.
✗ Branch 25 not taken.
✓ Branch 27 taken 10 times.
✗ Branch 28 not taken.
✓ Branch 30 taken 10 times.
✗ Branch 31 not taken.
✓ Branch 35 taken 10 times.
✗ Branch 36 not taken.
✓ Branch 38 taken 10 times.
✗ Branch 39 not taken.
✓ Branch 41 taken 10 times.
✗ Branch 42 not taken.
✓ Branch 44 taken 10 times.
✗ Branch 45 not taken.
✓ Branch 47 taken 10 times.
✗ Branch 48 not taken.
✓ Branch 50 taken 10 times.
✗ Branch 51 not taken.
✓ Branch 53 taken 10 times.
✗ Branch 54 not taken.
✓ Branch 56 taken 10 times.
✗ Branch 57 not taken.
|
20 | CROCODDYL_PYTHON_SCALARS( |
86 | CROCODDYL_ACTIVATION_MODEL_SMOOTH1NORM_PYTHON_BINDINGS) | ||
87 |
13/26✓ Branch 3 taken 10 times.
✗ Branch 4 not taken.
✓ Branch 6 taken 10 times.
✗ Branch 7 not taken.
✓ Branch 9 taken 10 times.
✗ Branch 10 not taken.
✓ Branch 12 taken 10 times.
✗ Branch 13 not taken.
✓ Branch 18 taken 10 times.
✗ Branch 19 not taken.
✓ Branch 21 taken 10 times.
✗ Branch 22 not taken.
✓ Branch 24 taken 10 times.
✗ Branch 25 not taken.
✓ Branch 29 taken 10 times.
✗ Branch 30 not taken.
✓ Branch 32 taken 10 times.
✗ Branch 33 not taken.
✓ Branch 35 taken 10 times.
✗ Branch 36 not taken.
✓ Branch 38 taken 10 times.
✗ Branch 39 not taken.
✓ Branch 41 taken 10 times.
✗ Branch 42 not taken.
✓ Branch 44 taken 10 times.
✗ Branch 45 not taken.
|
20 | CROCODDYL_PYTHON_SCALARS( |
88 | CROCODDYL_ACTIVATION_DATA_SMOOTH1NORM_PYTHON_BINDINGS) | ||
89 | 10 | } | |
90 | |||
91 | } // namespace python | ||
92 | } // namespace crocoddyl | ||
93 |