solver_lqr
LqrInfoPrinter.hpp
Go to the documentation of this file.
1 
9 #pragma once
10 
11 #include <string>
12 #include <vector>
13 #include <memory>
15 
16 namespace solverlqr {
17 
18  enum class Color {red, blue, green, yellow, magenta, cyan, white, bold_red, bold_blue,
19  bold_green, bold_yellow, bold_magenta, bold_cyan, bold_white};
20 
21  enum class MsgLqr {
22  STAT_cholesky,
23  STAT_success,
24  STAT_rejection,
25  STAT_begin,
26  STAT_summary,
27  EXIT_divergence,
28  EXIT_maxlambda,
29  EXIT_maxiter,
30  SUCC_costchange,
31  SUCC_gradient,
32  };
33 
38  {
39  public:
42 
43  int& get(const SolverLqrIntParam& param);
44  double& get(const SolverLqrDoubleParam& param);
45 
46  const int& get(const SolverLqrIntParam& param) const;
47  const double& get(const SolverLqrDoubleParam& param) const;
48 
49  private:
50  int current_iteration_, backpass_diverge_iteration_;
51  double cost_, cost_change_, expected_cost_, control_gradient_, current_regularization_;
52  };
53 
55  {
56  public:
58  virtual ~LqrInfoPrinter(){}
59 
60  void initialize(const SolverLqrSetting& stgs);
61  void display(const MsgLqr& msg, const LqrOptimizationInfo& info);
62 
63  private:
64  void enter();
65  std::string color_picker(const Color& color);
66  void printMsg(const std::string& str, const Color& color);
67  void split(const std::string& s, char delim, std::vector<std::string>& v_str, std::vector<std::string>& v_prec);
68  void printMsg(const std::string& str, std::vector<double>& v_val, std::vector<bool>& v_prec, const Color& text_color = Color::white, const Color& num_color = Color::white );
69 
70  inline const SolverLqrSetting& getLqrSetting() const { return *stgs_; }
71 
72  private:
73  std::shared_ptr<SolverLqrSetting> stgs_;
74  std::string close_, open_red_, open_blue_, open_cyan_, open_green_, open_white_, open_yellow_,
75  open_magenta_, open_bold_red_, open_bold_blue_, open_bold_cyan_, open_bold_green_,
76  open_bold_white_, open_bold_yellow_, open_bold_magenta_, prec_;
77  };
78 }
Definition: display.py:1
SolverLqrDoubleParam
Definition: SolverLqrParams.hpp:42
Helper class that contains information about the status of the optimization problem.
Definition: LqrInfoPrinter.hpp:37
Definition: LqrInfoPrinter.hpp:54
Definition: BackwardPass.hpp:15
SolverLqrIntParam
Definition: SolverLqrParams.hpp:14
Definition: SolverLqrSetting.hpp:18