Skip to content
Snippets Groups Projects
Unverified Commit a585a89a authored by Joseph Mirabel's avatar Joseph Mirabel Committed by GitHub
Browse files

Merge pull request #35 from jmirabel/devel

Update to changes into hpp::core::pathOptimization::SplineGradientBased
parents 6ded2e47 1a536f43
No related branches found
No related tags found
No related merge requests found
...@@ -40,9 +40,9 @@ namespace hpp { ...@@ -40,9 +40,9 @@ namespace hpp {
Parent_t; Parent_t;
typedef boost::shared_ptr<SplineGradientBased> Ptr_t; typedef boost::shared_ptr<SplineGradientBased> Ptr_t;
typedef typename Parent_t::Spline Spline; using typename Parent_t::Spline;
typedef typename Parent_t::SplinePtr_t SplinePtr_t; using typename Parent_t::SplinePtr_t;
typedef typename Parent_t::Splines_t Splines_t; using typename Parent_t::Splines_t;
/// Return shared pointer to new object. /// Return shared pointer to new object.
static Ptr_t create (const Problem& problem); static Ptr_t create (const Problem& problem);
...@@ -54,15 +54,15 @@ namespace hpp { ...@@ -54,15 +54,15 @@ namespace hpp {
static Ptr_t createFromCore (const core::Problem& problem); static Ptr_t createFromCore (const core::Problem& problem);
protected: protected:
typedef typename Parent_t::LinearConstraint LinearConstraint; typedef typename hpp::core::pathOptimization::LinearConstraint LinearConstraint;
typedef typename Parent_t::Solvers_t Solvers_t; using typename Parent_t::SplineOptimizationDatas_t;
SplineGradientBased (const Problem& problem); SplineGradientBased (const Problem& problem);
virtual void initializePathValidation(const Splines_t& splines); virtual void initializePathValidation(const Splines_t& splines);
virtual void addProblemConstraints (const core::PathVectorPtr_t& init, virtual void addProblemConstraints (const core::PathVectorPtr_t& init,
const Splines_t& splines, LinearConstraint& lc, Solvers_t& ess) const; const Splines_t& splines, LinearConstraint& lc, SplineOptimizationDatas_t& sods) const;
virtual void constrainEndIntoState (const core::PathPtr_t& path, virtual void constrainEndIntoState (const core::PathPtr_t& path,
const size_type& idxSpline, const SplinePtr_t& spline, const size_type& idxSpline, const SplinePtr_t& spline,
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
#include <hpp/manipulation/path-optimization/spline-gradient-based.hh> #include <hpp/manipulation/path-optimization/spline-gradient-based.hh>
#include <hpp/core/path-optimization/spline-gradient-based/linear-constraint.hh> #include <hpp/core/path-optimization/linear-constraint.hh>
#include <hpp/manipulation/constraint-set.hh> #include <hpp/manipulation/constraint-set.hh>
#include <hpp/manipulation/graph/state.hh> #include <hpp/manipulation/graph/state.hh>
...@@ -70,9 +70,9 @@ namespace hpp { ...@@ -70,9 +70,9 @@ namespace hpp {
template <int _PB, int _SO> template <int _PB, int _SO>
void SplineGradientBased<_PB, _SO>::addProblemConstraints void SplineGradientBased<_PB, _SO>::addProblemConstraints
(const core::PathVectorPtr_t& init, const Splines_t& splines, LinearConstraint& lc, Solvers_t& ss) const (const core::PathVectorPtr_t& init, const Splines_t& splines, LinearConstraint& lc, SplineOptimizationDatas_t& sods) const
{ {
assert (init->numberPaths() == splines.size() && ss.size() == splines.size()); assert (init->numberPaths() == splines.size() && sods.size() == splines.size());
bool zeroDerivative = this->problem().getParameter ("SplineGradientBased/zeroDerivativesAtStateIntersection", false); bool zeroDerivative = this->problem().getParameter ("SplineGradientBased/zeroDerivativesAtStateIntersection", false);
...@@ -86,7 +86,7 @@ namespace hpp { ...@@ -86,7 +86,7 @@ namespace hpp {
"generated with a graph."); "generated with a graph.");
graph::EdgePtr_t transition = set->edge(); graph::EdgePtr_t transition = set->edge();
this->addProblemConstraintOnPath (path, i, splines[i], lc, ss[i]); this->addProblemConstraintOnPath (path, i, splines[i], lc, sods[i]);
// The path should always go through the start and end states of the // The path should always go through the start and end states of the
// transition. // transition.
...@@ -164,7 +164,7 @@ namespace hpp { ...@@ -164,7 +164,7 @@ namespace hpp {
} }
} }
} }
this->addProblemConstraintOnPath (init->pathAtRank(last), last, splines[last], lc, ss[last]); this->addProblemConstraintOnPath (init->pathAtRank(last), last, splines[last], lc, sods[last]);
} }
template <int _PB, int _SO> template <int _PB, int _SO>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment