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
e59f37d2
Commit
e59f37d2
authored
4 years ago
by
Florent Lamiraux
Committed by
Florent Lamiraux florent@laas.fr
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[LevelSetEdge] Add read access to condition parameterization constraints.
parent
76c9122b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/hpp/manipulation/graph/edge.hh
+8
-1
8 additions, 1 deletion
include/hpp/manipulation/graph/edge.hh
src/graph/edge.cc
+10
-0
10 additions, 0 deletions
src/graph/edge.cc
with
18 additions
and
1 deletion
include/hpp/manipulation/graph/edge.hh
+
8
−
1
View file @
e59f37d2
...
...
@@ -532,7 +532,8 @@ namespace hpp {
/// The condition constraints should therefore be the constraints of
/// the target state of the level set edge.
///
/// \sa LevelSetEdge::insertConditionConstraint
/// \sa LevelSetEdge::conditionConstraints
/// LevelSetEdge::insertConditionConstraint
LeafHistogramPtr_t
histogram
()
const
;
/// \name Foliation definition
...
...
@@ -545,11 +546,17 @@ namespace hpp {
void
insertParamConstraint
(
const
ImplicitPtr_t
&
nm
,
const
segments_t
&
passiveDofs
=
segments_t
());
/// Get constraints parameterizing the target state foliation
const
NumericalConstraints_t
&
paramConstraints
()
const
;
/// Insert a condition constraint
/// \sa LevelSetEdge::histogram
void
insertConditionConstraint
(
const
ImplicitPtr_t
&
nm
,
const
segments_t
&
passiveDofs
=
segments_t
());
/// Get constraints parameterizing the target state foliation
/// \sa LevelSetEdge::histogram
const
NumericalConstraints_t
&
conditionConstraints
()
const
;
/// \}
/// Print the object in a stream.
...
...
This diff is collapsed.
Click to expand it.
src/graph/edge.cc
+
10
−
0
View file @
e59f37d2
...
...
@@ -822,6 +822,11 @@ namespace hpp {
paramPassiveDofs_
.
push_back
(
passiveDofs
);
}
const
NumericalConstraints_t
&
LevelSetEdge
::
paramConstraints
()
const
{
return
paramNumericalConstraints_
;
}
void
LevelSetEdge
::
insertConditionConstraint
(
const
constraints
::
ImplicitPtr_t
&
nm
,
const
segments_t
&
passiveDofs
)
...
...
@@ -831,6 +836,11 @@ namespace hpp {
condPassiveDofs_
.
push_back
(
passiveDofs
);
}
const
NumericalConstraints_t
&
LevelSetEdge
::
conditionConstraints
()
const
{
return
condNumericalConstraints_
;
}
LevelSetEdge
::
LevelSetEdge
(
const
std
::
string
&
name
)
:
Edge
(
name
)
...
...
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