5 #include <barvinok/polylib.h>
6 #include <barvinok/options.h>
9 signed_cone(const mat_ZZ
& rays
, int sign
, unsigned long det
,
11 C(NULL
), rays(rays
), sign(sign
), det(det
), closed(closed
) {}
12 signed_cone(Polyhedron
*C
, const mat_ZZ
& rays
, int sign
, unsigned long det
= 0,
14 C(C
), rays(rays
), sign(sign
), det(det
), closed(closed
) {}
19 /* facet not containing ray is closed */
23 struct signed_cone_consumer
{
24 virtual void handle(const signed_cone
& sc
, barvinok_options
*options
) = 0;
25 virtual ~signed_cone_consumer() {}
28 struct vertex_decomposer
{
30 unsigned nbV
; // number of vertices
31 Param_Vertices
*V
; // current vertex
32 int vert
; // current vertex index
33 signed_cone_consumer
& scc
;
35 vertex_decomposer(Polyhedron
*P
, unsigned nbV
, signed_cone_consumer
& scc
) :
36 P(P
), nbV(nbV
), scc(scc
) {}
37 void decompose_at_vertex(Param_Vertices
*V
, int _i
, barvinok_options
*options
);
40 void barvinok_decompose(Polyhedron
*C
, signed_cone_consumer
& scc
,
41 barvinok_options
*options
);