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
d875192f
Unverified
Commit
d875192f
authored
Jul 16, 2019
by
Justin Carpentier
Committed by
GitHub
Jul 16, 2019
Browse files
Merge pull request #834 from jcarpent/devel
test: fix serialization for JointModelRevoluteUnboundedUnalignedTpl
parents
82ce106f
669136b0
Changes
2
Hide whitespace changes
Inline
Side-by-side
.travis.yml
View file @
d875192f
...
...
@@ -16,6 +16,7 @@ env:
-
DO_CPPCHECK_ON_BRANCH=""
-
DO_INSTALL_DOC_EXCEPT_ON_BRANCH=""
-
BUILDTYPE=MinSizeRel
-
BUILD_WITH_CATKIN_SUPPORT=false
notifications
:
email
:
...
...
unittest/serialization.cpp
View file @
d875192f
...
...
@@ -119,6 +119,21 @@ struct init<pinocchio::JointModelRevoluteUnalignedTpl<Scalar,Options> >
}
};
template
<
typename
Scalar
,
int
Options
>
struct
init
<
pinocchio
::
JointModelRevoluteUnboundedUnalignedTpl
<
Scalar
,
Options
>
>
{
typedef
pinocchio
::
JointModelRevoluteUnboundedUnalignedTpl
<
Scalar
,
Options
>
JointModel
;
static
JointModel
run
()
{
typedef
typename
JointModel
::
Vector3
Vector3
;
JointModel
jmodel
(
Vector3
::
Random
().
normalized
());
jmodel
.
setIndexes
(
0
,
0
,
0
);
return
jmodel
;
}
};
template
<
typename
Scalar
,
int
Options
>
struct
init
<
pinocchio
::
JointModelPrismaticUnalignedTpl
<
Scalar
,
Options
>
>
{
...
...
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