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
980055ef
Verified
Commit
980055ef
authored
5 years ago
by
Justin Carpentier
Browse files
Options
Downloads
Patches
Plain Diff
core: minor fix
parent
4ba344d1
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
python/main.cpp
+1
-4
1 addition, 4 deletions
python/main.cpp
with
1 addition
and
4 deletions
python/main.cpp
+
1
−
4
View file @
980055ef
...
@@ -51,10 +51,7 @@ BOOST_PYTHON_MODULE(eigenpy)
...
@@ -51,10 +51,7 @@ BOOST_PYTHON_MODULE(eigenpy)
"Returns True if A is approximately equal to B, within the precision determined by prec."
);
"Returns True if A is approximately equal to B, within the precision determined by prec."
);
bp
::
def
(
"is_approx"
,(
bool
(
*
)(
const
MatrixXd
&
,
const
MatrixXd
&
))
&
is_approx
<
MatrixXd
,
MatrixXd
>
,
bp
::
def
(
"is_approx"
,(
bool
(
*
)(
const
MatrixXd
&
,
const
MatrixXd
&
))
&
is_approx
<
MatrixXd
,
MatrixXd
>
,
bp
::
args
(
"A"
,
"B"
),
bp
::
args
(
"A"
,
"B"
),
"Returns True if A is approximately equal to B.."
);
"Returns True if A is approximately equal to B."
);
// EXPOSE_IS_APPROX(MatrixXd);
// EXPOSE_IS_APPROX(MatrixXf);
}
}
exposeDecompositions
();
exposeDecompositions
();
...
...
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