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
7a1c5682
Commit
7a1c5682
authored
Jun 18, 2020
by
Joseph Mirabel
Browse files
Fix wrong asserts.
parent
7d7b8fad
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/multibody/liegroup/liegroup-base.hxx
View file @
7a1c5682
...
...
@@ -110,9 +110,9 @@ namespace pinocchio {
PINOCCHIO_UNUSED_VARIABLE
(
self
);
EIGEN_STATIC_ASSERT_SAME_VECTOR_SIZE
(
Config_t
,
ConfigVector_t
);
EIGEN_STATIC_ASSERT_SAME_VECTOR_SIZE
(
Tangent_t
,
TangentVector_t
);
assert
(
Jin
.
col
s
()
==
nv
());
assert
(
Jout
.
col
s
()
==
nv
());
assert
(
Jout
.
row
s
()
==
Jin
.
row
s
());
assert
(
Jin
.
row
s
()
==
nv
());
assert
(
Jout
.
row
s
()
==
nv
());
assert
(
Jout
.
col
s
()
==
Jin
.
col
s
());
derived
().
dIntegrate_product_impl
(
q
.
derived
(),
v
.
derived
(),
Jin
.
derived
(),
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianOut_t
,
Jout
),
...
...
@@ -171,9 +171,9 @@ namespace pinocchio {
PINOCCHIO_UNUSED_VARIABLE
(
self
);
EIGEN_STATIC_ASSERT_SAME_VECTOR_SIZE
(
Config_t
,
ConfigVector_t
);
EIGEN_STATIC_ASSERT_SAME_VECTOR_SIZE
(
Tangent_t
,
TangentVector_t
);
assert
(
Jin
.
col
s
()
==
nv
());
assert
(
Jout
.
col
s
()
==
nv
());
assert
(
Jout
.
row
s
()
==
Jin
.
row
s
());
assert
(
Jin
.
row
s
()
==
nv
());
assert
(
Jout
.
row
s
()
==
nv
());
assert
(
Jout
.
col
s
()
==
Jin
.
col
s
());
derived
().
dIntegrate_product_impl
(
q
.
derived
(),
v
.
derived
(),
Jin
.
derived
(),
PINOCCHIO_EIGEN_CONST_CAST
(
JacobianOut_t
,
Jout
),
...
...
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