| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
typedef enum ap_coeff_discr_t { AP_COEFF_SCALAR, AP_COEFF_INTERVAL }
ap_coeff_discr_t;
|
typedef struct ap_coeff_t {
ap_coeff_discr_t discr;
union {
ap_scalar_t* scalar;
ap_interval_t* interval;
} val;
} ap_coeff_t;
|
Initializing coefficients Assigning coefficients Comparing coefficients Other operations on coefficients