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
8f52b6ad
Verified
Commit
8f52b6ad
authored
Apr 21, 2020
by
Justin Carpentier
Browse files
algo/joint-config: minor fix
parent
fa24c342
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/algorithm/joint-configuration.hpp
View file @
8f52b6ad
...
...
@@ -415,10 +415,10 @@ namespace pinocchio
*/
template
<
typename
LieGroup_t
,
typename
Scalar
,
int
Options
,
template
<
typename
,
int
>
class
JointCollectionTpl
,
typename
ConfigVectorType
,
typename
TangentVectorType
,
typename
JacobianMatrixType
>
void
dIntegrateTransport
(
const
ModelTpl
<
Scalar
,
Options
,
JointCollectionTpl
>
&
model
,
const
Eigen
::
MatrixBase
<
ConfigVectorType
>
&
q
,
const
Eigen
::
MatrixBase
<
TangentVectorType
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianMatrixType
>
&
J
,
const
ArgumentPosition
arg
);
const
Eigen
::
MatrixBase
<
ConfigVectorType
>
&
q
,
const
Eigen
::
MatrixBase
<
TangentVectorType
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianMatrixType
>
&
J
,
const
ArgumentPosition
arg
);
/**
*
...
...
@@ -438,12 +438,12 @@ namespace pinocchio
*/
template
<
typename
Scalar
,
int
Options
,
template
<
typename
,
int
>
class
JointCollectionTpl
,
typename
ConfigVectorType
,
typename
TangentVectorType
,
typename
JacobianMatrixType
>
void
dIntegrateTransport
(
const
ModelTpl
<
Scalar
,
Options
,
JointCollectionTpl
>
&
model
,
const
Eigen
::
MatrixBase
<
ConfigVectorType
>
&
q
,
const
Eigen
::
MatrixBase
<
TangentVectorType
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianMatrixType
>
&
J
,
const
ArgumentPosition
arg
)
const
Eigen
::
MatrixBase
<
ConfigVectorType
>
&
q
,
const
Eigen
::
MatrixBase
<
TangentVectorType
>
&
v
,
const
Eigen
::
MatrixBase
<
JacobianMatrixType
>
&
J
,
const
ArgumentPosition
arg
)
{
dIntegrateTransport
InPlace
<
LieGroupMap
,
Scalar
,
Options
,
JointCollectionTpl
,
ConfigVectorType
,
TangentVectorType
,
JacobianMatrixType
>
(
model
,
q
.
derived
(),
v
.
derived
(),
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianMatrixType
,
J
),
arg
);
dIntegrateTransport
<
LieGroupMap
,
Scalar
,
Options
,
JointCollectionTpl
,
ConfigVectorType
,
TangentVectorType
,
JacobianMatrixType
>
(
model
,
q
.
derived
(),
v
.
derived
(),
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianMatrixType
,
J
),
arg
);
}
/**
...
...
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