Go to the documentation of this file.
30 #ifndef EXOTICA_CORE_BOUNDED_TIME_INDEXED_PROBLEM_H_
31 #define EXOTICA_CORE_BOUNDED_TIME_INDEXED_PROBLEM_H_
33 #include <exotica_core/bounded_time_indexed_problem_initializer.h>
48 void Instantiate(
const BoundedTimeIndexedProblemInitializer& init)
override;
63 Eigen::VectorXd
GetGoalEQ(
const std::string& task_name,
int t = 0) =
delete;
64 void SetRhoEQ(
const std::string& task_name,
const double rho,
int t = 0) =
delete;
65 double GetRhoEQ(
const std::string& task_name,
int t = 0) =
delete;
67 Eigen::VectorXd
GetGoalNEQ(
const std::string& task_name,
int t = 0) =
delete;
68 void SetRhoNEQ(
const std::string& task_name,
const double rho,
int t = 0) =
delete;
69 double GetRhoNEQ(
const std::string& task_name,
int t = 0) =
delete;
95 #endif // EXOTICA_CORE_BOUNDED_TIME_INDEXED_PROBLEM_H_
void SetJointVelocityLimits(const Eigen::VectorXd &qdot_max_in)=delete
Eigen::MatrixXd GetJointVelocityConstraintBounds() const =delete
Eigen::VectorXd GetEquality() const =delete
std::vector< Eigen::VectorXd > x
Current internal problem state.
Definition: abstract_time_indexed_problem.h:260
std::vector< Eigen::Triplet< double > > GetInequalityJacobianTriplets() const =delete
Bound constrained time-indexed problem.
Definition: bounded_time_indexed_problem.h:39
Eigen::VectorXd GetJointVelocityConstraint() const =delete
bool IsValid() override
Evaluates whether the problem is valid.
void Update(Eigen::VectorXdRefConst x_trajectory_in)
Updates the entire problem from a given trajectory (e.g., used in an optimization solver)
Eigen::VectorXd GetGoalEQ(const std::string &task_name, int t=0)=delete
Definition: property.h:110
int get_joint_velocity_constraint_dimension() const =delete
Definition: cartpole_dynamics_solver.h:38
double GetRhoEQ(const std::string &task_name, int t=0)=delete
void SetRhoEQ(const std::string &task_name, const double rho, int t=0)=delete
Eigen::VectorXd GetInequality() const =delete
Eigen::VectorXd GetJointVelocityLimits() const =delete
double GetRhoNEQ(const std::string &task_name, int t=0)=delete
void ReinitializeVariables() override
Definition: abstract_time_indexed_problem.h:40
std::shared_ptr< exotica::BoundedTimeIndexedProblem > BoundedTimeIndexedProblemPtr
Definition: bounded_time_indexed_problem.h:92
void SetRhoNEQ(const std::string &task_name, const double rho, int t=0)=delete
BoundedTimeIndexedProblem()=default
const typedef Eigen::Ref< const Eigen::VectorXd > & VectorXdRefConst
Convenience wrapper for storing references to sub-matrices/vectors.
Definition: conversions.h:52
int get_active_nonlinear_equality_constraints_dimension() const =delete
void Instantiate(const BoundedTimeIndexedProblemInitializer &init) override
Instantiates the problem from an Initializer.
void PreUpdate() override
Updates internal variables before solving, e.g., after setting new values for Rho.
Eigen::SparseMatrix< double > GetInequalityJacobian() const =delete
std::vector< Eigen::Triplet< double > > GetJointVelocityConstraintJacobianTriplets() const =delete
virtual ~BoundedTimeIndexedProblem()=default
void SetGoalNEQ(const std::string &task_name, Eigen::VectorXdRefConst goal, int t=0)=delete
void Update(Eigen::VectorXdRefConst x, int t) override
Updates an individual timestep from a given state vector.
std::vector< Eigen::Triplet< double > > GetEqualityJacobianTriplets() const =delete
Eigen::SparseMatrix< double > GetEqualityJacobian() const =delete
Eigen::VectorXd GetGoalNEQ(const std::string &task_name, int t=0)=delete
void SetGoalEQ(const std::string &task_name, Eigen::VectorXdRefConst goal, int t=0)=delete
int get_active_nonlinear_inequality_constraints_dimension() const =delete