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
c294a5db
Commit
c294a5db
authored
4 years ago
by
Joseph Mirabel
Browse files
Options
Downloads
Patches
Plain Diff
[minor] throw exception is problem is not of the correct type.
parent
5f7bad45
No related branches found
No related tags found
No related merge requests found
Pipeline
#13337
failed
4 years ago
Stage: test
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/hpp/manipulation/path-optimization/enforce-transition-semantic.hh
+1
-0
1 addition, 0 deletions
...pulation/path-optimization/enforce-transition-semantic.hh
src/path-optimization/spline-gradient-based.cc
+2
-1
2 additions, 1 deletion
src/path-optimization/spline-gradient-based.cc
with
3 additions
and
1 deletion
include/hpp/manipulation/path-optimization/enforce-transition-semantic.hh
+
1
−
0
View file @
c294a5db
...
...
@@ -38,6 +38,7 @@ namespace hpp {
static
Ptr_t
create
(
const
core
::
ProblemConstPtr_t
&
problem
)
{
ProblemConstPtr_t
p
(
HPP_DYNAMIC_PTR_CAST
(
const
Problem
,
problem
));
if
(
!
p
)
throw
std
::
invalid_argument
(
"This is not a manipulation problem."
);
return
Ptr_t
(
new
EnforceTransitionSemantic
(
p
));
}
...
...
This diff is collapsed.
Click to expand it.
src/path-optimization/spline-gradient-based.cc
+
2
−
1
View file @
c294a5db
...
...
@@ -50,7 +50,8 @@ namespace hpp {
typename
SplineGradientBased
<
_PB
,
_SO
>::
Ptr_t
SplineGradientBased
<
_PB
,
_SO
>::
createFromCore
(
const
core
::
ProblemConstPtr_t
&
problem
)
{
assert
(
HPP_DYNAMIC_PTR_CAST
(
const
Problem
,
problem
));
if
(
!
HPP_DYNAMIC_PTR_CAST
(
const
Problem
,
problem
))
throw
std
::
invalid_argument
(
"This is not a manipulation problem."
);
return
create
(
HPP_STATIC_PTR_CAST
(
const
Problem
,
problem
));
}
...
...
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