Exotica
end_pose_problem.h
Go to the documentation of this file.
1 //
2 // Copyright (c) 2018, University of Edinburgh
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without
6 // modification, are permitted provided that the following conditions are met:
7 //
8 // * Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of nor the names of its contributors may be used to
14 // endorse or promote products derived from this software without specific
15 // prior written permission.
16 //
17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21 // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 // POSSIBILITY OF SUCH DAMAGE.
28 //
29 
30 #ifndef EXOTICA_CORE_END_POSE_PROBLEM_H_
31 #define EXOTICA_CORE_END_POSE_PROBLEM_H_
32 
34 #include <exotica_core/tasks.h>
35 
36 #include <exotica_core/end_pose_problem_initializer.h>
37 
38 namespace exotica
39 {
41 class EndPoseProblem : public PlanningProblem, public Instantiable<EndPoseProblemInitializer>
42 {
43 public:
45  virtual ~EndPoseProblem();
46 
47  void Instantiate(const EndPoseProblemInitializer& init) override;
49  bool IsValid() override;
50 
51  void SetGoal(const std::string& task_name, Eigen::VectorXdRefConst goal);
52  void SetRho(const std::string& task_name, const double& rho);
53  Eigen::VectorXd GetGoal(const std::string& task_name);
54  double GetRho(const std::string& task_name);
55  void SetGoalEQ(const std::string& task_name, Eigen::VectorXdRefConst goal);
56  void SetRhoEQ(const std::string& task_name, const double& rho);
57  Eigen::VectorXd GetGoalEQ(const std::string& task_name);
58  double GetRhoEQ(const std::string& task_name);
59  void SetGoalNEQ(const std::string& task_name, Eigen::VectorXdRefConst goal);
60  void SetRhoNEQ(const std::string& task_name, const double& rho);
61  Eigen::VectorXd GetGoalNEQ(const std::string& task_name);
62  double GetRhoNEQ(const std::string& task_name);
63  void PreUpdate() override;
64  Eigen::MatrixXd GetBounds() const;
65 
66  double GetScalarCost();
67  Eigen::RowVectorXd GetScalarJacobian();
68  double GetScalarTaskCost(const std::string& task_name) const;
69  Eigen::VectorXd GetEquality();
70  Eigen::MatrixXd GetEqualityJacobian();
71  Eigen::VectorXd GetInequality();
72  Eigen::MatrixXd GetInequalityJacobian();
73 
77 
78  Eigen::MatrixXd W;
80  Eigen::MatrixXd jacobian;
82 
85  int num_tasks;
86  bool use_bounds;
87 };
88 typedef std::shared_ptr<exotica::EndPoseProblem> EndPoseProblemPtr;
89 } // namespace exotica
90 
91 #endif // EXOTICA_CORE_END_POSE_PROBLEM_H_
exotica::EndPoseProblem::hessian
Hessian hessian
Definition: end_pose_problem.h:81
exotica::EndPoseProblem::SetRhoEQ
void SetRhoEQ(const std::string &task_name, const double &rho)
exotica::EndPoseProblem::Instantiate
void Instantiate(const EndPoseProblemInitializer &init) override
exotica::EndPoseProblem::SetRhoNEQ
void SetRhoNEQ(const std::string &task_name, const double &rho)
exotica::EndPoseProblem::IsValid
bool IsValid() override
Evaluates whether the problem is valid.
planning_problem.h
exotica::EndPoseProblemPtr
std::shared_ptr< exotica::EndPoseProblem > EndPoseProblemPtr
Definition: end_pose_problem.h:88
exotica::EndPoseProblem::GetInequality
Eigen::VectorXd GetInequality()
exotica::EndPoseProblem::Update
void Update(Eigen::VectorXdRefConst x)
exotica::EndPoseProblem::SetGoalNEQ
void SetGoalNEQ(const std::string &task_name, Eigen::VectorXdRefConst goal)
exotica::EndPoseProblem::GetBounds
Eigen::MatrixXd GetBounds() const
exotica::EndPoseProblem::~EndPoseProblem
virtual ~EndPoseProblem()
exotica::Instantiable
Definition: property.h:110
exotica::EndPoseProblem::SetGoalEQ
void SetGoalEQ(const std::string &task_name, Eigen::VectorXdRefConst goal)
exotica
Definition: cartpole_dynamics_solver.h:38
exotica::EndPoseProblem::use_bounds
bool use_bounds
Definition: end_pose_problem.h:86
exotica::Hessian
Eigen::Array< Eigen::MatrixXd, Eigen::Dynamic, 1 > Hessian
Definition: conversions.h:154
exotica::EndPoseProblem::GetGoal
Eigen::VectorXd GetGoal(const std::string &task_name)
exotica::EndPoseProblem::W
Eigen::MatrixXd W
Definition: end_pose_problem.h:78
exotica::EndPoseProblem::num_tasks
int num_tasks
Definition: end_pose_problem.h:85
exotica::EndPoseProblem::cost
EndPoseTask cost
Definition: end_pose_problem.h:74
exotica::EndPoseProblem::GetEquality
Eigen::VectorXd GetEquality()
exotica::EndPoseProblem::GetScalarCost
double GetScalarCost()
Eigen::VectorXdRefConst
const typedef Eigen::Ref< const Eigen::VectorXd > & VectorXdRefConst
Convenience wrapper for storing references to sub-matrices/vectors.
Definition: conversions.h:52
exotica::EndPoseProblem::GetGoalEQ
Eigen::VectorXd GetGoalEQ(const std::string &task_name)
exotica::EndPoseProblem::jacobian
Eigen::MatrixXd jacobian
Definition: end_pose_problem.h:80
exotica::TaskSpaceVector
Definition: task_space_vector.h:50
exotica::EndPoseProblem::EndPoseProblem
EndPoseProblem()
tasks.h
exotica::EndPoseProblem::GetScalarTaskCost
double GetScalarTaskCost(const std::string &task_name) const
exotica::EndPoseProblem::GetRhoEQ
double GetRhoEQ(const std::string &task_name)
exotica::EndPoseProblem::GetEqualityJacobian
Eigen::MatrixXd GetEqualityJacobian()
exotica::EndPoseProblem::Phi
TaskSpaceVector Phi
Definition: end_pose_problem.h:79
exotica::EndPoseProblem::equality
EndPoseTask equality
Definition: end_pose_problem.h:76
exotica::EndPoseProblem
Arbitrarily constrained end-pose problem implementation.
Definition: end_pose_problem.h:41
exotica::EndPoseTask
Definition: tasks.h:127
exotica::PlanningProblem
Definition: planning_problem.h:64
exotica::EndPoseProblem::SetGoal
void SetGoal(const std::string &task_name, Eigen::VectorXdRefConst goal)
exotica::EndPoseProblem::length_jacobian
int length_jacobian
Definition: end_pose_problem.h:84
exotica::EndPoseProblem::GetGoalNEQ
Eigen::VectorXd GetGoalNEQ(const std::string &task_name)
exotica::EndPoseProblem::GetRhoNEQ
double GetRhoNEQ(const std::string &task_name)
exotica::EndPoseProblem::SetRho
void SetRho(const std::string &task_name, const double &rho)
exotica::EndPoseProblem::PreUpdate
void PreUpdate() override
exotica::EndPoseProblem::inequality
EndPoseTask inequality
Definition: end_pose_problem.h:75
exotica::EndPoseProblem::GetScalarJacobian
Eigen::RowVectorXd GetScalarJacobian()
exotica::EndPoseProblem::length_Phi
int length_Phi
Definition: end_pose_problem.h:83
exotica::EndPoseProblem::GetInequalityJacobian
Eigen::MatrixXd GetInequalityJacobian()
exotica::EndPoseProblem::GetRho
double GetRho(const std::string &task_name)