5 #include <barvinok/util.h>
6 #include <barvinok/options.h>
7 #include <barvinok/basis_reduction.h>
9 #define ALLOCN(type,n) (type*)malloc((n) * sizeof(type))
12 struct barvinok_options
*barvinok
;
16 ISL_ARGS_START(struct options
, options_args
)
17 ISL_ARG_CHILD(struct options
, barvinok
, NULL
, &barvinok_options_args
, NULL
)
18 ISL_ARG_BOOL(struct options
, direct
, 'd', "direct", 0,
19 "don't apply generalized basis reduction first")
22 ISL_ARG_DEF(options
, struct options
, options_args
)
24 static void scan_poly(Polyhedron
*S
, int pos
, Value
*z
, Matrix
*T
)
30 v
= Vector_Alloc(T
->NbRows
);
31 Matrix_Vector_Product(T
, z
+1, v
->p
);
32 value_print(stdout
, VALUE_FMT
, v
->p
[0]);
33 for (k
=1; k
< pos
; ++k
) {
35 value_print(stdout
,VALUE_FMT
, v
->p
[k
]);
45 ok
= !(lower_upper_bounds(1+pos
, S
, z
, &LB
, &UB
));
47 for (value_assign(tmp
,LB
); value_le(tmp
,UB
); value_increment(tmp
,tmp
)) {
48 value_assign(z
[pos
+1], tmp
);
49 scan_poly(S
->next
, pos
+1, z
, T
);
51 value_set_si(z
[pos
+1], 0);
58 int main(int argc
, char **argv
)
60 Polyhedron
*A
, *P
, *U
, *S
;
63 Matrix
*basis
, *T
, *inv
;
65 struct options
*options
= options_new_with_defaults();
67 argc
= options_parse(options
, argc
, argv
, ISL_ARG_ALL
);
69 A
= Polyhedron_Read(options
->barvinok
->MaxRays
);
71 if (options
->direct
) {
72 inv
= Identity(A
->Dimension
+1);
75 basis
= Polyhedron_Reduced_Basis(A
, options
->barvinok
);
77 T
= Matrix_Alloc(A
->Dimension
+1, A
->Dimension
+1);
78 inv
= Matrix_Alloc(A
->Dimension
+1, A
->Dimension
+1);
79 for (i
= 0; i
< A
->Dimension
; ++i
)
80 for (j
= 0; j
< A
->Dimension
; ++j
)
81 value_assign(T
->p
[i
][j
], basis
->p
[i
][j
]);
82 value_set_si(T
->p
[A
->Dimension
][A
->Dimension
], 1);
85 ok
= Matrix_Inverse(T
, inv
);
89 P
= Polyhedron_Preimage(A
, inv
, options
->barvinok
->MaxRays
);
93 U
= Universe_Polyhedron(0);
94 S
= Polyhedron_Scan(P
, U
, options
->barvinok
->MaxRays
);
96 p
= ALLOCN(Value
, P
->Dimension
+2);
97 for(i
=0;i
<=P
->Dimension
;i
++) {
102 value_set_si(p
[i
],1);
104 scan_poly(S
, 0, p
, inv
);
107 for(i
=0;i
<=(P
->Dimension
+1);i
++)
113 options_free(options
);