25 #ifndef SRC_NUMERICS_INCLUDE_CORBO_NUMERICS_QUADRATURE_INTERFACE_H_
26 #define SRC_NUMERICS_INCLUDE_CORBO_NUMERICS_QUADRATURE_INTERFACE_H_
34 #ifdef MESSAGE_SUPPORT
35 #include <corbo-communication/messages/numerics/quadrature.pb.h>
43 class QuadratureCollocationInterface :
public CollocationInterface
46 using Ptr = std::shared_ptr<QuadratureCollocationInterface>;
47 using UPtr = std::unique_ptr<QuadratureCollocationInterface>;
74 virtual void quadrature(
const std::vector<const Eigen::VectorXd*>& x1_points,
const std::vector<const Eigen::VectorXd*>& u1_points,
79 virtual void quadrature(
const std::vector<const Eigen::VectorXd*>& x1_points,
const std::vector<const Eigen::VectorXd*>& u1_points,
80 const Eigen::VectorXd& u2,
const Eigen::VectorXd& x2,
double dt,
83 virtual bool interpolate(
const std::vector<const Eigen::VectorXd*>& x1_points,
const std::vector<const Eigen::VectorXd*>& u1_points,
84 const Eigen::VectorXd& u2,
const Eigen::VectorXd& x2,
double t1,
double dt,
double dt_interp,
107 std::vector<Eigen::VectorXd*>& intermediate_x, std::vector<Eigen::VectorXd*>& intermediate_u) = 0;
115 const std::vector<Eigen::VectorXd*>& intermediate_x,
const UnaryFunction& fun,
130 const std::vector<Eigen::VectorXd*>& intermediate_x,
const std::vector<Eigen::VectorXd*>& intermediate_u,
137 std::vector<Eigen::VectorXd*>& intermediate_u) = 0;
140 std::vector<Eigen::VectorXd*>& intermediate_u) = 0;
152 quadrature(x1, u1, x2, u2, dt, system, error);
165 const SystemDynamicsInterface& system,
const Range& range, std::vector<Eigen::VectorXd>& states,
166 std::vector<Eigen::VectorXd>& controls)
override = 0;
168 #ifdef MESSAGE_SUPPORT
169 virtual void toMessage(messages::Quadrature& message)
const {}
172 virtual void fromMessage(
const messages::Quadrature& message, std::stringstream* issues =
nullptr) {}
175 void toMessage(corbo::messages::Collocation& message)
const override { toMessage(*message.mutable_quadrature()); }
177 void fromMessage(
const corbo::messages::Collocation& message, std::stringstream* issues =
nullptr)
override
179 if (message.has_quadrature()) fromMessage(message.quadrature());
192 #define FACTORY_REGISTER_QUADRATURE_COLLOCATION(type) FACTORY_REGISTER_COLLOCATION(type)
196 #endif // SRC_NUMERICS_INCLUDE_CORBO_NUMERICS_QUADRATURE_INTERFACE_H_