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
Humanoid Path Planner
hpp-core
Commits
3f2ce7b0
Commit
3f2ce7b0
authored
Apr 02, 2021
by
Florent Lamiraux
Browse files
[kPRMStar] Reimplement tryConnectInitAndGoals.
the method does nothing. Connection is performed by the algorithm itself.
parent
01876e31
Pipeline
#13865
failed with stage
in 40 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
include/hpp/core/path-planner/k-prm-star.hh
View file @
3f2ce7b0
...
...
@@ -51,6 +51,9 @@ namespace hpp {
/// \li call parent implementation
/// \li get number nodes in problem parameter map
virtual
void
startSolve
();
/// Does nothing.
/// This step is performed by the main algorithm
virtual
void
tryConnectInitAndGoals
();
/// One step of the algorithm
virtual
void
oneStep
();
/// get the computationnal state of the algorithm
...
...
src/path-planner/k-prm-star.cc
View file @
3f2ce7b0
...
...
@@ -69,6 +69,10 @@ namespace hpp {
}
}
void
kPrmStar
::
tryConnectInitAndGoals
()
{
}
void
kPrmStar
::
oneStep
()
{
std
::
ostringstream
oss
;
...
...
Write
Preview
Markdown
is supported
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