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
Humanoid Path Planner
hpp-manipulation
Commits
02cd36ae
Commit
02cd36ae
authored
7 years ago
by
Joseph Mirabel
Committed by
Joseph Mirabel
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix bug (null pointers)
parent
27f76d69
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/hpp/manipulation/graph/statistics.hh
+2
-2
2 additions, 2 deletions
include/hpp/manipulation/graph/statistics.hh
include/hpp/manipulation/roadmap-node.hh
+2
-2
2 additions, 2 deletions
include/hpp/manipulation/roadmap-node.hh
src/graph/statistics.cc
+2
-2
2 additions, 2 deletions
src/graph/statistics.cc
with
6 additions
and
6 deletions
include/hpp/manipulation/graph/statistics.hh
+
2
−
2
View file @
02cd36ae
...
@@ -84,7 +84,7 @@ namespace hpp {
...
@@ -84,7 +84,7 @@ namespace hpp {
std
::
ostream
&
print
(
std
::
ostream
&
os
)
const
;
std
::
ostream
&
print
(
std
::
ostream
&
os
)
const
;
private:
private:
State
Wk
Ptr_t
state_
;
StatePtr_t
state_
;
typedef
std
::
list
<
RoadmapNodePtr_t
>
RoadmapNodes_t
;
typedef
std
::
list
<
RoadmapNodePtr_t
>
RoadmapNodes_t
;
RoadmapNodes_t
roadmapNodes_
;
RoadmapNodes_t
roadmapNodes_
;
...
@@ -195,7 +195,7 @@ namespace hpp {
...
@@ -195,7 +195,7 @@ namespace hpp {
private
:
private
:
/// The constraint graph
/// The constraint graph
graph
::
Graph
Wk
Ptr_t
graph_
;
graph
::
GraphPtr_t
graph_
;
};
};
typedef
StateHistogram
NodeHistogram
HPP_MANIPULATION_DEPRECATED
;
typedef
StateHistogram
NodeHistogram
HPP_MANIPULATION_DEPRECATED
;
typedef
boost
::
shared_ptr
<
StateHistogram
>
NodeHistogramPtr_t
;
typedef
boost
::
shared_ptr
<
StateHistogram
>
NodeHistogramPtr_t
;
...
...
This diff is collapsed.
Click to expand it.
include/hpp/manipulation/roadmap-node.hh
+
2
−
2
View file @
02cd36ae
...
@@ -99,14 +99,14 @@ namespace hpp {
...
@@ -99,14 +99,14 @@ namespace hpp {
SymbolicComponentPtr_t
symbolicComponent
()
const
SymbolicComponentPtr_t
symbolicComponent
()
const
{
{
return
symbolicCC_
.
lock
()
;
return
symbolicCC_
;
}
}
private
:
private
:
CachingSystem
cacheSystem_
;
CachingSystem
cacheSystem_
;
graph
::
StateWkPtr_t
state_
;
graph
::
StateWkPtr_t
state_
;
SymbolicComponent
Wk
Ptr_t
symbolicCC_
;
SymbolicComponentPtr_t
symbolicCC_
;
};
};
}
// namespace manipulation
}
// namespace manipulation
}
// namespace hpp
}
// namespace hpp
...
...
This diff is collapsed.
Click to expand it.
src/graph/statistics.cc
+
2
−
2
View file @
02cd36ae
...
@@ -119,7 +119,7 @@ namespace hpp {
...
@@ -119,7 +119,7 @@ namespace hpp {
const
StatePtr_t
&
NodeBin
::
state
()
const
const
StatePtr_t
&
NodeBin
::
state
()
const
{
{
return
state_
.
lock
()
;
return
state_
;
}
}
std
::
ostream
&
NodeBin
::
print
(
std
::
ostream
&
os
)
const
std
::
ostream
&
NodeBin
::
print
(
std
::
ostream
&
os
)
const
...
@@ -213,7 +213,7 @@ namespace hpp {
...
@@ -213,7 +213,7 @@ namespace hpp {
const
graph
::
GraphPtr_t
&
StateHistogram
::
constraintGraph
()
const
const
graph
::
GraphPtr_t
&
StateHistogram
::
constraintGraph
()
const
{
{
return
graph_
.
lock
()
;
return
graph_
;
}
}
HistogramPtr_t
StateHistogram
::
clone
()
const
HistogramPtr_t
StateHistogram
::
clone
()
const
...
...
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