|
C++ Mathematical Expression Toolkit (ExprTk) release
|
Classes | |
| struct | complex_type_tag |
| struct | epsilon_type |
| struct | epsilon_type< cmplx::complex_t > |
| struct | epsilon_type< double > |
| struct | epsilon_type< float > |
| struct | epsilon_type< long double > |
| struct | epsilon_type< mpfr::mpreal > |
| struct | epsilon_type< real::type > |
| struct | int_type_tag |
| struct | mpfrreal_type_tag |
| struct | my_real_type_tag |
| struct | number_type |
| struct | number_type< _int64_t > |
| struct | number_type< _uint64_t > |
| struct | number_type< cmplx::complex_t > |
| struct | number_type< double > |
| struct | number_type< float > |
| struct | number_type< int > |
| struct | number_type< long double > |
| struct | number_type< mpfr::mpreal > |
| struct | number_type< real::type > |
| struct | number_type< short > |
| struct | number_type< unsigned int > |
| struct | number_type< unsigned short > |
| struct | real_type_tag |
| struct | unknown_type_tag |
Typedefs | |
| using | complex_t = cmplx::complex_t |
Functions | |
| template<typename T> | |
| bool | is_nan_impl (const T v, real_type_tag) |
| template<typename T> | |
| int | to_int32_impl (const T v, real_type_tag) |
| template<typename T> | |
| _int64_t | to_int64_impl (const T v, real_type_tag) |
| template<typename T> | |
| _uint64_t | to_uint64_impl (const T v, real_type_tag) |
| template<typename T> | |
| bool | is_true_impl (const T v) |
| template<typename T> | |
| bool | is_false_impl (const T v) |
| template<typename T> | |
| T | abs_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | min_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | max_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | equal_impl (const T v0, const T v1, real_type_tag) |
| float | equal_impl (const float v0, const float v1, real_type_tag) |
| template<typename T> | |
| T | equal_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | nequal_impl (const T v0, const T v1, real_type_tag) |
| float | nequal_impl (const float v0, const float v1, real_type_tag) |
| template<typename T> | |
| T | nequal_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | modulus_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | modulus_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | pow_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | pow_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | logn_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | logn_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | root_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | root_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | round_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | roundn_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | roundn_impl (const T v0, const T, int_type_tag) |
| template<typename T> | |
| T | hypot_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | hypot_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | atan2_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | atan2_impl (const T, const T, int_type_tag) |
| template<typename T> | |
| T | shr_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | shr_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | shl_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | shl_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | sgn_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | sgn_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | and_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | and_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | nand_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | nand_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | or_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | or_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | nor_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | nor_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | xor_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | xor_impl (const T v0, const T v1, int_type_tag) |
| template<typename T> | |
| T | xnor_impl (const T v0, const T v1, real_type_tag) |
| template<typename T> | |
| T | xnor_impl (const T v0, const T v1, int_type_tag) |
| float | erf_impl (const float v) |
| double | erf_impl (const double v) |
| long double | erf_impl (const long double v) |
| template<typename T> | |
| T | erf_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | erf_impl (const T v, int_type_tag) |
| float | erfc_impl (const float v) |
| double | erfc_impl (const double v) |
| long double | erfc_impl (const long double v) |
| template<typename T> | |
| T | erfc_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | erfc_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | ncdf_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | ncdf_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | sinc_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | sinc_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | acosh_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | asinh_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | atanh_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | trunc_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | expm1_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | expm1_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | log1p_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | log1p_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | acos_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | asin_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | atan_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | ceil_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | cos_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | cosh_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | exp_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | floor_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | log_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | log10_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | log2_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | neg_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | pos_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | sin_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | sinh_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | sqrt_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | tan_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | tanh_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | cot_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | sec_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | csc_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | r2d_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | d2r_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | d2g_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | g2d_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | notl_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | frac_impl (const T v, real_type_tag) |
| template<typename T> | |
| T | const_pi_impl (real_type_tag) |
| template<typename T> | |
| T | const_e_impl (real_type_tag) |
| template<typename T> | |
| T | const_qnan_impl (real_type_tag) |
| template<typename T> | |
| T | abs_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | exp_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | log_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | log10_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | log2_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | neg_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | pos_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | ceil_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | floor_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | round_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | notl_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | sqrt_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | frac_impl (const T, int_type_tag) |
| template<typename T> | |
| T | trunc_impl (const T v, int_type_tag) |
| template<typename T> | |
| T | acos_impl (const T, int_type_tag) |
| template<typename T> | |
| T | acosh_impl (const T, int_type_tag) |
| template<typename T> | |
| T | asin_impl (const T, int_type_tag) |
| template<typename T> | |
| T | asinh_impl (const T, int_type_tag) |
| template<typename T> | |
| T | atan_impl (const T, int_type_tag) |
| template<typename T> | |
| T | atanh_impl (const T, int_type_tag) |
| template<typename T> | |
| T | cos_impl (const T, int_type_tag) |
| template<typename T> | |
| T | cosh_impl (const T, int_type_tag) |
| template<typename T> | |
| T | sin_impl (const T, int_type_tag) |
| template<typename T> | |
| T | sinh_impl (const T, int_type_tag) |
| template<typename T> | |
| T | tan_impl (const T, int_type_tag) |
| template<typename T> | |
| T | tanh_impl (const T, int_type_tag) |
| template<typename T> | |
| T | cot_impl (const T, int_type_tag) |
| template<typename T> | |
| T | sec_impl (const T, int_type_tag) |
| template<typename T> | |
| T | csc_impl (const T, int_type_tag) |
| template<typename T> | |
| bool | is_integer_impl (const T &v, real_type_tag) |
| template<typename T> | |
| bool | is_integer_impl (const T &, int_type_tag) |
| template<typename T> | |
| T | process_impl (const operator_type operation, const T arg) |
| template<typename T> | |
| T | process_impl (const operator_type operation, const T arg0, const T arg1) |
| template<typename T> | |
| T | process_impl (const operator_type operation, const T arg0, const T arg1, int_type_tag) |
| template<typename T> | |
| T | const_pi_impl (complex_type_tag) |
| template<typename T> | |
| T | const_e_impl (complex_type_tag) |
| bool | is_nan_impl (const cmplx::complex_t &v, complex_type_tag) |
| template<typename T> | |
| T | abs_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | acos_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | acosh_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | asin_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | asinh_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | atan_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | atanh_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | ceil_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | cos_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | cosh_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | exp_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | floor_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | log_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | log10_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | log2_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | neg_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | pos_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | sin_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | sinh_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | sqrt_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | tan_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | tanh_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | cot_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | sec_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | csc_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | r2d_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | d2r_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | d2g_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | g2d_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | notl_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | frac_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | trunc_impl (const T v, complex_type_tag) |
| template<typename T> | |
| int | to_int32_impl (const T v, complex_type_tag) |
| template<typename T> | |
| long long | to_int64_impl (const T v, complex_type_tag) |
| template<typename T> | |
| unsigned long long | to_uint64_impl (const T v, complex_type_tag) |
| bool | is_true_impl (const cmplx::complex_t v) |
| bool | is_false_impl (const cmplx::complex_t v) |
| template<typename T> | |
| T | expm1_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | nequal_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | sgn_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | log1p_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | erf_impl (T v, complex_type_tag) |
| template<typename T> | |
| T | erfc_impl (T v, complex_type_tag) |
| template<typename T> | |
| T | ncdf_impl (T v, complex_type_tag) |
| template<typename T> | |
| T | modulus_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | pow_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | logn_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | sinc_impl (T v, complex_type_tag) |
| template<typename T> | |
| T | xor_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | xnor_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | equal_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | round_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | roundn_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| bool | is_integer_impl (const T v, complex_type_tag) |
| template<typename T> | |
| T | root_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | hypot_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | atan2_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | shr_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | shl_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | and_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | nand_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | or_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | nor_impl (const T v0, const T v1, complex_type_tag) |
| template<typename T> | |
| T | const_pi_impl (mpfrreal_type_tag) |
| template<typename T> | |
| T | const_e_impl (mpfrreal_type_tag) |
| bool | is_nan_impl (const mpfr::mpreal &v, mpfrreal_type_tag) |
| template<typename T> | |
| int | to_int32_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| long long | to_int64_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| long long | to_uint64_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | abs_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | acos_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | acosh_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | asin_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | asinh_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | atan_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | atanh_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | ceil_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | cos_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | cosh_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | exp_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | floor_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | log_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | log10_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | log2_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | neg_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | pos_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | sin_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | sinh_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | sqrt_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | tan_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | tanh_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | cot_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | sec_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | csc_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | r2d_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | d2r_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | d2g_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | g2d_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | notl_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | frac_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | trunc_impl (const T &v, mpfrreal_type_tag) |
| bool | is_true_impl (const mpfr::mpreal &v) |
| bool | is_false_impl (const mpfr::mpreal &v) |
| template<typename T> | |
| T | expm1_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | min_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | max_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | nequal_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | sgn_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | log1p_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | erf_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | erfc_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | ncdf_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | modulus_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | pow_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | logn_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | sinc_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | xor_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | xnor_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | equal_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | round_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | roundn_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| bool | is_integer_impl (const T &v, mpfrreal_type_tag) |
| template<typename T> | |
| T | root_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | hypot_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | atan2_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | shr_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | shl_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | and_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | nand_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | or_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | nor_impl (const T &v0, const T &v1, mpfrreal_type_tag) |
| template<typename T> | |
| T | const_pi_impl (my_real_type_tag) |
| template<typename T> | |
| T | const_e_impl (my_real_type_tag) |
| bool | is_nan_impl (const real::type &v, my_real_type_tag) |
| template<typename T> | |
| T | abs_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | acos_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | acosh_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | asin_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | asinh_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | atan_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | atanh_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | ceil_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | cos_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | cosh_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | exp_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | floor_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | log_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | log10_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | log2_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | neg_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | pos_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | sin_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | sinh_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | sqrt_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | tan_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | tanh_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | cot_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | sec_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | csc_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | r2d_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | d2r_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | d2g_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | g2d_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | notl_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | frac_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | trunc_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| int | to_int32_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| long long | to_int64_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| unsigned long long | to_uint64_impl (const T v, my_real_type_tag) |
| bool | is_true_impl (const real::type v) |
| bool | is_false_impl (const real::type v) |
| template<typename T> | |
| T | expm1_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | nequal_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | sgn_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | log1p_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | erf_impl (T v, my_real_type_tag) |
| template<typename T> | |
| T | erfc_impl (T v, my_real_type_tag) |
| template<typename T> | |
| T | ncdf_impl (T v, my_real_type_tag) |
| template<typename T> | |
| T | modulus_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | pow_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | logn_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | sinc_impl (T v, my_real_type_tag) |
| template<typename T> | |
| T | xor_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | xnor_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | equal_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | round_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | roundn_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| bool | is_integer_impl (const T v, my_real_type_tag) |
| template<typename T> | |
| T | root_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | hypot_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | atan2_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | shr_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | shl_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | and_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | nand_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | or_impl (const T v0, const T v1, my_real_type_tag) |
| template<typename T> | |
| T | nor_impl (const T v0, const T v1, my_real_type_tag) |
Definition at line 68 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 129 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 88 of file exprtk_complex_adaptor.hpp.
References cmplx::abs().
|
inline |
Definition at line 1453 of file exprtk.hpp.
|
inline |
Definition at line 88 of file exprtk_real_adaptor.hpp.
References real::abs().
|
inline |
Definition at line 922 of file exprtk.hpp.
Referenced by equal_impl(), equal_impl(), equal_impl(), equal_impl(), erf_impl(), erf_impl(), expm1_impl(), log1p_impl(), log1p_impl(), log1p_impl(), ncdf_impl(), nequal_impl(), nequal_impl(), nequal_impl(), nequal_impl(), root_impl(), root_impl(), root_impl(), sinc_impl(), and sinc_impl().
|
inline |
Definition at line 130 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 89 of file exprtk_complex_adaptor.hpp.
References cmplx::acos().
|
inline |
Definition at line 89 of file exprtk_real_adaptor.hpp.
References real::acos().
|
inline |
Definition at line 1421 of file exprtk.hpp.
|
inline |
Definition at line 1467 of file exprtk.hpp.
|
inline |
Definition at line 131 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 90 of file exprtk_complex_adaptor.hpp.
References cmplx::log(), and cmplx::sqrt().
|
inline |
Definition at line 90 of file exprtk_real_adaptor.hpp.
References real::acosh().
|
inline |
Definition at line 1355 of file exprtk.hpp.
|
inline |
Definition at line 1468 of file exprtk.hpp.
|
inline |
Definition at line 350 of file exprtk_mpfr_adaptor.hpp.
References is_true_impl().
|
inline |
Definition at line 337 of file exprtk_complex_adaptor.hpp.
References is_true_impl().
|
inline |
Definition at line 1130 of file exprtk.hpp.
|
inline |
Definition at line 325 of file exprtk_real_adaptor.hpp.
References is_true_impl().
|
inline |
Definition at line 1124 of file exprtk.hpp.
References is_true_impl().
|
inline |
Definition at line 132 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 91 of file exprtk_complex_adaptor.hpp.
References cmplx::asin().
|
inline |
Definition at line 91 of file exprtk_real_adaptor.hpp.
References real::asin().
|
inline |
Definition at line 1422 of file exprtk.hpp.
|
inline |
Definition at line 1469 of file exprtk.hpp.
|
inline |
Definition at line 133 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 92 of file exprtk_complex_adaptor.hpp.
References cmplx::log(), and cmplx::sqrt().
|
inline |
Definition at line 92 of file exprtk_real_adaptor.hpp.
References real::asinh().
|
inline |
Definition at line 1361 of file exprtk.hpp.
|
inline |
Definition at line 1470 of file exprtk.hpp.
|
inline |
Definition at line 332 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 319 of file exprtk_complex_adaptor.hpp.
References cmplx::atan2().
|
inline |
Definition at line 307 of file exprtk_real_adaptor.hpp.
|
inline |
Definition at line 1072 of file exprtk.hpp.
|
inline |
Definition at line 1078 of file exprtk.hpp.
|
inline |
Definition at line 134 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 93 of file exprtk_complex_adaptor.hpp.
References cmplx::atan().
|
inline |
Definition at line 93 of file exprtk_real_adaptor.hpp.
References real::atan().
|
inline |
Definition at line 1423 of file exprtk.hpp.
|
inline |
Definition at line 1471 of file exprtk.hpp.
|
inline |
Definition at line 135 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 94 of file exprtk_complex_adaptor.hpp.
References cmplx::log(), and exprtk::details::numeric::log().
|
inline |
Definition at line 94 of file exprtk_real_adaptor.hpp.
References real::atanh().
|
inline |
Definition at line 1367 of file exprtk.hpp.
|
inline |
Definition at line 1472 of file exprtk.hpp.
|
inline |
Definition at line 136 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 95 of file exprtk_complex_adaptor.hpp.
References cmplx::ceil().
|
inline |
Definition at line 1460 of file exprtk.hpp.
|
inline |
Definition at line 95 of file exprtk_real_adaptor.hpp.
References real::ceil().
|
inline |
Definition at line 1424 of file exprtk.hpp.
|
inline |
|
inline |
Definition at line 163 of file exprtk_mpfr_adaptor.hpp.
References exprtk::details::constant::mpfr_round.
|
inline |
|
inline |
|
inline |
|
inline |
Definition at line 162 of file exprtk_mpfr_adaptor.hpp.
References exprtk::details::constant::mpfr_round.
|
inline |
|
inline |
Definition at line 1449 of file exprtk.hpp.
References exprtk::details::numeric::constant::pi.
Referenced by exprtk::symbol_table< T >::add_pi(), cosine_deg< T >::operator()(), and sine_deg< T >::operator()().
|
inline |
Definition at line 1451 of file exprtk.hpp.
|
inline |
Definition at line 137 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 96 of file exprtk_complex_adaptor.hpp.
References cmplx::cos().
|
inline |
Definition at line 96 of file exprtk_real_adaptor.hpp.
References real::cos().
|
inline |
Definition at line 1425 of file exprtk.hpp.
|
inline |
Definition at line 1473 of file exprtk.hpp.
|
inline |
Definition at line 138 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 97 of file exprtk_complex_adaptor.hpp.
References cmplx::cosh().
|
inline |
Definition at line 97 of file exprtk_real_adaptor.hpp.
References real::cosh().
|
inline |
Definition at line 1426 of file exprtk.hpp.
|
inline |
Definition at line 1474 of file exprtk.hpp.
|
inline |
Definition at line 151 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 110 of file exprtk_complex_adaptor.hpp.
References cmplx::tan().
|
inline |
Definition at line 110 of file exprtk_real_adaptor.hpp.
References real::cot().
|
inline |
Definition at line 1439 of file exprtk.hpp.
|
inline |
Definition at line 1479 of file exprtk.hpp.
|
inline |
Definition at line 153 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 112 of file exprtk_complex_adaptor.hpp.
References cmplx::sin().
|
inline |
Definition at line 112 of file exprtk_real_adaptor.hpp.
References real::csc().
|
inline |
Definition at line 1441 of file exprtk.hpp.
|
inline |
Definition at line 1481 of file exprtk.hpp.
|
inline |
Definition at line 156 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 115 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 115 of file exprtk_real_adaptor.hpp.
References real::d2g().
|
inline |
Definition at line 1444 of file exprtk.hpp.
|
inline |
Definition at line 155 of file exprtk_mpfr_adaptor.hpp.
References exprtk::details::constant::pi_180.
|
inline |
Definition at line 114 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::constant::pi_180.
|
inline |
Definition at line 114 of file exprtk_real_adaptor.hpp.
References real::d2r().
|
inline |
|
inline |
Definition at line 946 of file exprtk.hpp.
References abs_impl().
|
inline |
Definition at line 281 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 276 of file exprtk_complex_adaptor.hpp.
References abs_impl(), and exprtk::details::numeric::max().
|
inline |
Definition at line 953 of file exprtk.hpp.
|
inline |
Definition at line 256 of file exprtk_real_adaptor.hpp.
References abs_impl(), and exprtk::details::numeric::max().
|
inline |
Definition at line 940 of file exprtk.hpp.
References abs_impl().
|
inline |
Definition at line 1212 of file exprtk.hpp.
References exprtk::details::numeric::erf(), and exprtk_define_erf.
|
inline |
Definition at line 1211 of file exprtk.hpp.
Referenced by erf_impl(), erf_impl(), erfc_impl(), erfc_impl(), erfc_impl(), and ncdf_impl().
|
inline |
Definition at line 1213 of file exprtk.hpp.
References exprtk_define_erf.
|
inline |
Definition at line 218 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 1247 of file exprtk.hpp.
References erf_impl().
|
inline |
Definition at line 1218 of file exprtk.hpp.
References abs_impl(), erf_impl(), and exprtk::details::nodetype_T0oT1< T, T0, T1 >::result.
|
inline |
Definition at line 194 of file exprtk_complex_adaptor.hpp.
References abs_impl(), exp_impl(), and exprtk::details::nodetype_T0oT1< T, T0, T1 >::result.
|
inline |
Definition at line 194 of file exprtk_real_adaptor.hpp.
References real::erf().
|
inline |
Definition at line 1257 of file exprtk.hpp.
References exprtk::details::numeric::erfc(), and exprtk_define_erfc.
|
inline |
Definition at line 1256 of file exprtk.hpp.
Referenced by erfc_impl(), erfc_impl(), ncdf_impl(), ncdf_impl(), and ncdf_impl().
|
inline |
Definition at line 1258 of file exprtk.hpp.
References exprtk_define_erfc.
|
inline |
Definition at line 224 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 1273 of file exprtk.hpp.
References erfc_impl().
|
inline |
Definition at line 1263 of file exprtk.hpp.
References erf_impl(), and erfc_impl().
|
inline |
Definition at line 217 of file exprtk_complex_adaptor.hpp.
References erf_impl().
|
inline |
Definition at line 200 of file exprtk_real_adaptor.hpp.
References erf_impl().
|
inline |
Definition at line 139 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 98 of file exprtk_complex_adaptor.hpp.
References cmplx::exp().
|
inline |
Definition at line 1454 of file exprtk.hpp.
|
inline |
Definition at line 98 of file exprtk_real_adaptor.hpp.
References real::exp().
|
inline |
Definition at line 1427 of file exprtk.hpp.
Referenced by erf_impl().
|
inline |
Definition at line 176 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 153 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::abs(), and exprtk::details::numeric::exp().
|
inline |
Definition at line 1388 of file exprtk.hpp.
|
inline |
Definition at line 153 of file exprtk_real_adaptor.hpp.
References exprtk::details::numeric::abs(), and exprtk::details::numeric::exp().
|
inline |
Definition at line 1379 of file exprtk.hpp.
References abs_impl().
|
inline |
Definition at line 140 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 99 of file exprtk_complex_adaptor.hpp.
References cmplx::floor().
|
inline |
Definition at line 1461 of file exprtk.hpp.
|
inline |
Definition at line 99 of file exprtk_real_adaptor.hpp.
References real::floor().
|
inline |
Definition at line 1428 of file exprtk.hpp.
|
inline |
Definition at line 159 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 118 of file exprtk_complex_adaptor.hpp.
References cmplx::frac().
|
inline |
Definition at line 118 of file exprtk_real_adaptor.hpp.
References real::frac().
|
inline |
Definition at line 1447 of file exprtk.hpp.
References trunc_impl().
|
inline |
Definition at line 1465 of file exprtk.hpp.
|
inline |
Definition at line 157 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 116 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 116 of file exprtk_real_adaptor.hpp.
References real::g2d().
|
inline |
Definition at line 1445 of file exprtk.hpp.
|
inline |
Definition at line 326 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 313 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::sqrt().
|
inline |
Definition at line 1066 of file exprtk.hpp.
|
inline |
Definition at line 301 of file exprtk_real_adaptor.hpp.
References exprtk::details::numeric::sqrt().
|
inline |
Definition at line 1060 of file exprtk.hpp.
|
inline |
Definition at line 147 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 170 of file exprtk_mpfr_adaptor.hpp.
References is_true_impl().
|
inline |
Definition at line 147 of file exprtk_real_adaptor.hpp.
|
inline |
Definition at line 916 of file exprtk.hpp.
Referenced by exprtk::details::is_false(), nand_impl(), nand_impl(), nand_impl(), nand_impl(), nor_impl(), nor_impl(), nor_impl(), nor_impl(), xor_impl(), xor_impl(), xor_impl(), and xor_impl().
|
inline |
Definition at line 1490 of file exprtk.hpp.
|
inline |
Definition at line 306 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 1484 of file exprtk.hpp.
|
inline |
Definition at line 301 of file exprtk_complex_adaptor.hpp.
References modulus_impl().
|
inline |
Definition at line 281 of file exprtk_real_adaptor.hpp.
References modulus_impl().
|
inline |
Definition at line 83 of file exprtk_complex_adaptor.hpp.
References cmplx::complex_t::c_.
|
inline |
Definition at line 106 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 83 of file exprtk_real_adaptor.hpp.
References real::type::d_.
|
inline |
Definition at line 886 of file exprtk.hpp.
|
inline |
Definition at line 142 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 165 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 142 of file exprtk_real_adaptor.hpp.
|
inline |
Definition at line 910 of file exprtk.hpp.
Referenced by and_impl(), and_impl(), and_impl(), and_impl(), is_false_impl(), exprtk::details::is_true(), or_impl(), or_impl(), or_impl(), or_impl(), xnor_impl(), xnor_impl(), xnor_impl(), xnor_impl(), and xnor_impl().
|
inline |
Definition at line 142 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 101 of file exprtk_complex_adaptor.hpp.
References cmplx::log10().
|
inline |
Definition at line 1456 of file exprtk.hpp.
|
inline |
Definition at line 101 of file exprtk_real_adaptor.hpp.
References real::log10().
|
inline |
Definition at line 1430 of file exprtk.hpp.
|
inline |
Definition at line 212 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 178 of file exprtk_complex_adaptor.hpp.
References abs_impl(), and log_impl().
|
inline |
Definition at line 1410 of file exprtk.hpp.
|
inline |
Definition at line 178 of file exprtk_real_adaptor.hpp.
References abs_impl(), and log_impl().
|
inline |
Definition at line 1394 of file exprtk.hpp.
References abs_impl().
|
inline |
Definition at line 143 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 102 of file exprtk_complex_adaptor.hpp.
References cmplx::log(), and exprtk::details::numeric::constant::log2.
|
inline |
|
inline |
Definition at line 102 of file exprtk_real_adaptor.hpp.
References real::log2().
|
inline |
|
inline |
Definition at line 141 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 100 of file exprtk_complex_adaptor.hpp.
References cmplx::log().
|
inline |
Definition at line 1455 of file exprtk.hpp.
|
inline |
Definition at line 100 of file exprtk_real_adaptor.hpp.
References real::log().
|
inline |
Definition at line 1429 of file exprtk.hpp.
Referenced by log1p_impl(), and log1p_impl().
|
inline |
Definition at line 249 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 244 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::log().
|
inline |
Definition at line 1010 of file exprtk.hpp.
References logn_impl().
|
inline |
Definition at line 224 of file exprtk_real_adaptor.hpp.
References exprtk::details::numeric::log().
|
inline |
Definition at line 1004 of file exprtk.hpp.
Referenced by logn_impl().
|
inline |
Definition at line 189 of file exprtk_mpfr_adaptor.hpp.
References exprtk::details::numeric::max().
|
inline |
Definition at line 934 of file exprtk.hpp.
|
inline |
Definition at line 182 of file exprtk_mpfr_adaptor.hpp.
References exprtk::details::numeric::min().
|
inline |
Definition at line 928 of file exprtk.hpp.
|
inline |
Definition at line 237 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 232 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::modulus().
|
inline |
Definition at line 986 of file exprtk.hpp.
|
inline |
Definition at line 212 of file exprtk_real_adaptor.hpp.
References exprtk::details::numeric::modulus().
|
inline |
Definition at line 980 of file exprtk.hpp.
Referenced by is_integer_impl(), is_integer_impl(), root_impl(), root_impl(), and root_impl().
|
inline |
Definition at line 356 of file exprtk_mpfr_adaptor.hpp.
References is_false_impl().
|
inline |
Definition at line 343 of file exprtk_complex_adaptor.hpp.
References is_false_impl().
|
inline |
Definition at line 1142 of file exprtk.hpp.
|
inline |
Definition at line 331 of file exprtk_real_adaptor.hpp.
References is_false_impl().
|
inline |
Definition at line 1136 of file exprtk.hpp.
References is_false_impl().
|
inline |
Definition at line 230 of file exprtk_mpfr_adaptor.hpp.
References erfc_impl(), and exprtk::details::numeric::constant::sqrt2.
|
inline |
Definition at line 1285 of file exprtk.hpp.
References ncdf_impl().
|
inline |
Definition at line 1279 of file exprtk.hpp.
References erfc_impl(), and exprtk::details::numeric::constant::sqrt2.
Referenced by ncdf_impl().
|
inline |
Definition at line 223 of file exprtk_complex_adaptor.hpp.
References abs_impl(), erf_impl(), and exprtk::details::numeric::constant::sqrt2.
|
inline |
Definition at line 206 of file exprtk_real_adaptor.hpp.
References erfc_impl(), and exprtk::details::numeric::constant::sqrt2.
|
inline |
Definition at line 144 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 103 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 1458 of file exprtk.hpp.
|
inline |
Definition at line 103 of file exprtk_real_adaptor.hpp.
|
inline |
Definition at line 1432 of file exprtk.hpp.
|
inline |
Definition at line 966 of file exprtk.hpp.
References abs_impl().
|
inline |
Definition at line 196 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 162 of file exprtk_complex_adaptor.hpp.
References abs_impl().
|
inline |
Definition at line 974 of file exprtk.hpp.
|
inline |
Definition at line 162 of file exprtk_real_adaptor.hpp.
References abs_impl().
|
inline |
Definition at line 959 of file exprtk.hpp.
References abs_impl().
|
inline |
Definition at line 368 of file exprtk_mpfr_adaptor.hpp.
References is_false_impl().
|
inline |
Definition at line 355 of file exprtk_complex_adaptor.hpp.
References is_false_impl().
|
inline |
Definition at line 1166 of file exprtk.hpp.
|
inline |
Definition at line 343 of file exprtk_real_adaptor.hpp.
References is_false_impl().
|
inline |
Definition at line 1160 of file exprtk.hpp.
References is_false_impl().
|
inline |
Definition at line 158 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 117 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 1463 of file exprtk.hpp.
|
inline |
Definition at line 117 of file exprtk_real_adaptor.hpp.
References real::notl().
|
inline |
Definition at line 1446 of file exprtk.hpp.
|
inline |
Definition at line 362 of file exprtk_mpfr_adaptor.hpp.
References is_true_impl().
|
inline |
Definition at line 349 of file exprtk_complex_adaptor.hpp.
References is_true_impl().
|
inline |
Definition at line 1154 of file exprtk.hpp.
|
inline |
Definition at line 337 of file exprtk_real_adaptor.hpp.
References is_true_impl().
|
inline |
Definition at line 1148 of file exprtk.hpp.
References is_true_impl().
|
inline |
Definition at line 145 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 104 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 1459 of file exprtk.hpp.
|
inline |
Definition at line 104 of file exprtk_real_adaptor.hpp.
|
inline |
Definition at line 1433 of file exprtk.hpp.
|
inline |
Definition at line 243 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 238 of file exprtk_complex_adaptor.hpp.
References cmplx::pow().
|
inline |
Definition at line 998 of file exprtk.hpp.
|
inline |
Definition at line 218 of file exprtk_real_adaptor.hpp.
References real::pow().
|
inline |
Definition at line 992 of file exprtk.hpp.
|
inline |
Definition at line 5522 of file exprtk.hpp.
References exprtk::details::numeric::abs(), exprtk::details::numeric::acos(), exprtk::details::numeric::acosh(), exprtk::details::numeric::asin(), exprtk::details::numeric::asinh(), exprtk::details::numeric::atan(), exprtk::details::numeric::atanh(), exprtk::details::numeric::ceil(), exprtk::details::numeric::cos(), exprtk::details::numeric::cosh(), exprtk::details::numeric::cot(), exprtk::details::numeric::csc(), exprtk::details::numeric::d2g(), exprtk::details::numeric::d2r(), exprtk::details::e_abs, exprtk::details::e_acos, exprtk::details::e_acosh, exprtk::details::e_asin, exprtk::details::e_asinh, exprtk::details::e_atan, exprtk::details::e_atanh, exprtk::details::e_ceil, exprtk::details::e_cos, exprtk::details::e_cosh, exprtk::details::e_cot, exprtk::details::e_csc, exprtk::details::e_d2g, exprtk::details::e_d2r, exprtk::details::e_erf, exprtk::details::e_erfc, exprtk::details::e_exp, exprtk::details::e_expm1, exprtk::details::e_floor, exprtk::details::e_frac, exprtk::details::e_g2d, exprtk::details::e_log, exprtk::details::e_log10, exprtk::details::e_log1p, exprtk::details::e_log2, exprtk::details::e_ncdf, exprtk::details::e_neg, exprtk::details::e_notl, exprtk::details::e_pos, exprtk::details::e_r2d, exprtk::details::e_round, exprtk::details::e_sec, exprtk::details::e_sgn, exprtk::details::e_sin, exprtk::details::e_sinc, exprtk::details::e_sinh, exprtk::details::e_sqrt, exprtk::details::e_tan, exprtk::details::e_tanh, exprtk::details::e_trunc, exprtk::details::numeric::erf(), exprtk::details::numeric::erfc(), exprtk::details::numeric::exp(), exprtk::details::numeric::expm1(), exprtk_debug, exprtk::details::numeric::floor(), exprtk::details::numeric::frac(), exprtk::details::numeric::g2d(), exprtk::details::numeric::log(), exprtk::details::numeric::log10(), exprtk::details::numeric::log1p(), exprtk::details::numeric::log2(), exprtk::details::numeric::ncdf(), exprtk::details::numeric::neg(), exprtk::details::numeric::notl(), exprtk::details::numeric::pos(), exprtk::details::numeric::r2d(), exprtk::details::numeric::round(), exprtk::details::numeric::sec(), exprtk::details::numeric::sgn(), exprtk::details::numeric::sin(), exprtk::details::numeric::sinc(), exprtk::details::numeric::sinh(), exprtk::details::numeric::sqrt(), exprtk::details::numeric::tan(), exprtk::details::numeric::tanh(), and exprtk::details::numeric::trunc().
Referenced by exprtk::details::numeric::process(), and exprtk::details::numeric::process().
|
inline |
Definition at line 5573 of file exprtk.hpp.
References exprtk::details::numeric::and_opr(), exprtk::details::numeric::atan2(), exprtk::details::e_add, exprtk::details::e_and, exprtk::details::e_atan2, exprtk::details::e_div, exprtk::details::e_eq, exprtk::details::e_equal, exprtk::details::e_gt, exprtk::details::e_gte, exprtk::details::e_hypot, exprtk::details::e_logn, exprtk::details::e_lt, exprtk::details::e_lte, exprtk::details::e_max, exprtk::details::e_min, exprtk::details::e_mod, exprtk::details::e_mul, exprtk::details::e_nand, exprtk::details::e_ne, exprtk::details::e_nequal, exprtk::details::e_nor, exprtk::details::e_or, exprtk::details::e_pow, exprtk::details::e_root, exprtk::details::e_roundn, exprtk::details::e_shl, exprtk::details::e_shr, exprtk::details::e_sub, exprtk::details::e_xnor, exprtk::details::e_xor, exprtk::details::numeric::equal(), exprtk_debug, exprtk::details::numeric::hypot(), exprtk::details::numeric::logn(), exprtk::details::numeric::modulus(), exprtk::details::numeric::nand_opr(), exprtk::details::numeric::nequal(), exprtk::details::numeric::nor_opr(), exprtk::details::numeric::or_opr(), exprtk::details::numeric::pow(), exprtk::details::numeric::root(), exprtk::details::numeric::roundn(), exprtk::details::numeric::shl(), exprtk::details::numeric::shr(), exprtk::details::numeric::xnor_opr(), and exprtk::details::numeric::xor_opr().
|
inline |
Definition at line 5613 of file exprtk.hpp.
References exprtk::details::e_add, exprtk::details::e_and, exprtk::details::e_div, exprtk::details::e_eq, exprtk::details::e_equal, exprtk::details::e_gt, exprtk::details::e_gte, exprtk::details::e_hypot, exprtk::details::e_logn, exprtk::details::e_lt, exprtk::details::e_lte, exprtk::details::e_max, exprtk::details::e_min, exprtk::details::e_mod, exprtk::details::e_mul, exprtk::details::e_nand, exprtk::details::e_ne, exprtk::details::e_nequal, exprtk::details::e_nor, exprtk::details::e_or, exprtk::details::e_pow, exprtk::details::e_root, exprtk::details::e_shl, exprtk::details::e_shr, exprtk::details::e_sub, exprtk::details::e_xnor, exprtk::details::e_xor, exprtk_debug, exprtk::details::numeric::hypot(), exprtk::details::numeric::logn(), exprtk::details::numeric::pow(), and exprtk::details::numeric::root().
|
inline |
Definition at line 154 of file exprtk_mpfr_adaptor.hpp.
References exprtk::details::constant::_180_pi.
|
inline |
Definition at line 113 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::constant::_180_pi.
|
inline |
Definition at line 113 of file exprtk_real_adaptor.hpp.
References real::r2d().
|
inline |
|
inline |
Definition at line 312 of file exprtk_mpfr_adaptor.hpp.
References abs_impl(), modulus_impl(), exprtk::details::numeric::pow(), and trunc_impl().
|
inline |
Definition at line 307 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::pow().
|
inline |
Definition at line 1030 of file exprtk.hpp.
References root_impl().
|
inline |
Definition at line 287 of file exprtk_real_adaptor.hpp.
References abs_impl(), modulus_impl(), exprtk::details::numeric::pow(), and trunc_impl().
|
inline |
Definition at line 1016 of file exprtk.hpp.
References abs_impl(), modulus_impl(), and trunc_impl().
Referenced by root_impl().
|
inline |
Definition at line 290 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 284 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::ceil(), and exprtk::details::numeric::floor().
|
inline |
Definition at line 1462 of file exprtk.hpp.
|
inline |
Definition at line 264 of file exprtk_real_adaptor.hpp.
References exprtk::details::numeric::ceil(), and exprtk::details::numeric::floor().
|
inline |
Definition at line 1036 of file exprtk.hpp.
|
inline |
Definition at line 296 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 290 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::ceil(), exprtk::details::numeric::floor(), exprtk::details::pow10, and exprtk::details::pow10_size.
|
inline |
Definition at line 270 of file exprtk_real_adaptor.hpp.
References exprtk::details::numeric::ceil(), exprtk::details::numeric::floor(), exprtk::details::pow10, and exprtk::details::pow10_size.
|
inline |
Definition at line 1042 of file exprtk.hpp.
References exprtk::details::pow10, and exprtk::details::pow10_size.
|
inline |
Definition at line 1054 of file exprtk.hpp.
|
inline |
Definition at line 152 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 111 of file exprtk_complex_adaptor.hpp.
References cmplx::cos().
|
inline |
Definition at line 111 of file exprtk_real_adaptor.hpp.
References real::sec().
|
inline |
Definition at line 1440 of file exprtk.hpp.
|
inline |
Definition at line 1480 of file exprtk.hpp.
|
inline |
Definition at line 204 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 170 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 1116 of file exprtk.hpp.
|
inline |
Definition at line 170 of file exprtk_real_adaptor.hpp.
|
inline |
Definition at line 1108 of file exprtk.hpp.
|
inline |
Definition at line 344 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 331 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::pow().
|
inline |
Definition at line 1102 of file exprtk.hpp.
|
inline |
Definition at line 319 of file exprtk_real_adaptor.hpp.
References exprtk::details::numeric::pow().
|
inline |
Definition at line 1096 of file exprtk.hpp.
|
inline |
Definition at line 338 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 325 of file exprtk_complex_adaptor.hpp.
References exprtk::details::numeric::pow().
|
inline |
Definition at line 1090 of file exprtk.hpp.
|
inline |
Definition at line 313 of file exprtk_real_adaptor.hpp.
References exprtk::details::numeric::pow().
|
inline |
Definition at line 1084 of file exprtk.hpp.
|
inline |
Definition at line 146 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 105 of file exprtk_complex_adaptor.hpp.
References cmplx::sin().
|
inline |
Definition at line 105 of file exprtk_real_adaptor.hpp.
References real::sin().
|
inline |
Definition at line 1434 of file exprtk.hpp.
Referenced by sinc_impl(), and sinc_impl().
|
inline |
Definition at line 1475 of file exprtk.hpp.
|
inline |
Definition at line 255 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 1300 of file exprtk.hpp.
References sinc_impl().
|
inline |
Definition at line 1291 of file exprtk.hpp.
Referenced by sinc_impl().
|
inline |
Definition at line 250 of file exprtk_complex_adaptor.hpp.
References abs_impl(), and sin_impl().
|
inline |
Definition at line 230 of file exprtk_real_adaptor.hpp.
References abs_impl(), and sin_impl().
|
inline |
Definition at line 147 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 106 of file exprtk_complex_adaptor.hpp.
References cmplx::sinh().
|
inline |
Definition at line 106 of file exprtk_real_adaptor.hpp.
References real::sinh().
|
inline |
Definition at line 1435 of file exprtk.hpp.
|
inline |
Definition at line 1476 of file exprtk.hpp.
|
inline |
Definition at line 148 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 107 of file exprtk_complex_adaptor.hpp.
References cmplx::sqrt().
|
inline |
Definition at line 1464 of file exprtk.hpp.
|
inline |
Definition at line 107 of file exprtk_real_adaptor.hpp.
References real::sqrt().
|
inline |
Definition at line 1436 of file exprtk.hpp.
|
inline |
Definition at line 149 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 108 of file exprtk_complex_adaptor.hpp.
References cmplx::tan().
|
inline |
Definition at line 108 of file exprtk_real_adaptor.hpp.
References real::tan().
|
inline |
Definition at line 1437 of file exprtk.hpp.
|
inline |
Definition at line 1477 of file exprtk.hpp.
|
inline |
Definition at line 150 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 109 of file exprtk_complex_adaptor.hpp.
References cmplx::tanh().
|
inline |
Definition at line 109 of file exprtk_real_adaptor.hpp.
References real::tanh().
|
inline |
Definition at line 1438 of file exprtk.hpp.
|
inline |
Definition at line 1478 of file exprtk.hpp.
|
inline |
Definition at line 112 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 125 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 125 of file exprtk_real_adaptor.hpp.
|
inline |
Definition at line 892 of file exprtk.hpp.
|
inline |
Definition at line 118 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 131 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 131 of file exprtk_real_adaptor.hpp.
|
inline |
Definition at line 898 of file exprtk.hpp.
|
inline |
Definition at line 124 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 137 of file exprtk_complex_adaptor.hpp.
|
inline |
Definition at line 137 of file exprtk_real_adaptor.hpp.
|
inline |
Definition at line 904 of file exprtk.hpp.
|
inline |
Definition at line 160 of file exprtk_mpfr_adaptor.hpp.
|
inline |
Definition at line 119 of file exprtk_complex_adaptor.hpp.
References cmplx::trunc().
|
inline |
Definition at line 1466 of file exprtk.hpp.
|
inline |
Definition at line 119 of file exprtk_real_adaptor.hpp.
References real::trunc().
|
inline |
Definition at line 1373 of file exprtk.hpp.
Referenced by frac_impl(), root_impl(), root_impl(), and root_impl().
|
inline |
Definition at line 270 of file exprtk_mpfr_adaptor.hpp.
References is_true_impl().
|
inline |
Definition at line 265 of file exprtk_complex_adaptor.hpp.
References is_true_impl().
|
inline |
Definition at line 1196 of file exprtk.hpp.
References is_true_impl().
|
inline |
Definition at line 245 of file exprtk_real_adaptor.hpp.
References is_true_impl().
|
inline |
Definition at line 1184 of file exprtk.hpp.
References is_true_impl().
|
inline |
Definition at line 264 of file exprtk_mpfr_adaptor.hpp.
References is_false_impl().
|
inline |
Definition at line 259 of file exprtk_complex_adaptor.hpp.
References is_false_impl().
|
inline |
Definition at line 1178 of file exprtk.hpp.
|
inline |
Definition at line 239 of file exprtk_real_adaptor.hpp.
References is_false_impl().
|
inline |
Definition at line 1172 of file exprtk.hpp.
References is_false_impl().