|
bool | apron::is_unop (ap_texpr_op_t op) |
| Whether the operator is unary. More...
|
|
bool | apron::is_binop (ap_texpr_op_t op) |
| Whether the operator is binary. More...
|
|
std::ostream & | apron::operator<< (std::ostream &os, const texpr0 &s) |
|
void | apron::apxx_texpr0_ostream (std::ostream &os, ap_texpr0_t *a, std::vector< std::string > *names) |
|
std::ostream & | apron::operator<< (std::ostream &os, const texpr0::const_iterator &s) |
|
texpr0::builder | apron::unary (ap_texpr_op_t op, const texpr0::builder &a, ap_texpr_rtype_t rtype=AP_RTYPE_REAL, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::binary (ap_texpr_op_t op, const texpr0::builder &a, const texpr0::builder &b, ap_texpr_rtype_t rtype=AP_RTYPE_REAL, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::add (const texpr0::builder &a, const texpr0::builder &b, ap_texpr_rtype_t rtype=AP_RTYPE_REAL, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::sub (const texpr0::builder &a, const texpr0::builder &b, ap_texpr_rtype_t rtype=AP_RTYPE_REAL, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::mul (const texpr0::builder &a, const texpr0::builder &b, ap_texpr_rtype_t rtype=AP_RTYPE_REAL, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::div (const texpr0::builder &a, const texpr0::builder &b, ap_texpr_rtype_t rtype=AP_RTYPE_REAL, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::mod (const texpr0::builder &a, const texpr0::builder &b, ap_texpr_rtype_t rtype=AP_RTYPE_REAL, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::pow (const texpr0::builder &a, const texpr0::builder &b, ap_texpr_rtype_t rtype=AP_RTYPE_REAL, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::neg (const texpr0::builder &a, ap_texpr_rtype_t rtype=AP_RTYPE_REAL, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::cast (const texpr0::builder &a, ap_texpr_rtype_t rtype, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::floor (const texpr0::builder &a) |
|
texpr0::builder | apron::ceil (const texpr0::builder &a) |
|
texpr0::builder | apron::trunc (const texpr0::builder &a) |
|
texpr0::builder | apron::sqrt (const texpr0::builder &a, ap_texpr_rtype_t rtype=AP_RTYPE_REAL, ap_texpr_rdir_t rdir=AP_RDIR_NEAREST) |
|
texpr0::builder | apron::operator+ (const texpr0::builder &a) |
|
texpr0::builder | apron::operator- (const texpr0::builder &a) |
|
texpr0::builder | apron::operator+ (const texpr0::builder &a, const texpr0::builder &b) |
|
texpr0::builder | apron::operator- (const texpr0::builder &a, const texpr0::builder &b) |
|
texpr0::builder | apron::operator * (const texpr0::builder &a, const texpr0::builder &b) |
|
texpr0::builder | apron::operator/ (const texpr0::builder &a, const texpr0::builder &b) |
|
texpr0::builder | apron::operator% (const texpr0::builder &a, const texpr0::builder &b) |
|
texpr0::builder | apron::operator^ (const texpr0::builder &a, const texpr0::builder &b) |
|