4 #include <barvinok/util.h>
5 #include "conversion.h"
6 #include "evalue_convert.h"
7 #include "lattice_point.h"
19 static struct argp_option argp_options
[] = {
20 { "convert", 'c', 0, 0, "convert fractionals to periodics" },
21 { "combine", 'C', 0, 0 },
22 { "floor", 'f', 0, 0, "convert fractionals to floorings" },
23 { "list", 'l', 0, 0 },
24 { "latex", 'L', 0, 0 },
25 { "range-reduction", 'R', 0, 0 },
29 static error_t
parse_opt(int key
, char *arg
, struct argp_state
*state
)
31 struct convert_options
*options
= (struct convert_options
*)state
->input
;
63 return ARGP_ERR_UNKNOWN
;
68 struct argp convert_argp
= {
69 argp_options
, parse_opt
, 0, 0
72 static int type_offset(enode
*p
)
74 return p
->type
== fractional
? 1 :
75 p
->type
== flooring
? 1 : 0;
78 static Lattice
*extract_lattice(evalue
*e
, int nparam
)
84 /* For some mysterious reason, SolveDiophantine expects an extra
85 * [0 0 0 1] row in its input matrix.
87 Matrix
*M
= Matrix_Alloc(2, nparam
+1+1);
88 value_set_si(M
->p
[1][nparam
+1], 1);
89 evalue_extract_affine(e
, M
->p
[0], M
->p
[0]+nparam
+1, M
->p
[0]+nparam
);
91 value_set_si(M
->p
[0][nparam
+1], 0);
92 SolveDiophantine(M
, &U
, &X
);
95 L
= Matrix_Alloc(nparam
+1, nparam
+1);
96 for (i
= 0; i
< nparam
; ++i
)
97 Vector_Copy(U
->p
[i
], L
->p
[i
], nparam
);
98 value_set_si(L
->p
[nparam
][nparam
], 1);
103 /* Returns a lattice such that the quasi-polynomial e can be represented
104 * by a list of polynomials, one for each point in the fundamental
105 * parallelepiped of the lattice.
106 * If e is a polynomial, then this function returns NULL.
108 static Lattice
*extract_common_lattice(evalue
*e
, Lattice
*L
, int nparam
)
112 if (value_notzero_p(e
->d
))
115 assert(e
->x
.p
->type
!= partition
);
117 if (e
->x
.p
->type
== fractional
) {
118 Lattice
*L2
= extract_lattice(&e
->x
.p
->arr
[0], nparam
);
122 Lattice
*L3
= LatticeIntersection(L
, L2
);
129 offset
= type_offset(e
->x
.p
);
130 for (i
= e
->x
.p
->size
-1; i
>= offset
; --i
)
131 L
= extract_common_lattice(&e
->x
.p
->arr
[i
], L
, nparam
);
135 /* Construct an evalue dst from src corresponding to the coset represented
136 * by coset, a vector of size number of parameters plus one.
137 * The final value in this vector should be 1.
139 static void evalue_coset(const evalue
*src
, const Vector
*coset
, evalue
*dst
)
141 if (value_notzero_p(src
->d
)) {
142 value_assign(dst
->d
, src
->d
);
143 value_init(dst
->x
.n
);
144 value_assign(dst
->x
.n
, src
->x
.n
);
148 if (src
->x
.p
->type
== fractional
) {
151 Vector
*c
= Vector_Alloc(coset
->Size
);
154 evalue_extract_affine(&src
->x
.p
->arr
[0], c
->p
, c
->p
+c
->Size
-1, &f
.d
);
155 Inner_Product(coset
->p
, c
->p
, c
->Size
, &f
.x
.n
);
157 mpz_fdiv_r(f
.x
.n
, f
.x
.n
, f
.d
);
159 evalue_set_si(dst
, 0, 1);
160 for (int i
= src
->x
.p
->size
-1; i
>= 1; --i
) {
163 evalue_coset(&src
->x
.p
->arr
[i
], coset
, &t
);
165 free_evalue_refs(&t
);
167 free_evalue_refs(&f
);
171 if (src
->x
.p
->type
== relation
) {
172 evalue
*arg
= evalue_eval(&src
->x
.p
->arr
[0], coset
->p
);
173 if (value_zero_p(arg
->x
.n
))
174 evalue_coset(&src
->x
.p
->arr
[1], coset
, dst
);
175 else if (src
->x
.p
->size
> 2)
176 evalue_coset(&src
->x
.p
->arr
[2], coset
, dst
);
178 evalue_set_si(dst
, 0, 1);
183 assert(src
->x
.p
->type
== polynomial
);
184 value_set_si(dst
->d
, 0);
185 dst
->x
.p
= new_enode(src
->x
.p
->type
, src
->x
.p
->size
, src
->x
.p
->pos
);
186 for (int i
= 0; i
< src
->x
.p
->size
; ++i
)
187 evalue_coset(&src
->x
.p
->arr
[i
], coset
, &dst
->x
.p
->arr
[i
]);
191 static void evalue_print_list_evalue(FILE *out
, evalue
*e
, int nparam
,
194 cerr
<< "not supported" << endl
;
197 static void evalue_print_list_evalue(FILE *out
, evalue
*e
, int nparam
,
201 L
= extract_common_lattice(e
, NULL
, nparam
);
203 print_evalue(out
, e
, params
);
205 fdostream
os(dup(fileno(out
)));
206 Vector
*coset
= Vector_Alloc(nparam
+1);
207 value_set_si(coset
->p
[nparam
], 1);
209 Matrix_Transposition(L
);
210 matrix2zz(L
, R
, nparam
, nparam
);
211 fprintf(out
, "Lattice:\n");
213 unsigned long det
= to_ulong(abs(determinant(R
)));
215 Matrix
*points
= Matrix_Alloc(det
, nparam
);
216 lattice_points_fixed(coset
->p
, coset
->p
, L
, L
, points
, det
);
217 matrix2zz(points
, vertices
, points
->NbRows
, points
->NbColumns
);
220 for (int i
= 0; i
< vertices
.NumRows(); ++i
) {
222 os
<< vertices
[i
] << endl
;
223 zz2values(vertices
[i
], coset
->p
);
225 evalue_coset(e
, coset
, &t
);
226 print_evalue(out
, &t
, params
);
227 free_evalue_refs(&t
);
234 static void evalue_print_list(FILE *out
, evalue
*e
, int nparam
,
238 assert(value_zero_p(e
->d
));
239 assert(e
->x
.p
->type
== partition
);
241 for (i
= 0; i
< e
->x
.p
->size
/2; i
++) {
242 Print_Domain(out
, EVALUE_DOMAIN(e
->x
.p
->arr
[2*i
]), params
);
243 evalue_print_list_evalue(out
, &e
->x
.p
->arr
[2*i
+1], nparam
, params
);
247 static void print_domain_latex(std::ostream
& o
, Polyhedron
*D
, int nparam
,
251 for (int i
= 0; i
< D
->NbConstraints
; ++i
) {
252 if (First_Non_Zero(D
->Constraint
[i
]+1, D
->Dimension
) == -1)
257 for (int j
= 0; j
< D
->Dimension
; ++j
) {
258 if (value_zero_p(D
->Constraint
[i
][1+j
]))
261 if (!fc
&& value_pos_p(D
->Constraint
[i
][1+j
]))
263 if (value_mone_p(D
->Constraint
[i
][1+j
]))
265 else if (!value_one_p(D
->Constraint
[i
][1+j
]))
266 o
<< VALUE_TO_INT(D
->Constraint
[i
][1+j
]);
267 o
<< " " << params
[j
];
270 if (!fc
&& value_pos_p(D
->Constraint
[i
][1+D
->Dimension
]))
272 if (value_notzero_p(D
->Constraint
[i
][1+D
->Dimension
]))
273 o
<< VALUE_TO_INT(D
->Constraint
[i
][1+D
->Dimension
]);
274 if (value_zero_p(D
->Constraint
[i
][0]))
282 static void evalue_print_latex(std::ostream
& o
, const evalue
*e
,
283 int first
, int nested
,
284 const string
& suffix1
, const string
& suffix2
,
285 int nparam
, const char **params
);
287 static void evalue_print_poly_latex1(std::ostream
& o
, const evalue
*e
,
288 int first
, int nested
, const string
& base
,
289 const string
& suffix1
, const string
& suffix2
,
290 int nparam
, const char **params
)
292 int offset
= type_offset(e
->x
.p
);
293 for (int i
= e
->x
.p
->size
-1; i
>= offset
; --i
) {
294 std::ostringstream strm
;
299 strm
<< "^" << (i
-offset
);
300 evalue_print_latex(o
, &e
->x
.p
->arr
[i
], first
, nested
,
301 strm
.str(), suffix2
, nparam
, params
);
306 static void evalue_print_poly_latex2(std::ostream
& o
, const evalue
*e
,
307 int first
, int nested
, const string
& base
,
308 const string
& suffix1
, const string
& suffix2
,
309 int nparam
, const char **params
)
311 int offset
= type_offset(e
->x
.p
);
312 for (int i
= e
->x
.p
->size
-1; i
>= offset
; --i
) {
313 std::ostringstream strm
;
318 strm
<< "^" << (i
-offset
);
319 evalue_print_latex(o
, &e
->x
.p
->arr
[i
], first
, nested
,
320 suffix1
, strm
.str(), nparam
, params
);
325 static void evalue_print_latex(std::ostream
& o
, const evalue
*e
,
326 int first
, int nested
,
327 const string
& suffix1
, const string
&suffix2
,
328 int nparam
, const char **params
)
330 if (value_notzero_p(e
->d
)) {
331 if (value_zero_p(e
->x
.n
)) {
338 value_absolute(tmp
, e
->x
.n
);
339 if (!first
&& value_pos_p(e
->x
.n
))
341 if (value_neg_p(e
->x
.n
))
343 if (value_one_p(e
->d
)) {
344 if (!value_one_p(tmp
) ||
345 (suffix1
.length() == 0 && suffix2
.length() == 0))
346 o
<< VALUE_TO_INT(tmp
);
349 if (value_one_p(tmp
) && suffix1
.length() != 0)
352 o
<< VALUE_TO_INT(tmp
);
354 << VALUE_TO_INT(e
->d
) << "}";
356 if (!value_one_p(tmp
)) {
366 switch (e
->x
.p
->type
) {
368 o
<< "\\begin{cases}\n";
369 for (int i
= 0; i
< e
->x
.p
->size
/2; ++i
) {
372 evalue_print_latex(o
, &e
->x
.p
->arr
[2*i
+1], 1, 0,
373 suffix1
, suffix2
, nparam
, params
);
374 o
<< "& \\text{if $";
375 print_domain_latex(o
, EVALUE_DOMAIN(e
->x
.p
->arr
[2*i
]), nparam
, params
);
378 o
<< "\\end{cases}\n";
381 evalue_print_poly_latex1(o
, e
, first
, nested
, params
[e
->x
.p
->pos
-1],
382 suffix1
, suffix2
, nparam
, params
);
385 std::ostringstream strm
;
386 strm
<< "\\fractional{";
387 evalue_print_latex(strm
, &e
->x
.p
->arr
[0], 1, 1, "", "", nparam
, params
);
389 evalue_print_poly_latex2(o
, e
, first
, nested
,
390 strm
.str(), suffix1
, suffix2
, nparam
, params
);
399 static void evalue_print_latex(FILE *out
, const evalue
*e
, int nparam
,
402 cerr
<< "not supported" << endl
;
405 static void evalue_print_latex(FILE *out
, const evalue
*e
, int nparam
,
408 fdostream
os(dup(fileno(out
)));
409 evalue_print_latex(os
, e
, 1, 0, "", "", nparam
, params
);
413 int evalue_convert(evalue
*EP
, struct convert_options
*options
,
414 int verbose
, unsigned nparam
, const char **params
)
417 if (options
->combine
)
420 evalue_range_reduction(EP
);
422 print_evalue(stdout
, EP
, params
);
425 if (options
->floor
) {
426 fprintf(stderr
, "WARNING: floor conversion not supported\n");
427 evalue_frac2floor(EP
);
429 print_evalue(stdout
, EP
, params
);
430 } else if (options
->list
&& params
) {
431 evalue_print_list(stdout
, EP
, nparam
, params
);
433 } else if (options
->latex
&& params
) {
434 evalue_print_latex(stdout
, EP
, nparam
, params
);
436 } else if (options
->convert
) {
437 evalue_mod2table(EP
, nparam
);
439 print_evalue(stdout
, EP
, params
);