Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
pinocchio
Commits
dabc979d
Verified
Commit
dabc979d
authored
Apr 25, 2020
by
Guilhem Saurel
Committed by
Justin Carpentier
May 12, 2020
Browse files
fix dIntegrate API changes
parent
8a6901e8
Changes
6
Hide whitespace changes
Inline
Side-by-side
src/algorithm/joint-configuration.hpp
View file @
dabc979d
...
...
@@ -284,7 +284,7 @@ namespace pinocchio
const
Eigen
::
MatrixBase
<
TangentVectorType
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianMatrixType
>
&
J
,
const
ArgumentPosition
arg
,
const
AssignmentOperatorType
op
);
const
AssignmentOperatorType
op
=
SETTO
);
/**
*
...
...
src/multibody/liegroup/cartesian-product.hpp
View file @
dabc979d
...
...
@@ -126,7 +126,7 @@ namespace pinocchio
void
dIntegrate_dq_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
q
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
const
AssignmentOperatorType
op
=
SETTO
)
const
{
switch
(
op
)
{
...
...
@@ -154,7 +154,7 @@ namespace pinocchio
void
dIntegrate_dv_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
q
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
const
AssignmentOperatorType
op
=
SETTO
)
const
{
switch
(
op
)
{
...
...
src/multibody/liegroup/liegroup-base.hpp
View file @
dabc979d
...
...
@@ -135,7 +135,7 @@ PINOCCHIO_LIE_GROUP_PUBLIC_INTERFACE_GENERIC(Derived,typename)
void
dIntegrate_dq
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
q
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
;
const
AssignmentOperatorType
op
=
SETTO
)
const
;
/**
* @brief Computes the Jacobian of a small variation of the tangent vector into tangent space at identity.
...
...
@@ -152,7 +152,7 @@ PINOCCHIO_LIE_GROUP_PUBLIC_INTERFACE_GENERIC(Derived,typename)
void
dIntegrate_dv
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
q
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
;
const
AssignmentOperatorType
op
=
SETTO
)
const
;
/**
...
...
src/multibody/liegroup/special-euclidean.hpp
View file @
dabc979d
...
...
@@ -296,7 +296,7 @@ namespace pinocchio
static
void
dIntegrate_dq_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
/*q*/
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>&
J
,
const
AssignmentOperatorType
op
)
const
AssignmentOperatorType
op
=
SETTO
)
{
JacobianOut_t
&
Jout
=
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianOut_t
,
J
);
...
...
@@ -311,7 +311,7 @@ namespace pinocchio
static
void
dIntegrate_dv_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
/*q*/
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
AssignmentOperatorType
op
=
SETTO
)
{
JacobianOut_t
&
Jout
=
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianOut_t
,
J
);
// TODO sparse version
...
...
@@ -651,7 +651,7 @@ namespace pinocchio
static
void
dIntegrate_dq_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
/*q*/
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>&
J
,
const
AssignmentOperatorType
op
)
const
AssignmentOperatorType
op
=
SETTO
)
{
JacobianOut_t
&
Jout
=
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianOut_t
,
J
);
...
...
@@ -676,7 +676,7 @@ namespace pinocchio
static
void
dIntegrate_dv_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
/*q*/
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>&
J
,
const
AssignmentOperatorType
op
)
const
AssignmentOperatorType
op
=
SETTO
)
{
switch
(
op
)
{
...
...
src/multibody/liegroup/special-orthogonal.hpp
View file @
dabc979d
...
...
@@ -191,7 +191,7 @@ namespace pinocchio
static
void
dIntegrate_dq_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
/*q*/
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
/*v*/
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
AssignmentOperatorType
op
=
SETTO
)
{
JacobianOut_t
&
Jout
=
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianOut_t
,
J
);
switch
(
op
)
...
...
@@ -215,7 +215,7 @@ namespace pinocchio
static
void
dIntegrate_dv_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
/*q*/
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
/*v*/
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
AssignmentOperatorType
op
=
SETTO
)
{
JacobianOut_t
&
Jout
=
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianOut_t
,
J
);
switch
(
op
)
...
...
@@ -449,7 +449,7 @@ namespace pinocchio
static
void
dIntegrate_dq_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
/*q*/
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
AssignmentOperatorType
op
=
SETTO
)
{
JacobianOut_t
&
Jout
=
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianOut_t
,
J
);
switch
(
op
)
...
...
@@ -473,7 +473,7 @@ namespace pinocchio
static
void
dIntegrate_dv_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
/*q*/
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
AssignmentOperatorType
op
=
SETTO
)
{
switch
(
op
)
{
...
...
src/multibody/liegroup/vector-space.hpp
View file @
dabc979d
...
...
@@ -106,7 +106,7 @@ namespace pinocchio
static
void
dIntegrate_dq_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
/*q*/
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
/*v*/
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
AssignmentOperatorType
op
=
SETTO
)
{
Eigen
::
MatrixBase
<
JacobianOut_t
>&
Jout
=
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianOut_t
,
J
);
switch
(
op
)
...
...
@@ -130,7 +130,7 @@ namespace pinocchio
static
void
dIntegrate_dv_impl
(
const
Eigen
::
MatrixBase
<
Config_t
>
&
/*q*/
,
const
Eigen
::
MatrixBase
<
Tangent_t
>
&
/*v*/
,
const
Eigen
::
MatrixBase
<
JacobianOut_t
>
&
J
,
const
AssignmentOperatorType
op
)
const
AssignmentOperatorType
op
=
SETTO
)
{
Eigen
::
MatrixBase
<
JacobianOut_t
>&
Jout
=
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianOut_t
,
J
);
switch
(
op
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment