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
eigenpy
Commits
155d92ec
Verified
Commit
155d92ec
authored
Mar 18, 2020
by
Justin Carpentier
Browse files
core: fix doc message
parent
c75eb13c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/eigenpy.cpp
View file @
155d92ec
...
@@ -48,13 +48,13 @@ namespace eigenpy
...
@@ -48,13 +48,13 @@ namespace eigenpy
bp
::
def
(
"sharedMemory"
,
bp
::
def
(
"sharedMemory"
,
(
void
(
*
)(
const
bool
))
NumpyType
::
sharedMemory
,
(
void
(
*
)(
const
bool
))
NumpyType
::
sharedMemory
,
bp
::
arg
(
"value"
),
bp
::
arg
(
"value"
),
"Share the memory when converting Eigen
::Matrix
to
n
umpy.
array.
"
);
"Share the memory when converting
from
Eigen to
N
umpy."
);
bp
::
def
(
"sharedMemory"
,
bp
::
def
(
"sharedMemory"
,
(
bool
(
*
)())
NumpyType
::
sharedMemory
,
(
bool
(
*
)())
NumpyType
::
sharedMemory
,
"Status of the shared memory when converting Eigen
::Matrix
to
n
umpy.
array.
\n
"
"Status of the shared memory when converting
from
Eigen to
N
umpy.
\n
"
"If True, the memory is shared when converting an Eigen::Matrix to a numpy.array.
\n
"
"If True, the memory is shared when converting an Eigen::Matrix to a numpy.array.
\n
"
"Otherwise, a deep copy of the Eigen::Matrix is performed"
);
"Otherwise, a deep copy of the Eigen::Matrix is performed
.
"
);
bp
::
def
(
"seed"
,
&
seed
,
bp
::
arg
(
"seed_value"
),
bp
::
def
(
"seed"
,
&
seed
,
bp
::
arg
(
"seed_value"
),
"Initialize the pseudo-random number generator with the argument seed_value."
);
"Initialize the pseudo-random number generator with the argument seed_value."
);
...
...
Write
Preview
Supports
Markdown
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