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>
77 friend class BinarySXNode;
106 static SXElem sym(
const std::string& name);
128 SXElem& operator=(
double scalar);
138 void disp(std::ostream& stream,
bool more=
false)
const;
150 const SXNode* operator->()
const;
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;
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;
254 int get_temp()
const;
257 void set_temp(
int t)
const;
270 void assignIfDuplicate(
const SXElem& scalar, casadi_int depth=1);
299 #ifdef CASADI_WITH_THREADSAFE_SYMBOLICS
300 static std::mutex mutex_temp;
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);
343 class CASADI_EXPORT numeric_limits<
casadi::SXElem>{
345 static const bool is_specialized =
true;
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;
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;
Helper class for Serialization.
Sparse matrix class. SX and DM are specializations.
Base class for objects that have a natural string representation.
The basic scalar symbolic class of CasADi.
friend SXElem if_else(const SXElem &x, const SXElem &y, const SXElem &z)
Ternary if_else: x ? y : z.
bool is_null()
SXElem nodes are not allowed to be null.
static std::string type_name()
Type name.
Internal node class for SX.
Helper class for Serialization.
static const SXElem minus_inf
static const SXElem minus_one
static casadi::SXElem min()
bool is_equal(double x, double y, casadi_int depth=0)
double if_else_zero(double x, double y)
Conditional assignment.
template class CASADI_EXPORT Matrix< SXElem >
bool is_regular(const std::vector< T > &v)
Checks if array does not contain NaN or Inf.