hpp-python  6.1.0
python bindings for HPP, based on boost python
problem.hh
Go to the documentation of this file.
1 // problem.hh
2 //
3 // Copyright (c) 2025, CNRS
4 // Authors: Paul Sardin
5 //
6 // This file is part of hpp-python
7 // hpp-python is free software—you can redistribute it
8 // and/or modify it under the terms of the GNU Lesser General Public
9 // License as published by the Free Software Foundation, either version
10 // 3 of the License, or (at your option) any later version.
11 //
12 // hpp-python is distributed in the hope that it will be
13 // useful, but WITHOUT ANY WARRANTY; without even the implied warranty
14 // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 // Lesser General Public License for more details. You should have
16 // received a copy of the GNU Lesser General Public License along with
17 // hpp-python. If not, see <http://www.gnu.org/licenses/>.
18 
19 #ifndef PYHPP_MANIPULATION_PROBLEM_HH
20 #define PYHPP_MANIPULATION_PROBLEM_HH
21 
24 #include <hpp/core/distance.hh>
28 #include <hpp/core/steering-method.hh>
29 #include <hpp/manipulation/problem.hh>
30 #include <pyhpp/core/fwd.hh>
31 #include <pyhpp/core/problem.hh>
33 
45 
46 namespace pyhpp {
47 namespace manipulation {
48 
49 // Wrapper class for hpp::manipulation::Problem
50 struct Problem : public pyhpp::core::Problem {
52 
55 
56  void constraintGraph(const PyWGraphPtr_t& graph);
58  virtual void checkProblem() const;
59  void steeringMethod(
63  // PathValidationPtr_t pathValidation() const;
64  // void pathValidation (const PathValidationPtr_t &pathValidation);
65  // SteeringMethodPtr_t manipulationSteeringMethod() const;
66  // PathValidationPtr_t pathValidationFactory() const;
67  // void setPathValidationFactory (const core::PathValidationBuilder_t
68  // &factory, const value_type &tol);
69 };
70 
71 } // namespace manipulation
72 } // namespace pyhpp
73 
74 #endif // PYHPP_MANIPULATION_PROBLEM_HH
SteeringMethodPtr_t steeringMethod() const
Definition: problem.cc:88
const DevicePtr_t & robot() const
Definition: problem.cc:53
std::vector< JointAndShape_t > JointAndShapes_t
std::pair< JointPtr_t, Shape_t > JointAndShape_t
shared_ptr< PathValidation > PathValidationPtr_t
shared_ptr< Distance > DistancePtr_t
shared_ptr< ConfigurationShooter > ConfigurationShooterPtr_t
shared_ptr< PathProjector > PathProjectorPtr_t
shared_ptr< ProblemTarget > ProblemTargetPtr_t
shared_ptr< ConfigValidations > ConfigValidationsPtr_t
shared_ptr< SteeringMethod > SteeringMethodPtr_t
pinocchio::ConfigurationIn_t ConfigurationIn_t
shared_ptr< Problem > ProblemPtr_t
std::shared_ptr< SteeringMethod > PyWSteeringMethodPtr_t
Definition: problem.hh:42
std::shared_ptr< Device > PyWDevicePtr_t
Definition: fwd.hh:42
std::shared_ptr< PyWGraph > PyWGraphPtr_t
Definition: fwd.hh:47
std::shared_ptr< GraphSteeringMethod > PyWGraphSteeringMethodPtr_t
Definition: fwd.hh:48
Definition: fwd.hh:35
hpp::core::PathValidationPtr_t PathValidationPtr_t
Definition: problem.hh:41
hpp::core::ProblemTargetPtr_t ProblemTargetPtr_t
Definition: problem.hh:43
hpp::manipulation::ProblemPtr_t ProblemPtr_t
Definition: problem.hh:34
hpp::constraints::JointAndShapes_t JointAndShapes_t
Definition: problem.hh:36
hpp::core::ConfigurationIn_t ConfigurationIn_t
Definition: problem.hh:37
hpp::core::DistancePtr_t DistancePtr_t
Definition: problem.hh:44
hpp::core::ConfigValidationsPtr_t ConfigValidationsPtr_t
Definition: problem.hh:40
hpp::constraints::JointAndShape_t JointAndShape_t
Definition: problem.hh:35
hpp::core::SteeringMethodPtr_t SteeringMethodPtr_t
Definition: problem.hh:39
hpp::core::ConfigurationShooterPtr_t ConfigurationShooterPtr_t
Definition: problem.hh:38
hpp::core::PathProjectorPtr_t PathProjectorPtr_t
Definition: problem.hh:42
virtual void checkProblem() const
void constraintGraph(const PyWGraphPtr_t &graph)
Definition: problem.cc:53
pyhpp::core::PyWSteeringMethodPtr_t steeringMethod() const
void graphSteeringMethod(const PyWGraphSteeringMethodPtr_t &steeringMethod)
Definition: problem.cc:83
hpp::core::Container< JointAndShapes_t > jointAndShapes
Definition: problem.hh:51