26 #ifndef CASADI_SX_ELEMENT_HPP
27 #define CASADI_SX_ELEMENT_HPP
30 #include "printable.hpp"
31 #include "exception.hpp"
32 #include "casadi_limits.hpp"
33 #include "matrix_fwd.hpp"
34 #include "generic_expression.hpp"
35 #include "serializing_stream.hpp"
47 #ifdef CASADI_WITH_THREAD
49 #ifdef CASADI_WITH_THREAD_MINGW
50 #include <mingw.mutex.h>
74 class CASADI_EXPORT
SXElem :
public GenericExpression<SXElem>,
75 public Printable<SXElem> {
77 friend class BinarySXNode;
106 static SXElem sym(
const std::string& name);
110 SXElem(SXNode* node,
bool dummy);
123 static SXElem create(SXNode* node);
128 SXElem& operator=(
double scalar);
135 static std::string type_name() {
return "SXElem";}
138 void disp(std::ostream& stream,
bool more=
false)
const;
150 const SXNode* operator->()
const;
151 SXNode* operator->();
157 static SXElem binary(casadi_int op,
const SXElem& x,
const SXElem& y,
158 bool unique_x=
false,
bool unique_y=
false);
159 static SXElem unary(casadi_int op,
const SXElem& x,
bool unique=
false);
160 static std::vector<SXElem> call(
const Function& f,
const std::vector<SXElem>& deps);
167 bool __nonzero__()
const;
174 bool is_leaf()
const;
175 bool is_constant()
const;
176 bool is_integer()
const;
177 bool is_symbolic()
const;
181 bool is_commutative()
const;
183 bool is_almost_zero(
double tol)
const;
185 bool is_minus_one()
const;
186 bool is_half()
const;
187 bool is_value(
double val)
const;
190 bool is_minus_inf()
const;
191 const std::string& name()
const;
192 casadi_int op()
const;
193 bool is_op(casadi_int op)
const;
194 bool is_call()
const;
195 bool is_output()
const;
196 bool has_output()
const;
197 Function which_function()
const;
198 casadi_int which_output()
const;
206 bool is_nonnegative()
const;
207 SXElem dep(casadi_int ch=0)
const;
210 explicit operator double()
const;
213 explicit operator casadi_int()
const;
218 bool is_doubled()
const;
223 casadi_int n_dep()
const;
228 SXElem get_output(casadi_int oind)
const;
235 casadi_int __hash__()
const;
240 SXElem operator-()
const;
250 static bool is_equal(
const SXElem& x,
const SXElem& y, casadi_int depth=0);
254 int get_temp()
const;
257 void set_temp(
int t)
const;
270 void assignIfDuplicate(
const SXElem& scalar, casadi_int depth=1);
277 SXNode* assignNoDelete(
const SXElem& scalar);
283 inline bool is_null() {
return false;}
288 friend inline SXElem if_else(
const SXElem& x,
const SXElem& y,
const SXElem& z) {
289 return if_else_zero(x, y) + if_else_zero(!x, z);
295 void serialize(SerializingStream& s)
const;
297 static SXElem deserialize(DeserializingStream& s);
299 #ifdef CASADI_WITH_THREADSAFE_SYMBOLICS
300 static std::mutex mutex_temp;
309 class CASADI_EXPORT casadi_limits<SXElem>{
311 static bool is_zero(
const SXElem& val);
312 static bool is_equal(
const SXElem& x,
const SXElem& y, casadi_int depth);
313 static bool is_almost_zero(
const SXElem& val,
double tol);
314 static bool is_one(
const SXElem& val);
315 static bool is_minus_one(
const SXElem& val);
316 static bool is_half(
const SXElem& val);
317 static bool is_value(
const SXElem& val,
double v);
318 static bool is_nonnegative(
const SXElem& val);
319 static bool is_constant(
const SXElem& val);
320 static bool is_integer(
const SXElem& val);
321 static bool is_inf(
const SXElem& val);
322 static bool is_minus_inf(
const SXElem& val);
323 static bool is_nan(
const SXElem& val);
325 static const SXElem zero;
326 static const SXElem one;
327 static const SXElem two;
328 static const SXElem minus_one;
329 static const SXElem nan;
330 static const SXElem inf;
331 static const SXElem minus_inf;
343 class CASADI_EXPORT numeric_limits<
casadi::SXElem>{
345 static const bool is_specialized =
true;
347 static
casadi::SXElem max() throw();
348 static const
int digits = 0;
349 static const
int digits10 = 0;
350 static const
bool is_signed = false;
351 static const
bool is_integer = false;
352 static const
bool is_exact = false;
353 static const
int radix = 0;
354 static
casadi::SXElem epsilon() throw();
355 static
casadi::SXElem round_error() throw();
356 static const
int min_exponent = 0;
357 static const
int min_exponent10 = 0;
358 static const
int max_exponent = 0;
359 static const
int max_exponent10 = 0;
361 static const
bool has_infinity = true;
362 static const
bool has_quiet_NaN = true;
363 static const
bool has_signaling_NaN = false;
365 static const
bool has_denorm_loss = false;
366 static
casadi::SXElem infinity() throw();
367 static
casadi::SXElem quiet_NaN() throw();
370 static const
bool is_iec559 = false;
371 static const
bool is_bounded = false;
372 static const
bool is_modulo = false;
374 static const
bool traps = false;
375 static const
bool tinyness_before = false;
376 static const float_round_style round_style = round_toward_zero;
Sparse matrix class. SX and DM are specializations.
bool is_regular(const std::vector< T > &v)
Checks if array does not contain NaN or Inf.