Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eigenpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
eigenpy
Commits
155d92ec
Verified
Commit
155d92ec
authored
5 years ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
core: fix doc message
parent
c75eb13c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/eigenpy.cpp
+3
-3
3 additions, 3 deletions
src/eigenpy.cpp
with
3 additions
and
3 deletions
src/eigenpy.cpp
+
3
−
3
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."
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment