Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-manipulation
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
Guilhem Saurel
hpp-manipulation
Commits
37e8bae9
Commit
37e8bae9
authored
5 years ago
by
Joseph Mirabel
Browse files
Options
Downloads
Patches
Plain Diff
Rename Problem::steeringMethod -> manipulationSteeringMethod
parent
591d9b20
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/hpp/manipulation/problem.hh
+1
-6
1 addition, 6 deletions
include/hpp/manipulation/problem.hh
src/graph/edge.cc
+1
-1
1 addition, 1 deletion
src/graph/edge.cc
src/problem.cc
+1
-1
1 addition, 1 deletion
src/problem.cc
with
3 additions
and
8 deletions
include/hpp/manipulation/problem.hh
+
1
−
6
View file @
37e8bae9
...
@@ -57,12 +57,7 @@ namespace hpp {
...
@@ -57,12 +57,7 @@ namespace hpp {
void
pathValidation
(
const
PathValidationPtr_t
&
pathValidation
);
void
pathValidation
(
const
PathValidationPtr_t
&
pathValidation
);
/// Get the steering method as a SteeringMethod
/// Get the steering method as a SteeringMethod
SteeringMethodPtr_t
steeringMethod
()
const
;
SteeringMethodPtr_t
manipulationSteeringMethod
()
const
;
void
steeringMethod
(
core
::
SteeringMethodPtr_t
sm
)
{
Parent
::
steeringMethod
(
sm
);
}
/// Build a new path validation
/// Build a new path validation
/// \note Current obstacles are added to the created object.
/// \note Current obstacles are added to the created object.
...
...
This diff is collapsed.
Click to expand it.
src/graph/edge.cc
+
1
−
1
View file @
37e8bae9
...
@@ -279,7 +279,7 @@ namespace hpp {
...
@@ -279,7 +279,7 @@ namespace hpp {
// Build steering method
// Build steering method
const
ProblemPtr_t
&
problem
(
g
->
problem
());
const
ProblemPtr_t
&
problem
(
g
->
problem
());
steeringMethod_
=
problem
->
s
teeringMethod
()
->
innerSteeringMethod
()
->
copy
();
steeringMethod_
=
problem
->
manipulationS
teeringMethod
()
->
innerSteeringMethod
()
->
copy
();
steeringMethod_
->
constraints
(
constraint
);
steeringMethod_
->
constraints
(
constraint
);
// Build path validation and relative motion matrix
// Build path validation and relative motion matrix
// TODO this path validation will not contain obstacles added after
// TODO this path validation will not contain obstacles added after
...
...
This diff is collapsed.
Click to expand it.
src/problem.cc
+
1
−
1
View file @
37e8bae9
...
@@ -84,7 +84,7 @@ namespace hpp {
...
@@ -84,7 +84,7 @@ namespace hpp {
return
pv
;
return
pv
;
}
}
SteeringMethodPtr_t
Problem
::
s
teeringMethod
()
const
SteeringMethodPtr_t
Problem
::
manipulationS
teeringMethod
()
const
{
{
return
HPP_DYNAMIC_PTR_CAST
(
SteeringMethod
,
return
HPP_DYNAMIC_PTR_CAST
(
SteeringMethod
,
Parent
::
steeringMethod
());
Parent
::
steeringMethod
());
...
...
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