project.hpp
1 /*
2  * This file is part of CasADi.
3  *
4  * CasADi -- A symbolic framework for dynamic optimization.
5  * Copyright (C) 2010-2023 Joel Andersson, Joris Gillis, Moritz Diehl,
6  * KU Leuven. All rights reserved.
7  * Copyright (C) 2011-2014 Greg Horn
8  *
9  * CasADi is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 3 of the License, or (at your option) any later version.
13  *
14  * CasADi is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with CasADi; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  *
23  */
24 
25 
26 #ifndef CASADI_PROJECT_HPP
27 #define CASADI_PROJECT_HPP
28 
29 #include "mx_node.hpp"
31 
32 namespace casadi {
39  class CASADI_EXPORT Project : public MXNode {
40  public:
41 
45  Project(const MX& x, const Sparsity& sp);
46 
50  ~Project() override {}
51 
55  std::string disp(const std::vector<std::string>& arg) const override;
56 
58  template<typename T>
59  int eval_gen(const T** arg, T** res, casadi_int* iw, T* w) const;
60 
62  int eval(const double** arg, double** res, casadi_int* iw, double* w) const override;
63 
65  int eval_sx(const SXElem** arg, SXElem** res, casadi_int* iw, SXElem* w) const override;
66 
70  void eval_mx(const std::vector<MX>& arg, std::vector<MX>& res,
71  const std::vector<bool>& unique={}) const override;
72 
74  MX get_project(const Sparsity& sp, bool unique=false) const override;
75 
83  MX get_nzref(const Sparsity& sp, const std::vector<casadi_int>& nz,
84  bool unique=false) const override;
85 
89  void eval_linear(const std::vector<std::array<MX, 3> >& arg,
90  std::vector<std::array<MX, 3> >& res) const override {
91  eval_linear_rearrange(arg, res);
92  }
93 
97  int eval_activity(const bvec_t** arg, bvec_t** res, casadi_int* iw, bvec_t* w) const override {
98  return sp_forward(arg, res, iw, w);
99  }
100 
104  void ad_forward(const std::vector<std::vector<MX> >& fseed,
105  std::vector<std::vector<MX> >& fsens) const override;
106 
110  void ad_reverse(const std::vector<std::vector<MX> >& aseed,
111  std::vector<std::vector<MX> >& asens) const override;
112 
116  void generate(CodeGenerator& g,
117  const std::vector<casadi_int>& arg,
118  const std::vector<casadi_int>& res,
119  const std::vector<bool>& arg_is_ref,
120  std::vector<bool>& res_is_ref) const override;
121 
125  int sp_forward(const bvec_t** arg, bvec_t** res, casadi_int* iw, bvec_t* w) const override;
126 
130  int sp_reverse(bvec_t** arg, bvec_t** res, casadi_int* iw, bvec_t* w) const override;
131 
135  casadi_int op() const override { return OP_PROJECT;}
136 
140  size_t sz_w() const override { return size1();}
141 
145  void serialize_type(SerializingStream& s) const override;
146 
150  static MXNode* deserialize(DeserializingStream& s);
151 
152  protected:
156  explicit Project(DeserializingStream& s) : MXNode(s) {}
157 
158  };
159 
160 
167  class CASADI_EXPORT Densify : public Project {
168  public:
169 
171  Densify(const MX& x, const Sparsity& sp) : Project(x, sp) {}
172 
174  ~Densify() override {}
175 
177  template<typename T>
178  int eval_gen(const T** arg, T** res, casadi_int* iw, T* w) const;
179 
181  int eval(const double** arg, double** res, casadi_int* iw, double* w) const override;
182 
184  int eval_sx(const SXElem** arg, SXElem** res, casadi_int* iw, SXElem* w) const override;
185 
189  void generate(CodeGenerator& g,
190  const std::vector<casadi_int>& arg,
191  const std::vector<casadi_int>& res,
192  const std::vector<bool>& arg_is_ref,
193  std::vector<bool>& res_is_ref) const override;
194 
198  size_t sz_w() const override { return 0;}
199 
203  void serialize_type(SerializingStream& s) const override;
204 
208  explicit Densify(DeserializingStream& s) : Project(s) {}
209  };
210 
217  class CASADI_EXPORT Sparsify : public Project {
218  public:
219 
221  Sparsify(const MX& x, const Sparsity& sp) : Project(x, sp) {}
222 
224  ~Sparsify() override {}
225 
227  template<typename T>
228  int eval_gen(const T** arg, T** res, casadi_int* iw, T* w) const;
229 
231  int eval(const double** arg, double** res, casadi_int* iw, double* w) const override;
232 
234  int eval_sx(const SXElem** arg, SXElem** res, casadi_int* iw, SXElem* w) const override;
235 
239  void generate(CodeGenerator& g,
240  const std::vector<casadi_int>& arg,
241  const std::vector<casadi_int>& res,
242  const std::vector<bool>& arg_is_ref,
243  std::vector<bool>& res_is_ref) const override;
244 
248  size_t sz_w() const override { return 0;}
249 
253  void serialize_type(SerializingStream& s) const override;
254 
258  explicit Sparsify(DeserializingStream& s) : Project(s) {}
259  };
260 
261 } // namespace casadi
262 
264 
265 #endif // CASADI_PROJECT_HPP
The casadi namespace.
Definition: archiver.hpp:32