solver
RtHQPSolver.hpp
Go to the documentation of this file.
1 
10 #pragma once
11 
12 #include <yaml-cpp/yaml.h>
13 
16 
17 namespace rt_solver {
18 
19  template<int All_A_Rows, int Max_Num_Vars, int Max_B_Rows>
21  {
22  private:
23  static const int num_max_ranks_=7;
26 
27  public:
28  // constructor and destructor
29  RtHQPSolver(YAML::Node params);
30  virtual ~RtHQPSolver();
31 
32  // functions to interface the solver behavior
33  void initialize();
34  void reset(int num_vars);
35  template<typename EqMatDer, typename EqVecDer, typename IneqMatDer, typename IneqVecDer>
36  bool solveNextTask(const Eigen::MatrixBase<EqMatDer>& eq_mat, const Eigen::MatrixBase<EqVecDer>& eq_vec,
37  const Eigen::MatrixBase<IneqMatDer>& ineq_mat, const Eigen::MatrixBase<IneqVecDer>& ineq_vec);
38 
39  // helper getter and setter methods
40  bool& applyIneqSlacks() { return apply_ineq_slacks_; }
41  const double& qpWaitDuration() const { return wait_duration_; }
42  const bool& applyIneqSlacks() const { return apply_ineq_slacks_; }
43  const double& qpSolveDuration() const { return qpsolve_duration_; }
44 
45  int nullspaceDimension() const { return K_.cols(); }
46  typename RtVector<Max_Num_Vars>::d& solution() { return xopt_; }
47  const typename RtVector<Max_Num_Vars>::d& solution() const { return xopt_; }
48 
49  private:
50  // helper internal functions
51  int numVars() const { return xopt_.size(); }
52  const typename RtMatrix<Max_Num_Vars, Max_Num_Vars>::d contrainedEqualityMat() const { return Nprev_; };
53 
54  // helper functions to handle svd operations
55  void doSVDComputations();
56  void stopSVD2ProblemConverter();
57 
58 
59  private:
60  // helper integer variables
61  int cur_rank_;
62 
63  // helper boolean variables
64  bool apply_ineq_slacks_, is_svd_computed_, stop_svd2problem_converter_;
65 
66  // helper double variables
67  double wait_duration_, qpsolve_duration_, eq_condition_threash_,
68  inequality_relaxation_, diag_addition_for_psd_hessian_;
69 
70  // instances of problem optimizer and its interface
71  QpSolver qp_solver_;
72  QpSolverInterface& qp_solver_interface_;
73 
74  // rt elements
75  typename RtVector<All_A_Rows>::d ahat_;
76  typename RtVector<All_A_Rows>::d wopt_;
77  typename RtVector<Max_Num_Vars>::d xopt_;
78  typename RtVector<Max_Num_Vars>::d zopt_;
81  typename RtMatrix<Max_B_Rows, Max_Num_Vars>::d B_Nprev_;
83  typename RtMatrix<Max_Num_Vars, Max_Num_Vars>::d prev_K_[num_max_ranks_];
84  Eigen::JacobiSVD<typename RtMatrix<Max_B_Rows, Max_Num_Vars>::d> svd_B_Nprev_;
85 
86  // rt communication and coordination
87  RtMutex mutex_;
88  RtCond svd2problem_converter_, problem2svd_converter_;
89  boost::shared_ptr<boost::thread> svd2problem_converter_thread_;
90 
91  };
92 
93 }
Definition: RtQPSolverInterface.hpp:19
Definition: RtMatrix.hpp:18
Definition: Var.hpp:14
Definition: RtMutex.hpp:16
Definition: RtMutex.hpp:36
Definition: RtHQPSolver.hpp:20
Definition: RtMatrix.hpp:44