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
0dedc5dd
Commit
0dedc5dd
authored
Jul 23, 2008
by
Alireza Nakhaei Sarvedani
Browse files
Add a tests in ChppPlanner::solveOneProblem() the check the lenght of kwsPath.
parent
abf1a85f
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
0dedc5dd
48. Add a tests in ChppPlanner::solveOneProblem() the check the lenght of kwsPath.
47. Validate config before solving problem in ChppPlanner::solveOneProblem.
46. Before validating direct path, set penetration in validatorDPCollision.
45. Make ChppPlanner::roadmapBuilderIthProblem() virtual.
...
...
autogen.sh
View file @
0dedc5dd
#!/bin/sh
aclocal
libtoolize
-c
libtoolize
-c
--force
automake
-ca
autoconf
src/hppPlanner.cpp
View file @
0dedc5dd
...
...
@@ -579,6 +579,12 @@ ktStatus ChppPlanner::solveOneProblem(unsigned int problemId)
return
KD_ERROR
;
}
if
(
kwsPath
->
length
()
==
0
)
{
ODEBUG1
(
":solveOneProblem: Path length is 0 after successfully solving the problem"
);
ODEBUG1
(
":solveOneProblem: this should not happen."
);
return
KD_ERROR
;
}
/*
Store path before optimization
*/
...
...
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