Defines | |
| #define | MON_INIT(x) ((x) = 0) |
| #define | MON_CLEAR(x) |
| #define | MON_SET(x, y) ((x) = (y)) |
| #define | MON_SWAP(x, y) { monomial_t _t_ = (x); (x) = (y); (y) = _t_; } |
| #define | MON_ONE(x) ((x) = 0) |
| #define MON_CLEAR | ( | x | ) |
Clears all data allocated for this monomial.
| #define MON_INIT | ( | x | ) | ((x) = 0) |
Initializes the monomial to one.
| #define MON_ONE | ( | x | ) | ((x) = 0) |
Sets x to the monomial one.
| #define MON_SET | ( | x, | |||
| y | ) | ((x) = (y)) |
Sets the monomial x to the same value as y.
| #define MON_SWAP | ( | x, | |||
| y | ) | { monomial_t _t_ = (x); (x) = (y); (y) = _t_; } |
Swaps the values of the monomials x and y.
1.5.6