constant_mx.cpp
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 #include "constant_mx.hpp"
27 #include <vector>
28 #include <algorithm>
29 #include "casadi_misc.hpp"
30 #include "serializing_stream.hpp"
31 
32 namespace casadi {
33 
35  set_sparsity(sp);
36  }
37 
39  }
40 
42  return nnz()==0;
43  }
44 
45  casadi_int ConstantMX::n_primitives() const {
46  if (nnz()==0) {
47  return 0;
48  } else {
49  return MXNode::n_primitives();
50  }
51  }
52 
53  void ConstantMX::primitives(std::vector<MX>::iterator& it) const {
54  if (nnz()!=0) {
56  }
57  }
58 
59  template<typename T>
60  void ConstantMX::split_primitives_gen(const T& x, typename std::vector<T>::iterator& it) const {
61  if (nnz()!=0) {
63  }
64  }
65 
66  void ConstantMX::split_primitives(const MX& x, std::vector<MX>::iterator& it) const {
67  split_primitives_gen<MX>(x, it);
68  }
69 
70  void ConstantMX::split_primitives(const SX& x, std::vector<SX>::iterator& it) const {
71  split_primitives_gen<SX>(x, it);
72  }
73 
74  void ConstantMX::split_primitives(const DM& x, std::vector<DM>::iterator& it) const {
75  split_primitives_gen<DM>(x, it);
76  }
77 
78  template<typename T>
79  T ConstantMX::join_primitives_gen(typename std::vector<T>::const_iterator& it) const {
80  if (nnz()==0) {
81  return T(sparsity());
82  } else {
83  return MXNode::join_primitives(it);
84  }
85  }
86 
87  MX ConstantMX::join_primitives(std::vector<MX>::const_iterator& it) const {
88  if (nnz()==0) {
89  return shared_from_this<MX>();
90  } else {
91  return MXNode::join_primitives(it);
92  }
93  }
94 
95  SX ConstantMX::join_primitives(std::vector<SX>::const_iterator& it) const {
96  return join_primitives_gen<SX>(it);
97  }
98 
99  DM ConstantMX::join_primitives(std::vector<DM>::const_iterator& it) const {
100  return join_primitives_gen<DM>(it);
101  }
102 
103  void ConstantMX::eval_mx(const std::vector<MX>& arg, std::vector<MX>& res,
104  const std::vector<bool>& unique) const {
105  res[0] = shared_from_this<MX>();
106  }
107 
108  void ConstantMX::ad_forward(const std::vector<std::vector<MX> >& fseed,
109  std::vector<std::vector<MX> >& fsens) const {
110  MX zero_sens(size1(), size2());
111  for (casadi_int d=0; d<fsens.size(); ++d) {
112  fsens[d][0] = zero_sens;
113  }
114  }
115 
116  void ConstantMX::ad_reverse(const std::vector<std::vector<MX> >& aseed,
117  std::vector<std::vector<MX> >& asens) const {
118  }
119 
120  int ConstantMX::sp_forward(const bvec_t** arg, bvec_t** res, casadi_int* iw, bvec_t* w) const {
121  std::fill_n(res[0], nnz(), 0);
122  return 0;
123  }
124 
125  int ConstantMX::eval_activity(const bvec_t** arg, bvec_t** res, casadi_int* iw, bvec_t* w) const {
126  // Sound default for an unknown constant flavor; value-bearing subclasses refine per nonzero
127  std::fill_n(res[0], nnz(), ~static_cast<bvec_t>(0));
128  return 0;
129  }
130 
131  void ConstantMX::nonzeros_to_activity(const double* v, bvec_t* res) const {
132  // Helper: set bit per nonzero where the stored value is nonzero
133  for (casadi_int k=0; k<nnz(); ++k) res[k] = (v[k]!=0) ? ~static_cast<bvec_t>(0) : 0;
134  }
135 
136  int ConstantMX::sp_reverse(bvec_t** arg, bvec_t** res, casadi_int* iw, bvec_t* w) const {
137  std::fill_n(res[0], nnz(), 0);
138  return 0;
139  }
140 
142  const std::vector<casadi_int>& arg,
143  const std::vector<casadi_int>& res,
144  const std::vector<bool>& arg_is_ref,
145  std::vector<bool>& res_is_ref) const {
146  // Print the constant
147  std::string ind = g.constant(x_.nonzeros());
148 
149  if (g.elide_copy(nnz())) {
150  g << g.work(res[0], nnz(), true) << " = " << ind << ";\n";
151  res_is_ref[0] = true;
152  } else {
153  // Copy the constant to the work vector
154  g << g.copy(ind, nnz(), g.work(res[0], nnz(), false)) << '\n';
155  }
156  }
157 
158  bool ConstantMX::__nonzero__() const {
159  if (numel()!=1) casadi_error("Can only determine truth value of scalar MX.");
160  if (nnz()!=1) casadi_error("Can only determine truth value of dense scalar MX.");
161  return !is_zero();
162  }
163 
164  ConstantMX* ConstantMX::create(const Sparsity& sp, casadi_int val) {
165  if (sp.is_empty(true)) {
166  return ZeroByZero::getInstance();
167  } else {
168  switch (val) {
169  case 0: return new Constant<CompiletimeConst<0> >(sp);
170  case 1: return new Constant<CompiletimeConst<1> >(sp);
171  case -1: return new Constant<CompiletimeConst<(-1)> >(sp);
172  default: return new Constant<RuntimeConst<casadi_int> >(sp, val);
173  }
174  }
175  }
176 
177  ConstantMX* ConstantMX::create(const Sparsity& sp, double val) {
178  if (sp.is_empty(true)) {
179  return ZeroByZero::getInstance();
180  } else {
181  casadi_int intval = static_cast<casadi_int>(val);
182  if (static_cast<double>(intval)-val==0) {
183  return create(sp, intval);
184  } else {
185  return new Constant<RuntimeConst<double> >(sp, val);
186  }
187  }
188  }
189 
191  if (val.nnz()==0) {
192  return create(val.sparsity(), 0);
193  } else if (val.is_scalar()) {
194  return create(val.sparsity(), val.scalar());
195  } else {
196  // Check if all values are the same
197  const std::vector<double> vdata = val.nonzeros();
198  double v = vdata[0];
199  for (auto&& i : vdata) {
200  if (i!=v) {
201  // Values not all the same
202  return new ConstantDM(val);
203  }
204  }
205 
206  // All values identical if reached this point
207  return create(val.sparsity(), v);
208  }
209  }
210 
211  ConstantMX* ConstantMX::create(const Sparsity& sp, const std::string& fname) {
212  if (sp.nnz()==0) {
213  return create(sp, 0);
214  } else {
215  return new ConstantFile(sp, fname);
216  }
217  }
218 
219  ConstantMX* ConstantMX::create(const DM& x, const std::string& name) {
220  return new ConstantPool(x, name);
221  }
222 
223  bool ConstantDM::is_zero() const {
224  return x_.is_zero();
225  }
226 
227  bool ConstantDM::is_one() const {
228  return x_.is_one();
229  }
230 
232  return x_.is_minus_one();
233  }
234 
235  bool ConstantDM::is_half() const {
236  return x_.is_half();
237  }
238 
239  bool ConstantDM::is_value(double val) const {
240  return x_.is_value(val);
241  }
242 
243  bool ConstantDM::is_inf() const {
244  return x_.is_inf();
245  }
246 
248  return x_.is_minus_inf();
249  }
250 
251  bool ConstantDM::is_integer() const {
252  return x_.is_integer();
253  }
254 
256  return x_.is_nonnegative();
257  }
258 
259  bool ConstantDM::is_eye() const {
260  return x_.is_eye();
261  }
262 
263  // MX ConstantMX::get_mac(const MX& y) const {
264  // if (y.is_constant()) {
265  // // Constant folding
266  // DM xv = get_DM();
267  // DM yv = y->get_DM();
268  // return mul(xv, yv);
269  // } else {
270  // return MXNode::get_mac(y);
271  // }
272  // }
273 
274  MX ConstantMX::get_dot(const MX& y) const {
275  if (y.is_constant()) {
276  // Constant folding
277  DM xv = get_DM();
278  DM yv = y->get_DM();
279  return dot(xv, yv);
280  } else {
281  return MXNode::get_dot(y);
282  }
283  }
284 
285  bool ConstantDM::is_equal(const MXNode* node, casadi_int depth) const {
286  // Check if same node
287  const ConstantDM* n = dynamic_cast<const ConstantDM*>(node);
288  if (n==nullptr) return false;
289 
290  // Check sparsity
291  if (this->sparsity()!=node->sparsity()) return false;
292 
293  // Check indices
294  if (!std::equal(x_->begin(), x_->end(), n->x_->begin())) return false;
295 
296  return true;
297  }
298 
299  std::string ZeroByZero::disp(const std::vector<std::string>& arg) const {
300  return "0x0";
301  }
302 
303  MX ZeroByZero::get_project(const Sparsity& sp, bool unique) const {
304  return shared_from_this<MX>();
305  }
306 
307  MX ZeroByZero::get_nzref(const Sparsity& sp, const std::vector<casadi_int>& nz,
308  bool unique) const {
309  casadi_assert_dev(nz.empty());
310  return MX::zeros(sp);
311  }
312 
313  MX ZeroByZero::get_nzassign(const MX& y, const std::vector<casadi_int>& nz) const {
314  return shared_from_this<MX>();
315  }
316 
318  return shared_from_this<MX>();
319  }
320 
321  MX ZeroByZero::get_unary(casadi_int op, bool unique) const {
322  return shared_from_this<MX>();
323  }
324 
325  MX ZeroByZero::_get_binary(casadi_int op, const MX& y, bool ScX, bool ScY,
326  bool unique_x, bool unique_y) const {
327  return shared_from_this<MX>();
328  }
329 
331  casadi_assert_dev(sp.is_empty());
332  return MX::zeros(sp);
333  }
334 
337  s.pack("ConstantMX::type", 'a');
338  }
339 
342  DM v = get_DM();
343  s.pack("ConstantMX::nonzeros", v.nonzeros());
344  }
345 
347  std::vector<double> v;
348  s.unpack("ConstantMX::nonzeros", v);
349  x_ = DM(sparsity_, v);
350  }
351 
354  s.pack("ConstantMX::type", 'z');
355  }
356 
358  // No need to serialize body at all. All info is in header.
359  }
360 
362  char t;
363  s.unpack("ConstantMX::type", t);
364  switch (t) {
365  case 'a': return new ConstantDM(s);
366  case 'f': return new ConstantFile(s);
367  case 'p': return new ConstantPool(s);
368  case 'z': return ZeroByZero::getInstance();
369  case 'D':
371  case 'I':
372  return new Constant<RuntimeConst<casadi_int> >(s,
374  case '0':
376  case '1':
378  case 'm':
379  return new Constant<CompiletimeConst<(-1)> >(s, CompiletimeConst<(-1)>::deserialize(s));
380  default:
381  casadi_error("Error deserializing");
382  }
383  }
384 
387  s.pack("ConstantFile::type", 'f');
388  }
389 
392  s.pack("ConstantFile::fname", fname_);
393  s.pack("ConstantFile::x", x_);
394  }
395 
397  s.unpack("ConstantFile::fname", fname_);
398  s.unpack("ConstantFile::x", x_);
399  }
400 
401  ConstantFile::ConstantFile(const Sparsity& sp, const std::string& fname) :
402  ConstantMX(sp), fname_(fname) {
403  x_.resize(sp.nnz());
404  int ret = casadi_file_slurp(fname_.c_str(), nnz(), get_ptr(x_));
405  if (ret==1) casadi_error("Cannot open file '" + str(fname) + "'.");
406  if (ret==2) casadi_error("Failed to read a double from '" + str(fname) + "'. "
407  "Expected " + str(sp.nnz()) + " doubles.");
408  }
409 
410  std::string ConstantFile::disp(const std::vector<std::string>& arg) const {
411  return "from_file('" + fname_ + "'): " + DM(sparsity(), x_, false).get_str();
412  }
413 
414  double ConstantFile::to_double() const {
415  casadi_error("Not defined for ConstantFile");
416  }
417 
418  casadi_int ConstantFile::to_int() const {
419  casadi_error("Not defined for ConstantFile");
420  }
421 
423  casadi_error("Not defined for ConstantFile");
424  }
425 
426  void ConstantFile::codegen_incref(CodeGenerator& g, std::set<void*>& added) const {
427  g << g.file_slurp(fname_, nnz(), g.rom_double(this)) << ";\n";
428  }
429 
431  g.define_rom_double(this, nnz());
432  }
433 
435  const std::vector<casadi_int>& arg,
436  const std::vector<casadi_int>& res,
437  const std::vector<bool>& arg_is_ref,
438  std::vector<bool>& res_is_ref) const {
439  if (nnz()==1) {
440  g << g.workel(res[0]) << " = " << g.rom_double(this) << "[0];\n";
441  } else if (g.elide_copy(nnz())) {
442  g << g.work(res[0], nnz(), true) << " = " << g.rom_double(this) << ";\n";
443  res_is_ref[0] = true;
444  } else {
445  g << g.copy(g.rom_double(this), nnz(), g.work(res[0], nnz(), false)) << '\n';
446  }
447  }
448 
449  ConstantPool::ConstantPool(const DM& x, const std::string& name) :
450  ConstantMX(x.sparsity()), name_(name), x_(x.nonzeros()) {
451  }
452 
453  std::string ConstantPool::disp(const std::vector<std::string>& arg) const {
454  return "constant_pool('" + name_ + "'): " + DM(sparsity(), x_, false).get_str();
455  }
456 
457  double ConstantPool::to_double() const {
458  casadi_error("Not defined for ConstantPool");
459  }
460 
461  casadi_int ConstantPool::to_int() const {
462  casadi_error("Not defined for ConstantPool");
463  }
464 
466  casadi_error("Not defined for ConstantPool");
467  }
468 
470  const std::vector<casadi_int>& arg,
471  const std::vector<casadi_int>& res,
472  const std::vector<bool>& arg_is_ref,
473  std::vector<bool>& res_is_ref) const {
474  if (nnz()==1) {
475  g << g.workel(res[0]) << " = " << g.pool_double(name_) << "[0];\n";
476  } else if (g.elide_copy(nnz())) {
477  g << g.work(res[0], nnz(), true) << " = " << g.pool_double(name_) << ";\n";
478  res_is_ref[0] = true;
479  } else {
480  g << g.copy(g.pool_double(name_), nnz(), g.work(res[0], nnz(), false)) << '\n';
481  }
482  }
483 
486  g.add_include("string.h");
487  }
488 
491  s.pack("ConstantPool::name", name_);
492  s.pack("ConstantPool::x", x_);
493  }
494 
497  s.pack("ConstantPool::type", 'p');
498  }
499 
501  s.unpack("ConstantPool::name", name_);
502  s.unpack("ConstantPool::x", x_);
503  }
504 
505 } // namespace casadi
Helper class for C code generation.
void define_pool_double(const std::string &name, const std::vector< double > &def)
Allocate file scope double writeable memory.
std::string work(casadi_int n, casadi_int sz, bool is_ref) const
std::string pool_double(const std::string &name) const
Access file scope double writeable memory.
std::string copy(const std::string &arg, std::size_t n, const std::string &res)
Create a copy operation.
std::string constant(const std::vector< casadi_int > &v)
Represent an array constant; adding it when new.
std::string rom_double(const void *id) const
Access file scope double read-only memory.
std::string workel(casadi_int n) const
void define_rom_double(const void *id, casadi_int size)
Allocate file scope double read-only memory.
void add_include(const std::string &new_include, bool relative_path=false, const std::string &use_ifdef=std::string())
Add an include file optionally using a relative path "..." instead of an absolute path <....
std::string file_slurp(const std::string &fname, casadi_int n, const std::string &a)
Slurp a file.
bool elide_copy(casadi_int sz)
A constant given as a DM.
void serialize_type(SerializingStream &s) const override
Serialize type information.
bool is_equal(const MXNode *node, casadi_int depth) const override
Check if two nodes are equivalent up to a given depth.
bool is_integer() const override
Check if integer.
void generate(CodeGenerator &g, const std::vector< casadi_int > &arg, const std::vector< casadi_int > &res, const std::vector< bool > &arg_is_ref, std::vector< bool > &res_is_ref) const override
Generate code for the operation.
bool is_one() const override
Check if identically one.
bool is_half() const override
Check if identically 0.5.
Matrix< double > x_
data member
void serialize_body(SerializingStream &s) const override
Serialize an object without type information.
bool is_value(double val) const override
Check if a certain value.
bool is_minus_inf() const override
Check if identically -inf.
bool is_zero() const override
Check if a particular integer value.
ConstantDM(const Matrix< double > &x)
Constructor.
bool is_inf() const override
Check if identically inf.
bool is_eye() const override
Check if identity matrix.
bool is_nonnegative() const override
Check if not negative.
bool is_minus_one() const override
Check if identically minus one.
Matrix< double > get_DM() const override
Get the value (only for constant nodes)
A constant to be read from a file.
void serialize_body(SerializingStream &s) const override
Serialize an object without type information.
void generate(CodeGenerator &g, const std::vector< casadi_int > &arg, const std::vector< casadi_int > &res, const std::vector< bool > &arg_is_ref, std::vector< bool > &res_is_ref) const override
Generate code for the operation.
Matrix< double > get_DM() const override
Get the value (only for constant nodes)
double to_double() const override
Get the value (only for scalar constant nodes)
std::string disp(const std::vector< std::string > &arg) const override
Print expression.
casadi_int to_int() const override
Get the value (only for scalar constant nodes)
void add_dependency(CodeGenerator &g) const override
Add a dependent function.
void serialize_type(SerializingStream &s) const override
Serialize type information.
ConstantFile(const Sparsity &x, const std::string &fname)
Constructor.
std::vector< double > x_
nonzeros
void codegen_incref(CodeGenerator &g, std::set< void * > &added) const override
Codegen incref.
std::string fname_
file to read from
Represents an MX that is only composed of a constant.
Definition: constant_mx.hpp:48
void eval_mx(const std::vector< MX > &arg, std::vector< MX > &res, const std::vector< bool > &unique={}) const override
Evaluate symbolically (MX)
T join_primitives_gen(typename std::vector< T >::const_iterator &it) const
Join an expression along symbolic primitives (template)
Definition: constant_mx.cpp:79
void primitives(std::vector< MX >::iterator &it) const override
Get symbolic primitives.
Definition: constant_mx.cpp:53
int sp_forward(const bvec_t **arg, bvec_t **res, casadi_int *iw, bvec_t *w) const override
Propagate sparsity forward.
void nonzeros_to_activity(const double *v, bvec_t *res) const
Set per-nonzero activity from a raw value buffer.
Matrix< double > get_DM() const override=0
Get the value (only for constant nodes)
MX join_primitives(std::vector< MX >::const_iterator &it) const override
Join an expression along symbolic primitives.
Definition: constant_mx.cpp:87
void split_primitives(const MX &x, std::vector< MX >::iterator &it) const override
Split up an expression along symbolic primitives.
Definition: constant_mx.cpp:66
~ConstantMX() override=0
Destructor.
Definition: constant_mx.cpp:38
void ad_reverse(const std::vector< std::vector< MX > > &aseed, std::vector< std::vector< MX > > &asens) const override
Calculate reverse mode directional derivatives.
int sp_reverse(bvec_t **arg, bvec_t **res, casadi_int *iw, bvec_t *w) const override
Propagate sparsity backwards.
casadi_int n_primitives() const override
Get the number of symbolic primitives.
Definition: constant_mx.cpp:45
static MXNode * deserialize(DeserializingStream &s)
Deserialize with type disambiguation.
int eval_activity(const bvec_t **arg, bvec_t **res, casadi_int *iw, bvec_t *w) const override
Propagate signal activity forward (sound default; subclasses refine)
static ConstantMX * create(const Sparsity &sp, casadi_int val)
MX get_dot(const MX &y) const override
Matrix multiplication.
ConstantMX(const Sparsity &sp)
Destructor.
Definition: constant_mx.cpp:34
void ad_forward(const std::vector< std::vector< MX > > &fseed, std::vector< std::vector< MX > > &fsens) const override
Calculate forward mode directional derivatives.
bool __nonzero__() const override
Return truth value of an MX.
void split_primitives_gen(const T &x, typename std::vector< T >::iterator &it) const
Split up an expression along primitives (template)
Definition: constant_mx.cpp:60
bool is_valid_input() const override
Check if valid function input.
Definition: constant_mx.cpp:41
A constant to be managed by a pool.
std::vector< double > x_
nonzeros
Matrix< double > get_DM() const override
Get the value (only for constant nodes)
void generate(CodeGenerator &g, const std::vector< casadi_int > &arg, const std::vector< casadi_int > &res, const std::vector< bool > &arg_is_ref, std::vector< bool > &res_is_ref) const override
Generate code for the operation.
casadi_int to_int() const override
Get the value (only for scalar constant nodes)
std::string disp(const std::vector< std::string > &arg) const override
Print expression.
double to_double() const override
Get the value (only for scalar constant nodes)
void add_dependency(CodeGenerator &g) const override
Add a dependent function.
ConstantPool(const DM &x, const std::string &name)
Constructor.
void serialize_type(SerializingStream &s) const override
Serialize type information.
std::string name_
pool identifier
void serialize_body(SerializingStream &s) const override
Serialize an object without type information.
A constant with all entries identical.
Helper class for Serialization.
void unpack(Sparsity &e)
Reconstruct an object from the input stream.
casadi_int nnz() const
Get the number of (structural) non-zero elements.
static MX zeros(casadi_int nrow=1, casadi_int ncol=1)
Create a dense matrix or a matrix with specified sparsity with all entries zero.
bool is_scalar(bool scalar_and_dense=false) const
Check if the matrix expression is scalar.
Node class for MX objects.
Definition: mx_node.hpp:51
virtual void serialize_type(SerializingStream &s) const
Serialize type information.
Definition: mx_node.cpp:535
virtual const std::string & name() const
Get the name.
Definition: mx_node.cpp:195
virtual casadi_int n_primitives() const
Get the number of symbolic primitives.
Definition: mx_node.cpp:144
virtual bool is_zero() const
Check if identically zero.
Definition: mx_node.hpp:71
virtual DM get_DM() const
Get the value (only for constant nodes)
Definition: mx_node.cpp:487
virtual casadi_int ind() const
Definition: mx_node.cpp:212
virtual MX join_primitives(std::vector< MX >::const_iterator &it) const
Join an expression along symbolic primitives.
Definition: mx_node.cpp:183
virtual MX get_dot(const MX &y) const
Inner product.
Definition: mx_node.cpp:1093
Sparsity sparsity_
The sparsity pattern.
Definition: mx_node.hpp:829
casadi_int numel() const
Get shape.
Definition: mx_node.hpp:426
const Sparsity & sparsity() const
Get the sparsity.
Definition: mx_node.hpp:410
casadi_int size2() const
Definition: mx_node.hpp:429
casadi_int nnz(casadi_int i=0) const
Definition: mx_node.hpp:427
virtual void serialize_body(SerializingStream &s) const
Serialize an object without type information.
Definition: mx_node.cpp:530
virtual void primitives(std::vector< MX >::iterator &it) const
Get symbolic primitives.
Definition: mx_node.cpp:156
void set_sparsity(const Sparsity &sparsity)
Set the sparsity.
Definition: mx_node.cpp:224
casadi_int size1() const
Definition: mx_node.hpp:428
virtual void split_primitives(const MX &x, std::vector< MX >::iterator &it) const
Split up an expression along symbolic primitives.
Definition: mx_node.cpp:160
MX - Matrix expression.
Definition: mx.hpp:92
bool is_constant() const
Check if constant.
Definition: mx.cpp:799
Sparse matrix class. SX and DM are specializations.
Definition: matrix_decl.hpp:99
std::vector< Scalar > & nonzeros()
bool is_inf() const
check if the matrix is inf (note that false negative answers are possible)
bool is_one() const
check if the matrix is 1 (note that false negative answers are possible)
bool is_value(double val) const
check if the matrix is value
const Sparsity & sparsity() const
Const access the sparsity - reference to data member.
bool is_minus_one() const
check if the matrix is -1 (note that false negative answers are possible)
bool is_half() const
check if the matrix is 0.5 (note that false negative answers are possible)
bool is_eye() const
check if the matrix is an identity matrix (note that false negative answers
bool is_minus_inf() const
check if the matrix is -inf (note that false negative answers are possible)
bool is_zero() const
check if the matrix is 0 (note that false negative answers are possible)
bool is_nonnegative() const
check if the matrix is not negative
bool is_integer() const
Check if the matrix is integer-valued.
std::string get_str(bool more=false) const
Get string representation.
const Scalar scalar() const
Convert to scalar type.
Helper class for Serialization.
void pack(const Sparsity &e)
Serializes an object to the output stream.
General sparsity class.
Definition: sparsity.hpp:106
casadi_int nnz() const
Get the number of (structural) non-zeros.
Definition: sparsity.cpp:148
bool is_empty(bool both=false) const
Check if the sparsity is empty.
Definition: sparsity.cpp:144
MX _get_binary(casadi_int op, const MX &y, bool ScX, bool ScY, bool unique_x=false, bool unique_y=false) const override
Get a binary operation operation.
MX get_nzassign(const MX &y, const std::vector< casadi_int > &nz) const override
Assign the nonzeros of a matrix to another matrix.
MX get_transpose() const override
Transpose.
MX get_reshape(const Sparsity &sp) const override
Reshape.
static ZeroByZero * getInstance()
Get a pointer to the singleton.
MX get_unary(casadi_int op, bool unique) const override
Get a unary operation.
void serialize_body(SerializingStream &s) const override
Serialize type information.
std::string disp(const std::vector< std::string > &arg) const override
Print expression.
MX get_nzref(const Sparsity &sp, const std::vector< casadi_int > &nz, bool unique=false) const override
Get the nonzeros of matrix.
void serialize_type(SerializingStream &s) const override
Serialize specific part of node.
MX get_project(const Sparsity &sp, bool unique=false) const override
Get densification.
The casadi namespace.
Definition: archiver.cpp:28
unsigned long long bvec_t
std::string str(const T &v)
String representation, any type.
T dot(const std::vector< T > &a, const std::vector< T > &b)
T * get_ptr(std::vector< T > &v)
Get a pointer to the data contained in the vector.
Matrix< double > DM
Definition: dm_fwd.hpp:33
static CompiletimeConst deserialize(DeserializingStream &s)
static RuntimeConst deserialize(DeserializingStream &s)