2 #include <NTL/mat_ZZ.h>
3 #include <barvinok/util.h>
4 #include <barvinok/genfun.h>
5 #include <barvinok/options.h>
11 /* base for generating function counting */
16 gf_base(np_base
*npb
, Polyhedron
*context
) : base(npb
) {
17 gf
= new gen_fun(context
);
21 static gf_base
*create(Polyhedron
*context
, unsigned dim
, unsigned nparam
,
22 barvinok_options
*options
);
24 void start_gf(Polyhedron
*P
, barvinok_options
*options
) {
25 base
->start(P
, options
);
29 struct partial_ireducer
: public ireducer
, public gf_base
{
30 partial_ireducer(Polyhedron
*context
, unsigned dim
, unsigned nparam
) :
31 ireducer(dim
), gf_base(this, context
) {
36 virtual void base(const QQ
& c
, const vec_ZZ
& num
, const mat_ZZ
& den_f
);
37 virtual gen_fun
*get_gf() {
42 struct partial_reducer
: public reducer
, public gf_base
{
46 partial_reducer(Polyhedron
*context
, unsigned dim
, unsigned nparam
) :
47 reducer(dim
), gf_base(this, context
) {
50 tmp
.SetLength(dim
- nparam
);
52 virtual void init(Polyhedron
*P
, int n_try
) {
53 randomvector(P
, lambda
, dim
- lower
, n_try
);
55 virtual void reset() {
60 virtual void base(const QQ
& c
, const vec_ZZ
& num
, const mat_ZZ
& den_f
);
61 virtual void base(const vec_QQ
& c
, const mat_ZZ
& num
, const mat_ZZ
& den_f
);
63 virtual void split(const mat_ZZ
& num
, vec_ZZ
& num_s
, mat_ZZ
& num_p
,
64 const mat_ZZ
& den_f
, vec_ZZ
& den_s
, mat_ZZ
& den_r
);
65 virtual gen_fun
*get_gf() {
70 struct partial_bfcounter
: public bfcounter_base
, public gf_base
{
71 partial_bfcounter(Polyhedron
*context
, unsigned dim
, unsigned nparam
) :
72 bfcounter_base(dim
), gf_base(this, context
) {
75 ~partial_bfcounter() {
77 virtual void base(mat_ZZ
& factors
, bfc_vec
& v
);