Skip to content
GitLab
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
eigenpy
Commits
f53d54d7
Unverified
Commit
f53d54d7
authored
Apr 23, 2020
by
Justin Carpentier
Committed by
GitHub
Apr 23, 2020
Browse files
Merge pull request #186 from gleichdick/master
Fix LLT with current Eigen master branch
parents
d279a091
8ab8f57c
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/eigenpy/decompositions/LLT.hpp
View file @
f53d54d7
...
...
@@ -44,9 +44,14 @@ namespace eigenpy
.
def
(
"matrixLLT"
,
&
Solver
::
matrixLLT
,
bp
::
arg
(
"self"
),
"Returns the LLT decomposition matrix."
,
bp
::
return_internal_reference
<>
())
#if EIGEN_VERSION_AT_LEAST(3,3,90)
.
def
(
"rankUpdate"
,(
Solver
&
(
Solver
::*
)(
const
VectorType
&
,
const
RealScalar
&
))
&
Solver
::
template
rankUpdate
<
VectorType
>,
bp
::
args
(
"self"
,
"vector"
,
"sigma"
),
bp
::
return_self
<>
())
#else
.
def
(
"rankUpdate"
,(
Solver
(
Solver
::*
)(
const
VectorType
&
,
const
RealScalar
&
))
&
Solver
::
template
rankUpdate
<
VectorType
>,
bp
::
args
(
"self"
,
"vector"
,
"sigma"
))
#endif
#if EIGEN_VERSION_AT_LEAST(3,3,0)
.
def
(
"adjoint"
,
&
Solver
::
adjoint
,
bp
::
arg
(
"self"
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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