1 #ifndef PARAM_POLYNOMIAL_H
2 #define PARAM_POLYNOMIAL_H
5 #include <barvinok/evalue.h>
7 /* A term in the parametric polynomial */
9 std::vector
<int> powers
;
13 struct param_polynomial
{
14 std::vector
<struct param_term
> terms
;
16 param_polynomial(const evalue
*polynomial
, unsigned nvar
);