Crocoddyl
quadratic-flat-log.hpp
1 // BSD 3-Clause License
3 //
4 // Copyright (C) 2020, LAAS-CNRS, University of Edinburgh
5 // Copyright note valid unless otherwise stated in individual files.
6 // All rights reserved.
8 
9 #ifndef CROCODDYL_CORE_ACTIVATIONS_QUADRATIC_FLAT_LOG_HPP_
10 #define CROCODDYL_CORE_ACTIVATIONS_QUADRATIC_FLAT_LOG_HPP_
11 
12 #include "crocoddyl/core/activation-base.hpp"
13 #include "crocoddyl/core/fwd.hpp"
14 #include "crocoddyl/core/utils/exception.hpp"
15 
16 namespace crocoddyl {
17 
32 template <typename _Scalar>
34  : public ActivationModelAbstractTpl<_Scalar> {
35  public:
36  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
37 
38  typedef _Scalar Scalar;
43  typedef typename MathBase::VectorXs VectorXs;
44  typedef typename MathBase::MatrixXs MatrixXs;
45 
46  /*
47  * @brief Initialize the quadratic-flat-log activation model
48  *
49  * The default `alpha` value is defined as 1.
50  *
51  * @param[in] nr Dimension of the residual vector
52  * @param[in] alpha Width of quadratic basin (default: 1.)
53  */
54 
55  explicit ActivationModelQuadFlatLogTpl(const std::size_t &nr,
56  const Scalar &alpha = Scalar(1.))
57  : Base(nr), alpha_(alpha) {
58  if (alpha < Scalar(0.)) {
59  throw_pretty("Invalid argument: "
60  << "alpha should be a positive value");
61  }
62  };
63  virtual ~ActivationModelQuadFlatLogTpl(){};
64 
65  /*
66  * @brief Compute the quadratic-flat-log function
67  *
68  * @param[in] data Quadratic-log activation data
69  * @param[in] r Residual vector \f$\mathbf{r}\in\mathbb{R}^{nr}\f$
70  */
71  virtual void calc(const boost::shared_ptr<ActivationDataAbstract> &data,
72  const Eigen::Ref<const VectorXs> &r) {
73  if (static_cast<std::size_t>(r.size()) != nr_) {
74  throw_pretty("Invalid argument: "
75  << "r has wrong dimension (it should be " +
76  std::to_string(nr_) + ")");
77  }
78  boost::shared_ptr<Data> d = boost::static_pointer_cast<Data>(data);
79  d->a0 = r.squaredNorm() / alpha_;
80  data->a_value = log(Scalar(1.0) + d->a0);
81  };
82 
83  /*
84  * @brief Compute the derivatives of the quadratic-flat-log function
85  *
86  * @param[in] data Quadratic-log activation data
87  * @param[in] r Residual vector \f$\mathbf{r}\in\mathbb{R}^{nr}\f$
88  */
89  virtual void calcDiff(const boost::shared_ptr<ActivationDataAbstract> &data,
90  const Eigen::Ref<const VectorXs> &r) {
91  if (static_cast<std::size_t>(r.size()) != nr_) {
92  throw_pretty("Invalid argument: "
93  << "r has wrong dimension (it should be " +
94  std::to_string(nr_) + ")");
95  }
96  boost::shared_ptr<Data> d = boost::static_pointer_cast<Data>(data);
97 
98  d->a1 = Scalar(2.0) / (alpha_ + alpha_ * d->a0);
99  data->Ar = d->a1 * r;
100  data->Arr.diagonal() = -d->a1 * d->a1 * r.array().square();
101  data->Arr.diagonal().array() += d->a1;
102  };
103 
104  /*
105  * @brief Create the quadratic-flat-log activation data
106  *
107  * @return the activation data
108  */
109  virtual boost::shared_ptr<ActivationDataAbstract> createData() {
110  boost::shared_ptr<Data> data =
111  boost::allocate_shared<Data>(Eigen::aligned_allocator<Data>(), this);
112  return data;
113  };
114 
115  Scalar get_alpha() const { return alpha_; };
116  void set_alpha(const Scalar alpha) { alpha_ = alpha; };
117 
123  virtual void print(std::ostream &os) const {
124  os << "ActivationModelQuadFlatLog {nr=" << nr_ << ", a=" << alpha_ << "}";
125  }
126 
127  protected:
128  using Base::nr_;
129 
130  private:
131  Scalar alpha_;
132 };
133 
134 /*
135  * @brief Data structure of the quadratic-flat-log activation
136  *
137  * @param[in] a0 computed in calc to avoid recomputation
138  * @param[in] a1 computed in calcDiff to avoid recomputation
139  */
140 template <typename _Scalar>
142  : public ActivationDataAbstractTpl<_Scalar> {
143  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
144 
145  typedef _Scalar Scalar;
148 
149  template <typename Activation>
150  explicit ActivationDataQuadFlatLogTpl(Activation *const activation)
151  : Base(activation), a0(0), a1(0) {}
152 
153  Scalar a0;
154  Scalar a1;
155 };
156 
157 } // namespace crocoddyl
158 
159 #endif // CROCODDYL_CORE_ACTIVATIONS_QUADRATIC_FLAT_LOG_HPP_
virtual void print(std::ostream &os) const
Print relevant information of the quadratic flat-log model.