solver_lqr
PyOcpBase.hpp
Go to the documentation of this file.
1 
9 #include <memory>
10 #include <Eigen/Eigen>
11 
13 
14 namespace solverlqr {
15 
16  class PyOcpBase : public OcpBase
17  {
18  public:
19  using OcpBase::OcpBase;
20 
21  // trampoline for pure virtual functions
22  void configure(const YAML::Node& user_parameters) override
23  {
24  PYBIND11_OVERLOAD_PURE(
25  void,
26  OcpBase,
27  configure,
28  user_parameters
29  );
30  }
31 
32  StateBase dynamics(const StateBase& state, const ControlBase& control, int time_id) override
33  {
34  PYBIND11_OVERLOAD_PURE(
35  StateBase,
36  OcpBase,
37  dynamics,
38  state,
39  control,
40  time_id
41  );
42  }
43 
44  double objective(const StateBase& state, const ControlBase& control, int time_id, bool is_final_timestep) override
45  {
46  PYBIND11_OVERLOAD_PURE(
47  double,
48  OcpBase,
49  objective,
50  state,
51  control,
52  time_id,
53  is_final_timestep
54  );
55  }
56  };
57 
58 }
Class to define Control of OCP.
Definition: OcpDescription.hpp:62
Definition: PyOcpBase.hpp:16
Definition: BackwardPass.hpp:15
Optimal Control Problem Description Class.
Definition: OcpDescription.hpp:115
Class to define State of OCP.
Definition: OcpDescription.hpp:18