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
) {
102 long r
= LLL(det2
, B
, U
, options
->LLL_a
, options
->LLL_b
);
106 for (int i
= 1; i
< B
.NumRows(); ++i
) {
119 for (i
= 0; i
< lambda
.length(); ++i
)
122 if (i
== lambda
.length()) {
135 std::ostream
& operator<<(std::ostream
& os
, const cone
& c
)
137 os
<< c
.rays
<< endl
;
138 os
<< "det: " << c
.det
<< endl
;
139 os
<< "sign: " << c
.sgn
<< endl
;
143 static void decompose(const signed_cone
& sc
, signed_cone_consumer
& scc
,
144 bool primal
, barvinok_options
*options
)
146 vector
<cone
*> nonuni
;
147 cone
*c
= new cone(sc
);
148 if (c
->needs_split(options
)) {
152 options
->stats
->base_cones
++;
153 scc
.handle(signed_cone(sc
.C
, sc
.rays
, sc
.sign
, to_ulong(c
->index
)),
164 while (!nonuni
.empty()) {
167 c
->short_vector(v
, lambda
, options
);
168 for (int i
= 0; i
< c
->rays
.NumRows(); ++i
) {
171 cone
*pc
= new cone(c
->rays
, i
, v
, sign(lambda
[i
]) * c
->sgn
);
173 for (int j
= 0; j
<= i
; ++j
) {
174 if ((j
== i
&& sign(lambda
[i
]) < 0) ||
175 (j
< i
&& sign(lambda
[i
]) == sign(lambda
[j
]))) {
176 pc
->rays
[j
] = -pc
->rays
[j
];
181 if (pc
->needs_split(options
)) {
182 assert(abs(pc
->det
) < abs(c
->det
));
183 nonuni
.push_back(pc
);
186 options
->stats
->base_cones
++;
187 scc
.handle(signed_cone(pc
->rays
, pc
->sgn
,
188 to_ulong(pc
->index
)),
194 while (!nonuni
.empty()) {
207 struct polar_signed_cone_consumer
: public signed_cone_consumer
{
208 signed_cone_consumer
& scc
;
210 polar_signed_cone_consumer(signed_cone_consumer
& scc
) : scc(scc
) {}
211 virtual void handle(const signed_cone
& sc
, barvinok_options
*options
) {
212 Polyhedron
*C
= sc
.C
;
214 Matrix
*M
= Matrix_Alloc(sc
.rays
.NumRows()+1, sc
.rays
.NumCols()+2);
215 for (int i
= 0; i
< sc
.rays
.NumRows(); ++i
) {
216 zz2values(sc
.rays
[i
], M
->p
[i
]+1);
217 value_set_si(M
->p
[i
][0], 1);
219 value_set_si(M
->p
[sc
.rays
.NumRows()][0], 1);
220 value_set_si(M
->p
[sc
.rays
.NumRows()][1+sc
.rays
.NumCols()], 1);
221 C
= Rays2Polyhedron(M
, M
->NbRows
+1);
222 assert(C
->NbConstraints
== C
->NbRays
);
225 Polyhedron_Polarize(C
);
228 scc
.handle(signed_cone(C
, r
, sc
.sign
, sc
.det
), options
);
239 /* Remove common divisor of elements of rows of B */
240 static void normalize_rows(mat_ZZ
& B
)
243 for (int i
= 0; i
< B
.NumRows(); ++i
) {
245 for (int j
= 1 ; gcd
!= 1 && j
< B
.NumCols(); ++j
)
246 GCD(gcd
, gcd
, B
[i
][j
]);
248 for (int j
= 0; j
< B
.NumCols(); ++j
)
253 static void polar_decompose(Polyhedron
*cone
, signed_cone_consumer
& scc
,
254 barvinok_options
*options
)
256 POL_ENSURE_VERTICES(cone
);
257 Polyhedron_Polarize(cone
);
258 if (cone
->NbRays
- 1 != cone
->Dimension
) {
259 Polyhedron
*tmp
= cone
;
260 cone
= triangulate_cone_with_options(cone
, options
);
261 Polyhedron_Free(tmp
);
263 polar_signed_cone_consumer
pssc(scc
);
266 for (Polyhedron
*Polar
= cone
; Polar
; Polar
= Polar
->next
) {
269 decompose(signed_cone(Polar
, r
, 1), pssc
, false, options
);
278 static void primal_decompose(Polyhedron
*cone
, signed_cone_consumer
& scc
,
279 barvinok_options
*options
)
281 POL_ENSURE_VERTICES(cone
);
283 if (cone
->NbRays
- 1 == cone
->Dimension
)
286 parts
= triangulate_cone_with_options(cone
, options
);
287 Vector
*average
= NULL
;
291 average
= inner_point(cone
);
295 for (Polyhedron
*simple
= parts
; simple
; simple
= simple
->next
) {
297 Matrix
*Rays
= rays2(simple
);
298 for (int i
= 0; i
< Rays
->NbRows
; ++i
) {
299 if (simple
== cone
) {
303 for (f
= 0; f
< simple
->NbConstraints
; ++f
) {
304 Inner_Product(Rays
->p
[i
], simple
->Constraint
[f
]+1,
305 simple
->Dimension
, &tmp
);
306 if (value_notzero_p(tmp
))
309 assert(f
< simple
->NbConstraints
);
310 if (!is_internal(average
, simple
->Constraint
[f
])) {
311 Vector_Oppose(Rays
->p
[i
], Rays
->p
[i
], Rays
->NbColumns
);
316 matrix2zz(Rays
, ray
, Rays
->NbRows
, Rays
->NbColumns
);
318 decompose(signed_cone(simple
, ray
, sign
), scc
, true, options
);
324 Vector_Free(average
);
331 Vector_Free(average
);
337 void barvinok_decompose(Polyhedron
*C
, signed_cone_consumer
& scc
,
338 barvinok_options
*options
)
340 POL_ENSURE_VERTICES(C
);
342 primal_decompose(C
, scc
, options
);
344 polar_decompose(C
, scc
, options
);
347 void vertex_decomposer::decompose_at_vertex(Param_Vertices
*V
, int _i
,
348 barvinok_options
*options
)
350 Polyhedron
*C
= Param_Vertex_Cone(PP
, V
, options
);
354 barvinok_decompose(C
, scc
, options
);
357 struct posneg_collector
: public signed_cone_consumer
{
358 posneg_collector(Polyhedron
*pos
, Polyhedron
*neg
) : pos(pos
), neg(neg
) {}
359 virtual void handle(const signed_cone
& sc
, barvinok_options
*options
) {
360 Polyhedron
*p
= Polyhedron_Copy(sc
.C
);
374 * Barvinok's Decomposition of a simplicial cone
376 * Returns two lists of polyhedra
378 void barvinok_decompose(Polyhedron
*C
, Polyhedron
**ppos
, Polyhedron
**pneg
)
380 barvinok_options
*options
= barvinok_options_new_with_defaults();
381 posneg_collector
pc(*ppos
, *pneg
);
382 POL_ENSURE_VERTICES(C
);
385 decompose(signed_cone(C
, r
, 1), pc
, false, options
);
388 barvinok_options_free(options
);