4 #include <NTL/mat_ZZ.h>
6 #include <barvinok/barvinok.h>
7 #include <barvinok/util.h>
8 #include "conversion.h"
9 #include "decomposer.h"
10 #include "param_util.h"
11 #include "reduce_domain.h"
19 * Returns the largest absolute value in the vector
21 static ZZ
max(vec_ZZ
& v
)
24 for (int i
= 1; i
< v
.length(); ++i
)
30 /* Remove common divisor of elements of cols of B */
31 static void normalize_cols(mat_ZZ
& B
)
34 for (int i
= 0; i
< B
.NumCols(); ++i
) {
36 for (int j
= 1 ; gcd
!= 1 && j
< B
.NumRows(); ++j
)
37 GCD(gcd
, gcd
, B
[j
][i
]);
39 for (int j
= 0; j
< B
.NumRows(); ++j
)
44 /* Remove common divisor of elements of B */
45 static void normalize_matrix(mat_ZZ
& B
)
48 for (int i
= 0; i
< B
.NumCols(); ++i
)
49 for (int j
= 0 ; j
< B
.NumRows(); ++j
) {
50 GCD(gcd
, gcd
, B
[i
][j
]);
54 for (int i
= 0; i
< B
.NumCols(); ++i
)
55 for (int j
= 0; j
< B
.NumRows(); ++j
)
61 cone(const mat_ZZ
& r
, int row
, const vec_ZZ
& w
, int s
) {
67 cone(const signed_cone
& sc
) {
73 det
= determinant(rays
);
76 bool needs_split(barvinok_options
*options
) {
80 if (options
->primal
&& index
<= options
->max_index
)
88 if (!options
->primal
&& options
->max_index
> 1) {
91 index
= abs(determinant(B2
));
92 if (index
<= options
->max_index
)
99 void short_vector(vec_ZZ
& v
, vec_ZZ
& lambda
, barvinok_options
*options
) {
103 LLL(det2
, B
, U
, options
->LLL_a
, options
->LLL_b
);
107 for (int i
= 1; i
< B
.NumRows(); ++i
) {
120 for (i
= 0; i
< lambda
.length(); ++i
)
123 if (i
== lambda
.length()) {
136 std::ostream
& operator<<(std::ostream
& os
, const cone
& c
)
138 os
<< c
.rays
<< endl
;
139 os
<< "det: " << c
.det
<< endl
;
140 os
<< "sign: " << c
.sgn
<< endl
;
144 static void decompose(const signed_cone
& sc
, signed_cone_consumer
& scc
,
145 bool primal
, barvinok_options
*options
)
147 vector
<cone
*> nonuni
;
148 cone
*c
= new cone(sc
);
149 if (c
->needs_split(options
)) {
153 options
->stats
->base_cones
++;
154 scc
.handle(signed_cone(sc
.C
, sc
.rays
, sc
.sign
, to_ulong(c
->index
)),
165 while (!nonuni
.empty()) {
168 c
->short_vector(v
, lambda
, options
);
169 for (int i
= 0; i
< c
->rays
.NumRows(); ++i
) {
172 cone
*pc
= new cone(c
->rays
, i
, v
, sign(lambda
[i
]) * c
->sgn
);
174 for (int j
= 0; j
<= i
; ++j
) {
175 if ((j
== i
&& sign(lambda
[i
]) < 0) ||
176 (j
< i
&& sign(lambda
[i
]) == sign(lambda
[j
]))) {
177 pc
->rays
[j
] = -pc
->rays
[j
];
182 if (pc
->needs_split(options
)) {
183 assert(abs(pc
->det
) < abs(c
->det
));
184 nonuni
.push_back(pc
);
187 options
->stats
->base_cones
++;
188 scc
.handle(signed_cone(pc
->rays
, pc
->sgn
,
189 to_ulong(pc
->index
)),
195 while (!nonuni
.empty()) {
208 struct polar_signed_cone_consumer
: public signed_cone_consumer
{
209 signed_cone_consumer
& scc
;
211 polar_signed_cone_consumer(signed_cone_consumer
& scc
) : scc(scc
) {}
212 virtual void handle(const signed_cone
& sc
, barvinok_options
*options
) {
213 Polyhedron
*C
= sc
.C
;
215 Matrix
*M
= Matrix_Alloc(sc
.rays
.NumRows()+1, sc
.rays
.NumCols()+2);
216 for (int i
= 0; i
< sc
.rays
.NumRows(); ++i
) {
217 zz2values(sc
.rays
[i
], M
->p
[i
]+1);
218 value_set_si(M
->p
[i
][0], 1);
220 value_set_si(M
->p
[sc
.rays
.NumRows()][0], 1);
221 value_set_si(M
->p
[sc
.rays
.NumRows()][1+sc
.rays
.NumCols()], 1);
222 C
= Rays2Polyhedron(M
, M
->NbRows
+1);
223 assert(C
->NbConstraints
== C
->NbRays
);
226 Polyhedron_Polarize(C
);
229 scc
.handle(signed_cone(C
, r
, sc
.sign
, sc
.det
), options
);
240 /* Remove common divisor of elements of rows of B */
241 static void normalize_rows(mat_ZZ
& B
)
244 for (int i
= 0; i
< B
.NumRows(); ++i
) {
246 for (int j
= 1 ; gcd
!= 1 && j
< B
.NumCols(); ++j
)
247 GCD(gcd
, gcd
, B
[i
][j
]);
249 for (int j
= 0; j
< B
.NumCols(); ++j
)
254 static void polar_decompose(Polyhedron
*cone
, signed_cone_consumer
& scc
,
255 barvinok_options
*options
)
257 POL_ENSURE_VERTICES(cone
);
258 Polyhedron_Polarize(cone
);
259 if (cone
->NbRays
- 1 != cone
->Dimension
) {
260 Polyhedron
*tmp
= cone
;
261 cone
= triangulate_cone_with_options(cone
, options
);
262 Polyhedron_Free(tmp
);
264 polar_signed_cone_consumer
pssc(scc
);
267 for (Polyhedron
*Polar
= cone
; Polar
; Polar
= Polar
->next
) {
270 decompose(signed_cone(Polar
, r
, 1), pssc
, false, options
);
279 static void primal_decompose(Polyhedron
*cone
, signed_cone_consumer
& scc
,
280 barvinok_options
*options
)
282 POL_ENSURE_VERTICES(cone
);
284 if (cone
->NbRays
- 1 == cone
->Dimension
)
287 parts
= triangulate_cone_with_options(cone
, options
);
288 Vector
*average
= NULL
;
292 average
= inner_point(cone
);
296 for (Polyhedron
*simple
= parts
; simple
; simple
= simple
->next
) {
298 Matrix
*Rays
= rays2(simple
);
299 for (int i
= 0; i
< Rays
->NbRows
; ++i
) {
300 if (simple
== cone
) {
304 for (f
= 0; f
< simple
->NbConstraints
; ++f
) {
305 Inner_Product(Rays
->p
[i
], simple
->Constraint
[f
]+1,
306 simple
->Dimension
, &tmp
);
307 if (value_notzero_p(tmp
))
310 assert(f
< simple
->NbConstraints
);
311 if (!is_internal(average
, simple
->Constraint
[f
])) {
312 Vector_Oppose(Rays
->p
[i
], Rays
->p
[i
], Rays
->NbColumns
);
317 matrix2zz(Rays
, ray
, Rays
->NbRows
, Rays
->NbColumns
);
319 decompose(signed_cone(simple
, ray
, sign
), scc
, true, options
);
325 Vector_Free(average
);
332 Vector_Free(average
);
338 void barvinok_decompose(Polyhedron
*C
, signed_cone_consumer
& scc
,
339 barvinok_options
*options
)
341 POL_ENSURE_VERTICES(C
);
343 primal_decompose(C
, scc
, options
);
345 polar_decompose(C
, scc
, options
);
348 void vertex_decomposer::decompose_at_vertex(Param_Vertices
*V
, int _i
,
349 barvinok_options
*options
)
351 Polyhedron
*C
= Param_Vertex_Cone(PP
, V
, options
);
355 barvinok_decompose(C
, scc
, options
);
358 struct posneg_collector
: public signed_cone_consumer
{
359 posneg_collector(Polyhedron
*pos
, Polyhedron
*neg
) : pos(pos
), neg(neg
) {}
360 virtual void handle(const signed_cone
& sc
, barvinok_options
*options
) {
361 Polyhedron
*p
= Polyhedron_Copy(sc
.C
);
375 * Barvinok's Decomposition of a simplicial cone
377 * Returns two lists of polyhedra
379 void barvinok_decompose(Polyhedron
*C
, Polyhedron
**ppos
, Polyhedron
**pneg
)
381 barvinok_options
*options
= barvinok_options_new_with_defaults();
382 posneg_collector
pc(*ppos
, *pneg
);
383 POL_ENSURE_VERTICES(C
);
386 decompose(signed_cone(C
, r
, 1), pc
, false, options
);
389 barvinok_options_free(options
);