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
Guilhem Saurel
hpp-manipulation
Commits
4f2d5fcb
Commit
4f2d5fcb
authored
5 years ago
by
Florent Lamiraux
Committed by
Florent Lamiraux florent@laas.fr
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[CrossStateOptimization] Update documentation of class and NEWS file.
parent
63f761cb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+2
-0
2 additions, 0 deletions
NEWS
include/hpp/manipulation/steering-method/cross-state-optimization.hh
+31
-3
31 additions, 3 deletions
.../manipulation/steering-method/cross-state-optimization.hh
with
33 additions
and
3 deletions
NEWS
+
2
−
0
View file @
4f2d5fcb
-*- outline -*-
-*- outline -*-
* Rewrite steering method CrossStateOptimization
- decouple waypoint computations.
New in 4.6.0
New in 4.6.0
* Add setter to relative motion matrix in edges.
* Add setter to relative motion matrix in edges.
* Add method Edge::neighborEdges.
* Add method Edge::neighborEdges.
...
...
This diff is collapsed.
Click to expand it.
include/hpp/manipulation/steering-method/cross-state-optimization.hh
+
31
−
3
View file @
4f2d5fcb
...
@@ -35,13 +35,14 @@ namespace hpp {
...
@@ -35,13 +35,14 @@ namespace hpp {
/// Optimization-based steering method.
/// Optimization-based steering method.
///
///
/// ####
Methodology
/// ####
Sketch of the method
///
///
/// Given two configuration \f$ (q_1,q_2) \f$, this class formulates and
/// Given two configuration \f$ (q_1,q_2) \f$, this class formulates and
/// solves the problem as follows.
/// solves the problem as follows.
/// - Compute the corresponding states \f$ (s_1, s_2) \f$.
/// - Compute the corresponding states \f$ (s_1, s_2) \f$.
/// - For a each path \f$ (e_0, ... e_n) \f$ between \f$ (s_1, s_2) \f$
/// - For a each path \f$ (e_0, ... e_n) \f$ of length not more than
/// in the constraint graph, do:
/// parameter "CrossStateOptimization/maxDepth" between
/// \f$ (s_1, s_2)\f$ in the constraint graph, do:
/// - define \f$ n-1 \f$ intermediate configuration \f$ p_i \f$,
/// - define \f$ n-1 \f$ intermediate configuration \f$ p_i \f$,
/// - initialize the optimization problem, as explained below,
/// - initialize the optimization problem, as explained below,
/// - solve the optimization problem, which gives \f$ p^*_i \f$,
/// - solve the optimization problem, which gives \f$ p^*_i \f$,
...
@@ -55,6 +56,33 @@ namespace hpp {
...
@@ -55,6 +56,33 @@ namespace hpp {
/// - \f$ p_{n+1} = q_2 \f$,
/// - \f$ p_{n+1} = q_2 \f$,
/// - \f$ p_i \f$ is in state between \f$ (e_{i-1}, e_i) \f$, (\ref StateFunction)
/// - \f$ p_i \f$ is in state between \f$ (e_{i-1}, e_i) \f$, (\ref StateFunction)
/// - \f$ (p_i, p_{i+1}) \f$ are reachable with transition \f$ e_i \f$ (\ref EdgeFunction).
/// - \f$ (p_i, p_{i+1}) \f$ are reachable with transition \f$ e_i \f$ (\ref EdgeFunction).
///
/// #### Problem resolution
///
/// One solver (hpp::constraints::solver::BySubstitution) is created
/// for each waypoint \f$p_i\f$.
/// - method buildOptimizationProblem builds a matrix the rows of which
/// are the parameterizable numerical constraints present in the
/// graph, and the columns of which are the waypoints. Each value in the
/// matrix defines the status of each constraint right hand side for
/// this waypoint, among {absent from the solver,
/// equal to value for previous waypoint,
/// equal to value for start configuration,
/// equal to value for end configuration}.
/// - method CrossStateOptimization::solveOptimizationProblem loops over
/// the waypoint solvers, solves for each waypoint after
/// initializing the right hand sides with the proper values.
/// - eventually method buildPath build paths between waypoints with
/// the constraints of the transition in which the path lies.
///
/// #### Current status
///
/// The method has been successfully tested with romeo holding a placard
/// and the construction set benchmarks. The result is satisfactory
/// except between pregrasp and grasp waypoints that may be far
/// away from each other if the transition between those state does
/// not contain the grasp complement constraint. The same holds
/// between placement and pre-placement.
class
HPP_MANIPULATION_DLLAPI
CrossStateOptimization
:
class
HPP_MANIPULATION_DLLAPI
CrossStateOptimization
:
public
SteeringMethod
public
SteeringMethod
{
{
...
...
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