|
robotoc
robotoc - efficient ROBOT Optimal Control solvers
|
Base class of the configuration. More...
#include <configuration_space_ref_base.hpp>

Public Member Functions | |
| ConfigurationSpaceRefBase () | |
| Default constructor. More... | |
| virtual | ~ConfigurationSpaceRefBase () |
| Destructor. More... | |
| ConfigurationSpaceRefBase (const ConfigurationSpaceRefBase &)=default | |
| Default copy constructor. More... | |
| ConfigurationSpaceRefBase & | operator= (const ConfigurationSpaceRefBase &)=default |
| Default copy operator. More... | |
| ConfigurationSpaceRefBase (ConfigurationSpaceRefBase &&) noexcept=default | |
| Default move constructor. More... | |
| ConfigurationSpaceRefBase & | operator= (ConfigurationSpaceRefBase &&) noexcept=default |
| Default move assign operator. More... | |
| virtual void | updateRef (const Robot &robot, const GridInfo &grid_info, Eigen::VectorXd &q_ref) const =0 |
| Computes the reference configuration. More... | |
| virtual bool | isActive (const GridInfo &grid_info) const =0 |
| Checks wheather the cost is active or not at the specified time. More... | |
Base class of the configuration.
|
inline |
Default constructor.
|
inlinevirtual |
Destructor.
|
default |
Default copy constructor.
|
defaultnoexcept |
Default move constructor.
|
pure virtual |
Checks wheather the cost is active or not at the specified time.
| [in] | grid_info | Grid info. |
Implemented in robotoc::MPCPeriodicConfigurationRef.
|
defaultnoexcept |
Default move assign operator.
|
default |
Default copy operator.
|
pure virtual |
Computes the reference configuration.
| [in] | robot | Robot model. |
| [in] | grid_info | Grid info. |
| [in] | q_ref | Reference position. Size is Robot::dimq(). |
Implemented in robotoc::MPCPeriodicConfigurationRef.